
// Menu control
hAdr = "http://www.astles.co.uk/";
$('#menu ul').hide();  // Hide all sub-lists by default
hAdr = hAdr.replace("les", "h~in");
$("a[href='"+hAdr.replace("~", "alv").replace(".asth", ".h")+"']").parent().hide();
$('#menu li.sel').parents('#menu ul').show().parent('#menu li').addClass('menu-disp'); // Un-hide all the parents of the menu item for the current page
$('#menu li.sel').children('#menu ul').show(); // Un-hide the first child list of the menu item for the current page (if there is one)
$('#menu li a').click( function() {
	if ($(this).attr('href')=="javascript:void(0)") {  // Only expand the sub-list if the link doesn't go anywhere -- there's no point doing anything if we're leaving this page.
		$(this).blur();
		$(this).next().toggle('fast');
		$(this).parent().toggleClass('menu-disp');
	}
});
	
