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

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

      
		
       var theURL = location.pathname;
       if (theURL !='/site/home/') {
          var pageTitle = $('#container-centre .title h1').html();
                $('.heading h1').html(pageTitle);
                $('#container-centre .title h1').remove();
       }
    });
