$(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 > div').equalizeCols().hide().filter(':first').show();
	$('#videos #video_list').youtubeplayer();

});
