
$(document).ready(function(){
$("li.home").hover(
  function () {
    $("#flyout").fadeIn("400");
	$("#home").css("background-position","0px 21px");
  },
  function () {
    $("#flyout").fadeOut("400");
	$("#home").css("background-position","0px 0px");
  }
);

});

