 $().ready(function() {  

	$('#RotateImage').show();

	$('#RotateImage').cycle({ 
	fx:    'wipe', 
	timeout: 6000,
	autostop: 1,
	autostopCount: 3
	});

	$('#NewsCycle').cycle({ 
	fx:    'blindX', 
	timeout: 8000,
	delay: 2000
	});

	var endDate = new Date(2010, 4-1, 4, 10, 30, 0, 0); 
	$('#defaultCountdown').countdown({until: endDate, format: 'DHMS'}); 
}); 