    $(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
        });
    });


    $(document).ready(function() {
        $('ul.leftudm').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:  false,                           // disable generation of arrow mark-up
            dropShadows: false                            // disable drop shadows
        });
		
	$('ul.udm_menu_level_2').hover(function() { // Keep menu active
	$(this).siblings('a.sf-with-ul').css({"background" : "#3D3C3C url(/images/tab-over.gif) repeat scroll 0 0",
											"padding-bottom" : "5px"});
	}, function() {
	$(this).siblings('a.sf-with-ul').css({"background" : "#AC1A2F url(/images/tab.gif) repeat scroll 0 0",
											"padding-bottom" : "0"});
	});
	
    });