(function ($) {
	$(document).ready(function(){
		$('.page_item')
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -120px)"}, 
				{duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0)"}, 
				{duration:500})
		})
	});
})(jQuery);

