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

        $('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() {
			$(this).siblings('a').addClass("hoverover");
			}, function() {
			$(this).siblings('a').removeClass("hoverover");
		});
		
		$('a.claim-today').click(function() {
			$('#claim-today').show();
			$('#contact-us').hide();
			$('#claim-types').hide();
		});
		
		$('a.form-link').click(function() {
			$('#claim-today').show();
			$('#contact-us').hide();
			$('#claim-types').hide();
		});
		
		$('a.contact-us').click(function() {
			$('#contact-us').show();
			$('#claim-today').hide();
			$('#claim-types').hide();
		});
		
		$('a.claim-types').click(function() {
			$('#claim-types').show();
			$('#contact-us').hide();
			$('#claim-today').hide();
		});
		
		$('#home input.button').click(function() {
			$('#contactFormErrors').addClass('problem');
		});
		
		$('#container-right .emailclk').focus(function() {
			$('.captcha_hider').slideDown("slow");
		});
		
    });

