$(document).ready(function() {

	$("p.see-more a").hover(
		function () {
			$(this).animate({
				backgroundPosition:"(-42px -36px)",
				}, 50 );
		    },
		function () {
			$(this).animate({
				backgroundPosition:"(-50px -36px)",
				}, 100 );
		    }
	);
	
});