$(document).ready(function(){
	$("#nav li dl").each(function(){
		$(this).css({'width':$(this).parent().width()});
		$(this).parent().attr('dl_height',$(this).height()+5);
		$(this).css({'height':'0px', 'visibility':'visible'});
	});
	$("#nav li").hover(function(){
		$(this).css('background','#025e1d');							
		$(this).find("dl").stop().animate({'height':$(this).attr('dl_height')+'px'}, 700);
	},function(){
		if($(this).attr('dl_height')!=undefined && $(this).attr('dl_height') !='0' ){
		    $(this).find("dl").stop().animate({height: '0'}, 700,function(){
			if(!$(this).parent().hasClass('current'))$(this).parent().css('background','');
			});
		}else{
		    if(!$(this).hasClass('current'))$(this).css('background','');
		}
	});
	$("#nav li dd").hover(
	   function(){
		 $(this).css({'background-image':'url(/css/images/nav_dd_hover.jpg)','background-color':'#025e1d'});
		   },
	   function(){
		 $(this).css({'background-image':'url(/css/images/nav_dd.jpg)','background-color':''});
     })
});
