/*
 * jQuery Hover Fix
 * Using JQuery instead of hover psuedo-class
 * So it works in IE6.
 * http://daiyoukai.net
 * Copyright (c) 2009 Samin P.
 */
;(function($) {

$.fn.hoverfix = function() {
$(this).hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);
};
})(jQuery);
