jQuery.noConflict();

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

        );
    });
};

jQuery(function(){ 
    jsl.image.rollover();
    jsl.image.rolloverOP();
    jsl.css.fixBrowser("http://mm-tokyo.com/wp-content/themes/park-custom/css/");

});

