$(document).ready(function(){
    P7_initPM(1, 0, 1, -20, 10);
});

// JavaScript Website
jQuery("document").ready(function() {
    jQuery("#menu a").each(function() {
        var testUrl = jQuery(this).attr("href");
        if (testUrl != "/") {
            testUrl = testUrl + "/";
        }
        if (location.pathname == testUrl)
            jQuery(this).addClass("focus");
    });
});
