jQuery().ready(function() {  	


	function Consult() {
	jQuery('#Consultation').show();
	jQuery('#Consultation').animate({
		top: '+=49'
	  }, 1000, function() {
		// Animation complete.
	  });
	}
	
	jQuery('#ZoneTwoContent').show();

	
	setTimeout(Consult,1000);

	jQuery('#HomeRotation').cycle({ 
	fx:    'fade',
	speed: 2500,
	timeout:  7000
	});

}); 
