(function ($)
{	
	$(document).ready(function () { 
		$('.brightRow')
			.mouseover(function() { $(this).addClass('highlight'); })
			.mouseout(function() { $(this).removeClass('highlight'); })
	
		$('.darkRow')
			.mouseover(function() { $(this).addClass('highlight'); })
			.mouseout(function() { $(this).removeClass('highlight'); })
			
	    $('.darkRow ,.brightRow').click(function () { 
			  temp =  $(this).find('a');
    	  	  window.open(temp[0].href);
	    });
		
		
	});
})(jQuery)