jQuery(function(){
	$('.nav li').hover(function(){
		var bg = $(this).attr('class')+'_bg';
		$(this).attr('class',bg);
		if($.browser.msie){
			$(this).find("ul:first").show();
		}else{ 
			$(this).find("ul:first").slideDown(300,'linear');
		}
	},function(){
		var bg = $(this).attr('class');
		bg = bg.replace('_bg','');
		$(this).attr('class',bg);
		$(this).find("ul:first").hide();
	});
	$('#footer a').hover(function(){
		if($(this).attr('class')!='tel'){
			$('#footer a span').hide();
			$(this).find('span').fadeIn();
		}
	},function(){
		if($(this).attr('class')!='tel'){
			$('#footer .tel span').show();
			$(this).find('span').hide();
		}
	});
});
