function createHeader(){
	document.write("<div id='master'><div id='header'><a href='index.html'>");
	document.write("<img src='Images/Header.jpg' border='0' alt='Jay Beyer Imaging: Outdoor Adventure Photography' /></a></div>");
	document.write("<div id='menu'><a href='index.html'>Home</a> | <a href='Snow.html'>Snow</a> | <a href='Climb.html'>Climb</a> | ");
	document.write("<a href='Trail.html'>Trail</a> | <a href='Scenic.html'>Scenic</a> | <a href='Fish.html'>Fish</a> | ");
	document.write("<a href='Life.html'>Life</a> | <a href='Eli.html'>Eli</a> | <a href='Fine.html'>Fine Art</a> | ");
	document.write("<a href='Bio.html'>Bio</a> | <a href='Client.html'>Clients</a> | <a href='Contact.html'>Contact</a></div><div id='content'>");}

function createFooter(){
	document.write("</div><div id='footer'><hr width='350px' size='1' color='#ccccff' />Copyright &copy; ");
	document.write("2008 Jay Beyer Imaging. All Rights Reserved.<br />Email: <a href='mailto:jay@jaybeyer.com'>jay@jaybeyer.com</a> ");
	document.write("Phone: 801-891-0838<br />Last Updated on " + document.lastModified + "</div></div>");}

imgTotal=7;
imgNum=0;

function mainImage(){
	getImage();
	setTimeout("mainImage()",3000);}

function getImage(){
	if(imgNum==0)document.mainImage.src="Images/08-001B.jpg";
	if(imgNum==1)document.mainImage.src="Images/08-002B.jpg";
	if(imgNum==2)document.mainImage.src="Images/08-003B.jpg";
	if(imgNum==3)document.mainImage.src="Images/08-004B.jpg";
	if(imgNum==4)document.mainImage.src="Images/08-005B.jpg";
	if(imgNum==5)document.mainImage.src="Images/08-006B.jpg";
	if(imgNum==6)document.mainImage.src="Images/08-007B.jpg";
	imgNum++;
	if(imgNum==imgTotal)imgNum = 0;}