$(document).ready(function(){	$("#menu li").hover(		function(){			$( this ).css({background: "url('images/bg-menu.png') no-repeat" });		},		function(){			var back = $( this ).attr('class')!='first' ? "url('images/bg-menu-left.png') no-repeat" : 'none';			$( this ).css({background: back });		}	);	$("a[rel='externo']").click(function( e ){		e.preventDefault();		window.open( $( this ).attr('href') );	})});
