$(function(){
			/* Active Link */
		var currentURL = window.location.toString().split("/");

		var currentpage = currentURL[currentURL.length-1];
		$("#smoothmenu1 a").each(function() {
		var hreflink = $(this).attr("href");		
			if (hreflink.toLowerCase()==currentpage.toLowerCase()) {	
			
				$(this).addClass("current");
				if($(this).parents('li')){
					$(this).parents('li').addClass("current")
				}
			}
		});
});
