    $(document).ready(function() {
        $('ul.udm').superfish({
            delay:       1000,                            // one second delay on mouseout
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
            speed:       'normal',                          // faster animation speed
            autoArrows:  true,                           // disable generation of arrow mark-up
            dropShadows: true                            // disable drop shadows
        });

var startPos = 1;       
var pagePath = location.pathname;

if (pagePath == "/site/products/audit/" || pagePath == "/site/products/accesspoles/" || pagePath == "/site/products/detector_dusters/" || pagePath == "/site/de/products_de/audit_de/" || pagePath == "/site/de/products_de/access_de/" || pagePath == "/site/de/products_de/dusters_de/") {
startPos = 7;
}

        $('#mycarousel').jcarousel({
        		scroll: 7,
        		start: startPos
        });      
        
    });

