$(function() {
   var mouseOverLogo = false, animElement = document.getElementById("logo-animation")||document.all.logo-animation, i;
   function animateLogo() {
	   if (!mouseOverLogo) return;
	   i -= 79;
	   if (i==(-79*30)) i = 0;
	   animElement.style.backgroundPosition = i + "px 0";
	   setTimeout(animateLogo, 100);
	}
   $("header").hover(function() {
	   i = 0;
	   mouseOverLogo = true;
	   animateLogo();
	}, function() {
		mouseOverLogo = false;
      animElement.style.backgroundPosition = "0 0";
	}).click(function() {
		location.href = "/";
	});
   var facebook = $("iframe").first(), body = $(document.body), logo = $("#logo");
   facebook.css("right", "auto");
   facebook.css("left", logo.offset().left + body.width() - facebook.width() + "px");
});
