$(function(){ 
	$('.menu').hover(
		function(){
			$(this).children('ul').css({display:'block'});
			$(this).children('span').css({background:'#fff url(/templates/default/images/icon_all.gif) no-repeat right 17px'});
		},function(){
			$(this).children('ul').css({display:'none'});
			$(this).children('span').css({background:'url(/templates/default/images/icon_all.gif) no-repeat right 17px'});
		});
});

$(function(){ 
	$('.ithWebLink').hover(
		function(){
			$(this).children('ol').css({display:'block'});
		},function(){
			$(this).children('ol').css({display:'none'});
		});
});