    $(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 pgLoc = location.pathname;
        pgLoc = pgLoc.toLowerCase();
        
        if (pgLoc.indexOf("/site/argent_news/") != -1 ) {
        $('.title h1').addClass("newsH1");
        }else{
        $('#container-centre .default .text p:first').addClass('intropara');
        }
        
        
        
        $('h2.leftudm_h2_active').wrap('<div class="menuarrow"></div>')

        $('body#home #container-centre .title').insertBefore('.home_buildings');
	
	$('input.formInputMissing').live("focus",function() {
			$(this).removeClass('formInputMissing');
	});
	
    });


