$(function() {
	
	// Banner Slideshow
	$('.slideshow').cycle({ 
		fx:     'fade', 
		timeout: 6000, 
		delay:  -2000
	});
	
	// Banner Countdown
	if ($('#countdown').length > 0) {
		var link = $('#countdown a').first().attr('href');
		if (link) {
			$('#countdown').css('cursor', 'pointer').click(function() {
				window.location = link;
			});	
		}
	}
	
});