 $(document).ready(function(){
	$("div#menu_fundo span.menu a.dropdown").hover(function (){
		$("div#"+this.id+"_d").stop().delay(500).animate({height: "+="+(120-parseInt($("div#"+this.id+"_d").css('height')))+"px"}, 500 );
	},function (){
		$("div#"+this.id+"_d").stop().animate({height: "-="+(parseInt($("div#"+this.id+"_d").css('height')))+"px"}, 500, function() {$(this).css("display","none").css("height","0px");} );
	}).each(function (){
		$("div#"+this.id+"_d").css("background","#a21b1b url(/img/dd_"+this.id+".png) no-repeat scroll bottom right");
		window["pic_"+this.id] = new Image(88,31); 
		window["pic_"+this.id].src="/img/dd_"+this.id+".png";
	});
 });

