// JavaScript Document
$(document).ready(function(){
	$('#'+strLocation).addClass('leftMenuRouge');
	$('#'+strHighlight).addClass('subMenuCurrent');
		
	$('#sub'+strLocation).fadeIn();
			


		

			
/*	$(".MenuItem a").hover(function(){
		var strTarget = '#sub'+$(this).parent().attr("id");
		//if($(strTarget).length > 0){
			$('.subMenuItems').hide();	
			$('#sub'+$(this).parent().attr("id")).fadeIn('fast');
		//}
			
	},function(){});

	$('#leftNav').hover(function(){},function(){
		$('.subMenuItems').each(function(){
			if ($(this).attr("id")!='sub'+strLocation)
				$(this).hide();
			else
				$(this).show();
		});
	});
*/});


