$(document).ready(function(){

	$("#main-menu li a").hover(function() {	//On hover...
		if(!$(this).hasClass('active')){
			$(this).stop().animate({ 
				backgroundPosition: "0px -26px" //Find the span tag and move it up 40 pixels
			}, 150);
		}
	} , function() { //On hover out...
		if(!$(this).hasClass('active')){
			$(this).stop().animate({
				backgroundPosition: "0px -0px"
			}, 150);
		}
	});
	
});
