$(document).ready(function() {
		 $('ul#menu li a.btEventos').click(function() {
				$('#submenu').slideDown('slow').attr('class','Sativo');
				$('.Sativo').hide();
		return false;
		 });
	
	$("input.busca").click(function(){
		$(this).val('');
	})	
	
	});




function comboChange(comoBox,usado){
	 window.open( comoBox.options[comoBox.selectedIndex].value);
 if (usado) comoBox.selectedIndex=0;
} 

function EnterKey(evt)
 {                                    
 var theKey; 
       theKey = evt.which;                              
 if (theKey == 13)
   {                                             
     document.Logon.submit();                                   
   }                                                            
}

