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