$(document).ready(function(){
	$currentPage = jQuery.url.attr("file");
	if($currentPage== "the-project.html") {
		$("body").attr({id: "proj"})
	} else if($currentPage=="about-us.html"){
		$("body").attr({id: "abt"});
	} else if($currentPage=="current-news.html"){
		$("body").attr({id: "nws"});
	} else if($currentPage=="contact-us.html"){
		$("body").attr({id: "cnt"});
	}
});