$(function(){ 
	$('.top_menu').hover(
		function(){
			$(this).children('ul').css({display:'block'});
			$(this).focus().css({background:'#fff url(../showbox-bg.gif) repeat-x left top'});
		},function(){
			$(this).children('ul').css({display:'none'});
			$(this).focus().css({background:'none'});
		});
});
