    $(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
        });
		
		$('a#city_centre').addClass("active");
		
	$('.switchlink').click(function() {
		$('.switchlink').removeClass('active');
		$(this).addClass('active');
		var currentlink = "." + $(this).attr('id');
		if (currentnum == $(this).attr('id')) {
		} else {
		var currentnum = $(this).attr('id');
		$('.switchnum').fadeOut(0);
		$(currentlink).fadeIn(0);
		}
	});
		
});


