$(document).ready(function(){
	var hellrider = new Date(2012, 6, 2, 10, 0, 0);
	$('.navigation .timer').countdown({
		until: hellrider,
		format: 'WDHMS'
	});
	
	$('#twitter_update_list').cycle({
		fx: 'scrollLeft'
	});
	
	$('.slider').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 5000
	});
	
	$('.midCol .section').hide();
	$('.midCol .section#default').show();
	
	$('.leftCol ul li a').click(function(){
		$('.midCol .section').hide();
		$('.section#'+$(this).attr('class')).show();
	});
});
