$(document).ready(function(){


	$('div.hov').hover( function(){
		$(this).toggleClass('hovered');


	},function(){
		$(this).toggleClass('hovered');

	})

	$('div.hov').click( function(){
		if( "#" == $(this).find('.h2-pic a').attr('href')){
			return true;
		}
	 window.location = $(this).find('.h2-pic a').attr('href')
	})

});