$(document).ready(function(){
	$('a[rel=blank]').attr("target","_blank");
	$('#top-nav div').each(function(){
		$(this).mouseenter(function(){ $(this).css({"background-color":"#EAF7FF"}) });
		$(this).mouseleave(function(){ $(this).css({"background-color":""}) });
		$(this).click(function(){
			document.location.href=$(this).find('a').attr("href");	
		});
	});	
});
