function menushow() {	

	var slength = $('.top_menus_bg').length
	for (i=0;i<slength;i++) {
		var txtheight = $('.top_menus:eq('+(i)+')').find('ul').height();
		 $('.top_menus:eq('+(i)+')').find('.top_menus_bg').css("height",txtheight+5); 		
		}
	
	$('.top_menus').hover(	
		
		function(){	
		$(this).find('a').addClass("current"); 
		$(this).find('.top_menus_bg').slideDown(400);
		$(this).find('ul').delay(400).fadeIn(400);
									  },
		function(){
		$(this).find('a').removeClass("current"); 
		$(this).find('ul').fadeOut(400);	
		$(this).find('.top_menus_bg').delay(400).slideUp(400);
									  })

	}


$(function(){
	menushow();
	//menu();
});


