$(document).ready(function(){


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

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

		
	})

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

});