/*
add .selected class to the menu of current page
*/
$(document).ready(function(){
	
	jQuery.each($("#nav li a"), function() {	
		
		if($(this).attr("href")==$("body").attr("id")){
	     	$(this).addClass("selected")
	   }
	
	});
	
});