    $(document).ready(function() {
        $('ul.udm').superfish({
            delay:       10000,                            // 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 pageTitle = $('#crumbtrail .crumbtraillink:nth-child(2) a').html();
		$('.pageTitle p').before('<p class="Title">' + pageTitle + '</p>');
		
	$('body#home #container-centre').append('<div class="clear"><!-- clear --></div>');
	
	$('body#home .purpleband').wrap('<div id="bandholder"></div>');
	
		var myH2 = $('body#home .newsTH .title h2:first');
	var myH3 = $('<h3></h3>').append(myH2.contents());
	myH2.replaceWith(myH3);
	
	var my2H2 = $('body#home .relatedarticlesTH .title h2');
	var my2H3= $('<h3></h3>').append(my2H2.contents());
	my2H2.replaceWith(my2H3);
		
    });


