// JavaScript Document

  $(document).ready(function(){


		
  		//the slideshow
		$("#item1b").fadeIn(1000, function() { 
			$("#item2b").fadeIn(1000, function() { 
				$("#item3b").fadeIn(1000, function () { 
					$("#item4b").fadeIn(1000, function () { 
								$("#divdoi").pause(2000).fadeIn(2000);
					});
				});
			
			});
		});
		// end of the slideshow



  $('a[rel*=facebox]').facebox();
		$('#form').ajaxForm({
			target: '#error',
			success: function() {
			$('#error').fadeIn('slow');
			}
		});

  
  
});





