    $(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
        });
		
		$('#home .leadarticleTH').appendTo('#header');
		$('#staffPhoto').appendTo('#header');
		
		$('.tfldropdowncallback h1').click(function(){
			$('.tfldropdowncallback .dropper').slideDown(1000);
		});
		
		$('.tfldropdowncallback .closer').click(function(){
			$('.tfldropdowncallback .dropper').slideUp(1000);
		});
		
		$('.tfldropdowncallback #callbackform .emailclk').focus(function() {
			$('.tfldropdowncallback .captcha_hider').slideDown("slow");
		});
		
		$('.dropnumber h1').click(function(){
			$('.dropnumber .dropper').slideDown(1000);
		});
		
		$('.dropnumber .closer').click(function(){
			$('.dropnumber .dropper').slideUp(1000);
		});
		
		$('.tfldropdownenquiryform h1').click(function(){
			$('.tfldropdownenquiryform .dropper').slideDown(1000);
		});
		
		$('.tfldropdownenquiryform .closer').click(function(){
			$('.tfldropdownenquiryform .dropper').slideUp(1000);
		});
		
		$('.tfldropdownenquiryform #contactForm .emailclk').focus(function() {
			$('.tfldropdownenquiryform .captcha_hider').slideDown("slow");
		});
		
    });
	

