/* pleasuresports.com */

jQuery.fn.vjustify = function() {
    var maxHeight = 0;
    this.each(function() {
        if (this.offsetHeight > maxHeight) {
            maxHeight = this.offsetHeight;
        }
    });
    this.each(function(){
        $(this).height(maxHeight + "px");
        if (this.offsetHeight > maxHeight) {
            $(this).height((maxHeight - (this.offsetHeight - maxHeight)) + "px");
        }
    });
};

$(document).ready(function(){

//    $("#nav-product, #bodycontent").vjustify();

    tb_init('a.iviewer', "/lib/yhst-14715689733760/loading.gif", "/lib/yhst-14715689733760/close.gif");

    $('ul.jd_menu').jdMenu(
        { showDelay: 90,
        hideDelay: 110,
        disableLinks: false,
        onAnimate: null}
    );

    $('.top-nav').flymenu({
        hideDelay: 100,
        switchDelay: 100,
        showDelay: 100
    });

});
