$(function(){	
	$('#topmenu ul a')
	.css( {backgroundPosition: "0 75px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 65px)"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 75px)"}, 
			{duration:200})
		})
	
	$('#topmenu ul a.active')
	.css( {backgroundPosition: "0 65px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 63px)"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 65px)"}, 
			{duration:200})
		})
});