$(function() {
	
	
	
	if (location.href == "undefined") {
		page = "index.php";
	}else{
		str1 = location.href;
		page = (str1.split("/"))[(str1.split("/")).length-1];
	}
	
	jQuery("a[href$='" + page + "']").parent().addClass("selected");
	jQuery("a[href$='" + page + "']").addClass("selected");
	
	jQuery("#nav a").hover(
		  function () {
		    jQuery(this).addClass("current");
		  },
		  function () {
		    jQuery(this).removeClass("current");
		  }
	);
});