$(document).ready(function(){
	$('#home_callouts').find('a').each(function(){
		$(this).hover(
			function(){$(this).children('img').attr('src', $(this).children('img').attr('src').replace(/_off/, '_on'))},
			function(){$(this).children('img').attr('src', $(this).children('img').attr('src').replace(/_on/, '_off'))}
		);
	});
	$('#tab_links ul li a').click(function(){
		$('#tab_content > div').hide();
		$(this).parent().parent().find('a.active').removeClass('active');
		$(this).addClass('active');
		$('#tab_content '+$(this).attr('href')+'_content').show();
	});
	/*
	$('#tab_content').cycle({
	    fx: 'fade',
		speed:    1000,
		timeout:  4000,
		pause: 1,
		autoStop: 0
	});
	*/
	$('#tab_content > div').equalizeCols().hide().filter(':first').show();
	$('#videos #video_list').youtubeplayer();
	$('#callout_diet').click(function(){
		location.href = '/video_contest.htm';
	}).css('cursor','pointer');
});
