$(document).ready(function() {
	pagename();	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});

function pagename()
{
	var sPath = window.location.pathname;
	var o;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	if(sPage=="")
	{
		$("#hom").addClass("active");
		$("#hom").removeAttr("href");
	}
	if(sPage=="index.php")
	{
		$("#hom").addClass("active");
		$("#hom").removeAttr("href");
	}
	if(sPage=="rentparkingspace.php")
	{   
		$("#rent").addClass("active");
		$("#rent").removeAttr("href");
	}
	if(sPage=="buyparkingspace.php")
	{   
		$("#buy").addClass("active");
		$("#buy").removeAttr("href");
	}
	if(sPage=="advertiseparkingspace.php")
	{   
		$("#advt").addClass("active");
		$("#advt").removeAttr("href");
	}
	if(sPage=="contact.php")
	{   
		$("#cont").addClass("active");
		$("#cont").removeAttr("href");
	}
	if(sPage=="login.php")
	{   
		$("#login").addClass("active");
		$("#login").removeAttr("href");
	}
}




