// JavaScript Document

$(document).ready(function() {
	//salert(location.pathname+location.search);
	if(location.search != ""){
		selected_menu = $("ul.menu-list li a[href='"+location.pathname+location.search+"']").attr("id");
	} else {
		selected_menu = "home";
	}
	try{$("#"+selected_menu).addClass("current");}catch(e){}
	try{document.getElementById(selected_menu).href = 'javascript:void(0);';}catch(e){}
});
