function show_active_menus()
{
	$('li.expand ul').hide();
	$('#b_register-freight-forwarder #m_register-freight-forwarder, #b_register-broker #m_register-broker, #b_freight-forwarder-cargo m_freight-forwarder-cargo, #b_freight-forwarder-cargo #m_freight-forwarder-cargo')
	.parent('li').parent('ul').show();
}

$(document).ready(function() {
	/* open links with rel="external" in new window and amend link title */
	$('a[rel*="external"]').each(function() {
		var title = $(this).attr('title') ? $(this).attr('title') + ' (opens in a new tab or window)' : 'This link will open in a new tab or window';
		$(this).attr('title',title).click(function() {
			window.open($(this).attr('href'));
			return false;
		});
	});
	
	$('li.expand').mouseover(function() {
		$(this).children('ul').show();
	});	
	$('li.expand').mouseout(function() {
		show_active_menus();
	});	
	show_active_menus();
});

