    $(document).ready(function() {
        $('ul.udm').superfish({
            delay:       0,                            // 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
        });
    
		$('#container-left #contactForm .emailclk').focus(function() {
				$('.captcha_hider').slideDown("slow");
		});
		
		$('#contactForm .showcaptcha').focus(function() {
				$('.captcha_hider').slideDown("slow");
		});
		
		$('ul.udm_menu_level_2').hover(function() {
			$(this).siblings('a.sf-with-ul').css({"background" : "#738FB3"});
			 }, function() {
			 $(this).siblings('a.sf-with-ul').css({"background" : ""});
		});
		
	});