
jQuery(document).ready(function()
{

jQuery("#aRefinaBusca").click(function() {
        jQuery(this).next().toggle();
        }); 
        
     jQuery("div.fechamento #CreditCardCode a#codSeguranca").hover(function() {
	//jQuery(this).find("a").addClass('hover');	
		jQuery('#rptFormaPagamento_ctl00_pnlInfoCartoes #box_codSeguranca').css('display','block');	
	}, function() {	
	//jQuery(this).find("a").removeClass('hover');
		jQuery('#rptFormaPagamento_ctl00_pnlInfoCartoes #box_codSeguranca').css('display','none');	
	});  
            
            
            
            // Função para o Menu e Submenu
	jQuery("div#header_caterory_container dl#header_menu_category dd").hover(function() {
	//jQuery(this).find("a").addClass('hover');	
		jQuery('div.submenu',this).css('display','block');	
	}, function() {	
	//jQuery(this).find("a").removeClass('hover');
		jQuery('div.submenu',this).css('display','none');	
	});    
	
	
	jQuery("div#header_caterory_container dl.todosDepartamentos dd").hover(function() {
		jQuery('div.submenu',this).css('display','block');	
	}, function() {	
		jQuery('div.submenu',this).css('display','none');
	
	}); 
             
});




