//Sets up various hover states for home.html and some of the section pages
$(document).ready(function(){
	$('div.column, .multimedia').hover( function(){
		$(this).addClass("hover");
	},function(){
		$(this).removeClass("hover");
	})

	$('ul.articles li.section').hover( function(){
		$(this).toggleClass('hovered');
		$(this).find('img.widget-go').css('visibility', 'visible')

	},function(){
		$(this).toggleClass('hovered');
		$(this).find('img.widget-go').css('visibility', 'hidden')
	})

	$('div.column div.section').not(".multimedia").click( function(){
		if( "#" == $(this).find('h3 a').attr('href')){
			return true;
		}
	 window.location = $(this).find('h3 a').attr('href')
	})

});
