$(document).ready(function(){
	$("#menu li").hover(
		function(){
			$( this ).find('ul').show('fast');
		},
		function(){
			$( this ).find('ul').hide('fast');		
		}
	);
	
	$("a[rel='externo']").click(function( e ){
		e.preventDefault();
		window.open( $( this ).attr('href') );
	});
});
