$(document).ready(function(){
var page = window.location;
	$("a").each(function(){		
		var tmp = "http://" + window.location.host + "/" + $(this).attr("href");
		if (tmp == page) {
			$(this).addClass("selected");
        }
	});
});

