// JavaScript Document
$(function(){
	$("#menu2 ul li").hover(function(){
		$(this).find("ul").show("fast")
	}, function(){
		$(this).find("ul").hide(50)
	})
	
	//
	if ($("#anuncio").length == 1) {
		$("#fundo-anuncio").animate({
			opacity:0.6
		}, 800).show()

		$("#anuncio").slideDown("slow")
		
		$("body, html").click(function(){
			$("#fundo-anuncio").animate({
				opacity:0
			}, 800).hide()
	
			$("#anuncio").hide("fast")
		})
	}
})
