var completeURL=document.URL;
var position=completeURL.lastIndexOf('/') + 1;
var pagename = completeURL.substring(position,(completeURL.length));

var subject = document.title.substring(18,(document.title.length)) //get subject from title
subject = "Website%20Inquiry%20-%20" + subject.replace(/ /g,"%20") // replace spaces with %20 to format for email
var mailto = "mailto:sboyes@sasktel.net?subject=" + subject

document.write('<div class="navlinks">');

if (pagename=='index.html' || pagename=='') 
{document.write('<a href="index.html" ><b>Home</b></a> &bull; ');}
else
{document.write('<a href="index.html" >Home</a> &bull; ');}

if (pagename=='forsale.php') 
{document.write('<a href="forsale.php" ><b>For Sale</b></a> &bull; ');}
else
{document.write('<a href="forsale.php" >For Sale</a> &bull; ');}

if (pagename=='stallions.php') 
{document.write('<a href="stallions.php" ><b>Stallions</b></a> &bull; ');}
else
{document.write('<a href="stallions.php" >Stallions</a> &bull; ');}

if (pagename=='mares.php') 
{document.write('<a href="mares.php" ><b>Mares</b></a> &bull; ');}
else
{document.write('<a href="mares.php" >Mares</a> &bull; ');}

if (pagename=='services.html') 
{document.write('<a href="services.html" ><b>Services</b></a> &bull; ');}
else
{document.write('<a href="services.html" >Services</a> &bull; ');}

if (pagename=='gallery.php') 
{document.write('<a href="gallery.php" ><b>Gallery</b></a> &bull; ');}
else
{document.write('<a href="gallery.php" >Gallery</a> &bull; ');}

if (pagename=='newsevents.html') 
{document.write('<a href="newsevents.html" ><b>News/Events</b></a> &bull; ');}
else
{document.write('<a href="newsevents.html" >News/Events</a> &bull; ');}

if (pagename=='links.html') 
{document.write('<a href="links.html" ><b>Links</b></a> &bull; ');}
else
{document.write('<a href="links.html" >Links</a> &bull; ');}

document.write('<a href=' + mailto + ' >Email</a>');

document.write('</div> <!-- end trailer -->');


