$(document).ready(function(){

	// Get the source directory of this script
	/*
	root = $('script[@src$=jquery.js]').attr('src').replace('js/jquery.js', '');
	if(!location.href.match('www')){
		root = root.replace('www.', '');
	}
	*/
	
	// Initialise the menu
	menuInit();

});

// Initialise the menu
function menuInit(){
	
	// Add some extre divs around menu elements
	$('#menu div').addClass('linkdiv');
	$('#menu a, #menu div').each(function(){ $(this).wrapAll('<div class="wrapdiv"></div>') });
	$('#menu').addClass('enabled');
	
	var pageTitle = $('#identifier').eq(0).html();

	// Make a section active if the subitem is selected
	$('#menu a').each(function(){
		thisItem = $(this);
		thisHtml = thisItem.html();
		if(thisHtml == pageTitle){
			thisParent = thisItem.parents('li');
			thisParent.addClass('active');
			thisParent.parents('li').addClass('active');
		}
	});
	
	
	$('#menu li').hoverIntent(
		function(){ $('>ul', this).slideDown('fast'); },
		function(){ $('>ul', this).slideUp('fast'); }
	);
}