$(function(){

	DD_belatedPNG.fix("#header #countDown h3");

	$(window).load(function(){
		$("#slides").cycle({ 
			fx:    'fade', 
			speed:  2500,
			timeout: 7000 
		});	
	});
	
	var theshow = new Date ( 2009, 8, 27, 12, 0, 0 );
	
	$('#clock').countdown({
		until:theshow,
		format: 'WDHMS'
	});
	
});