$(function(){
  if(document.all){
    $(window).bind("resize scroll", function() {
      $("#footer").css("top", ($(window).scrollTop() + $(window).height()- 51) + "px");
    });
  }
  $("#footer a img").hover(
    function(){$(this).css('top','-41px');},
    function(){$(this).css('top','0');}
  );
});
