function init(){
	
	//$("#top").flash({swf:"/fenalaw/public/site/top2.swf",width:780,height:212});
	// foi para o rodape para detectar rj ou sp
	
	
	// SubMenus V
	$(".subMenuV").parent().css("background","url(/public/cards/menu-seta.gif) no-repeat 175px center");
	$(".subMenuV").hide();
	$(".subMenuV").parent().mouseenter( function(){
		$(this).find(".subMenuV").show();
	} );
	$(".subMenuV").parent().mouseleave( function(){
		$(this).find(".subMenuV").hide();
	} );
	
	// SubMenus H
	$(".subMenuH").hide();
	$(".subMenuH").parent().mouseenter( function(){
		$(this).find(".subMenuH").show();
	} );
	$(".subMenuH").parent().mouseleave( function(){
		$(this).find(".subMenuH").hide();
	} );
	
}

$(document).ready( init );
