$(document).ready(function() {
						  
  $("#footerAds a").not(".current").hover(
	function () {
		$(this).css("background-position","bottom center");
		},
	function () {
		$(this).css("background-position","top center");
	  }
	);
  
});

