// JavaScript Document Holds DATE, TOP NAVIGATION, ADDRESS & DISCLAIMER Include File Used On All Web Pages


/********************************************************
* TOP NAV
********************************************************/
function topNav() {
document.write('<div id="top" align="center">');
document.write('<a href="index.htm" class="nav">Home</a><a href="portfolio.htm" class="nav">Portfolio</a><a href="about.htm" class="nav">About the Photographer</a><a href="contact.htm" class="nav">Contact Me</a><a href="site.htm" class="nav">Site Map</a>');

}

/********************************************************
* PORTFOLIO NAV
********************************************************/
function portNav() {
document.write('<div id="top" align="center">');
document.write('<a href="index.htm" class="nav">Home</a><a href="portfolio.htm" class="nav">Portfolio</a><img src="graphics/diamond.jpg" width="8" height="8" /><a href="commercial.htm" class="nav">Commercial</a><img src="graphics/diamond.jpg" width="8" height="8" /><a href="editorial.htm" class="nav">Editorial</a><img src="graphics/diamond.jpg" width="8" height="8" /><a href="smartyJones.htm" class="nav">Thoroughbred Racing</a><img src="graphics/diamond.jpg" width="8" height="8" /><a href="wedding.htm" class="nav">Weddings</a><a href="contact.htm" class="nav">Contact me</a><a href="site.htm" class="nav">Site Map</a>');

}

/********************************************************
* ADDRESS AND DISCLAIMER 
********************************************************/
function addressDis() {
document.write('<div id="addressDis" align="center">');
document.write('&copy;2010 Skip Dickstein Photography. All Rights Reserved<br>');
document.write('7 Hill Road | Stillwater, New York 12170 | Phone:  518.369.2345<br>');
document.write('<span class="alternate">Website Designed and Maintained by</span> <a href="http://www.alternatehighways.com" class="alternate" target="_blank">AlternateHighways.com</a>');
}