jQuery().ready(function(){
	//pulls id and class from path and assigns to body
	str1 = location.href;
	section = (str1.split("/"))[(str1.split("/")).length-2];
//	alert ((str1.split("/")).length);
	if ((str1.split("/")).length == 4) { section = "home" }
	page = (str1.split("/"))[(str1.split("/")).length-1];
	if (page == "") { page = "default"; }else{ page = page.split(".")[(page.split(".")).length-2]; }
	page = section + "-" + page;
	$("body").addClass(section);
//	alert(page);
	$("body").attr("id", page)
	
});

