$(document).ready(function(){
  // apply to all png images
  $('img[@src$=.png]').ifixpng();



  // Suckerfish Menu
  $("#topMenu-one li").hover(
  function(){ $("ul", this).fadeIn("fast"); },
  function() { }
  );
  if (document.all) {
    $("#topMenu-one li").hoverClass ("sfHover");
  }
});

$.fn.hoverClass = function(c) {
  return this.each(function(){
    $(this).hover(
    function() { $(this).addClass(c);  },
    function() { $(this).removeClass(c); }
    );
  });
}