$(document).ready(function(){
	$('#dropdown li.mostra_menu').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
		
	$("input").keypress(function (e) {  
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {  
			$("#bt_filtrar").click(); 
		}  
	}); 
});