// Juice Daddy - Custom JavaScript

var JuiceD = {
    bgFix: function() {
        var tmpPath = location.pathname;
        tmpPath = tmpPath.substring(1,4);
        
        if(tmpPath == "pro" || tmpPath == "sto") {
            document.body.className = document.body.className + ' j-products';
        }
        
        if(tmpPath == "blo") {
            document.body.className = document.body.className + ' j-blog';
        }
        
    }        
};

YAHOO.util.Event.onDOMReady(function() {
    JuiceD.bgFix();
});

//