$(document.body).ready(function () { 

	url = window.location.pathname;
	url = url.replace('index.html','');
	url = url.replace('index.htm','');
	url = url.replace('index.php','');
	url = url.replace('index.cgi','');


	$('#LNV a').each(function(i){  


		href = $(this).attr('href');
		href = href.replace('index.html','');
		href = href.replace('index.htm','');
		href = href.replace('index.php','');
		href = href.replace('index.cgi','');

		if(href.substr(0, 2) == './'){
			href = href.substr(2);
			if(href == ""){
				href = "/";
			}
		}

		if (url.indexOf(href) >= 0){
			//target = $(this).closest('li').attr('class');
			$(this).addClass("selected_lnv"); 
		}

	}); 
}); 

