// JavaScript Document

var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
document.write('<ul class="footer-nav">');
var class_botom1='';
var class_botom2='';
var class_botom3='';
var class_botom4='';
var class_botom5='';
var class_botom6='';
var class_botom7='';

if(sPage=="home.html")
{
	class_botom1='"class="current"';
}
else  if(sPage=="selling.html")
{
	class_botom2='"class="current"';
}
else  if(sPage=="buying.html")
{
	class_botom3='"class="current"';
}
else  if(sPage=="search.php")
{
	class_botom4='"class="current"';
}
else  if(sPage=="team.html")
{
	class_botom5='"class="current"';
}
else  if(sPage=="services.html")
{
	class_botom6='"class="current"';
}
else  if(sPage=="contacts.php")
{
	class_botom7='"class="current"';
}

document.write('<li><a href="home.html" '+class_botom1+'>Home</a></li>');
document.write('<li><a href="selling.html" '+class_botom2+'>Sell</a></li>');
document.write('<li><a href="buying.html" '+class_botom3+' >Buy</a></li>');
document.write('<li><a href="search.php" '+class_botom4+'>Search</a></li>');
document.write('<li><a href="team.html" '+class_botom5+'>Team</a></li>');
document.write('<li><a href="services.html" '+class_botom6+'>Services</a></li>');
document.write('<li><a href="contacts.php" '+class_botom7+'>Contacts</a></li>');
document.write('</ul>');


