$(function(){
	$('.language a')
		.css( {backgroundPosition: "50% -6px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(50% 0)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(50% -6px)"}, {duration:100, complete:function(){
				$(this).css({backgroundPosition: "50% -6px"})
			}})
		})
	$('.language a.cur')
		.css( {backgroundPosition: "50% -200px"} )
		.mouseover(function(){
			$(this).stop()
		})
		.mouseout(function(){
			$(this).stop()							 
		})
	$('.menu_top li, .menu_bot a ')
		.css( {backgroundPosition: "50% -10px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(50% 1px)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(50% -10px)"}, {duration:100, complete:function(){
				$(this).css({backgroundPosition: "50% -10px"})
			}})
		})
	$('.menu_top li.cur,.menu_bot a.cur')
		.css( {backgroundPosition: "50% -199px"} )
		.mouseover(function(){
			$(this).stop()
		})
		.mouseout(function(){
			$(this).stop()							 
		})
});

$(function(){
	$('.top_menu_bg a.curent')
		.css( {backgroundPosition: "8px -12px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(8px -20px)"}, {duration:300})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(8px -12px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "8px -12px"})
			}})
		})
});
