function getImage()
{
	var range = 32;
	var x = Math.floor(Math.random() * range) + 1;
		
	if (x < 100)
		x = "0" + x;
	if (x < 10)
		x = "0" + x;
	
	document.write("<img src='Images/" + x + ".jpg' alt='' />");
}

function drawHeader()
{
	document.write("<div id='master'><div id='header'><img src='Images/header.jpg' alt='Nauman Photography' /></div>");
	document.write("<div id='menu'><a href='index.html'>Main</a><br /><a href='family.html'>Family</a><br /><a href='seniors.html'>Seniors</a><br />");
	document.write("<a href='couples.html'>Couples</a><br /><a href='weddings.html'>Weddings</a><br /><a href='children.html'>Children</a><br />");
	document.write("<a href='restoration.html'>Restoration</a><br /><a href='credentials.html'>Credentials</a><br />");
	document.write("<a href='pricing.html'>Price Lists</a><br /><a href='contact.html'>Contact</a><br /></div><div id='content'>");
}


function drawFooter()
{
	document.write("<div id='footer'><a href='index.html'>Main</a> | <a href='family.html'>Family</a> | <a href='seniors.html'>Seniors</a> | ");
	document.write("<a href='couples.html'>Couples</a> | <a href='weddings.html'>Weddings</a> | <a href='children.html'>Children</a> | ");
	document.write("<a href='restoration.html'>Restoration</a> | <a href='credentials.html'>Credentials</a> | ");
	document.write("<a href='pricing.html'>Price Lists</a> | <a href='contact.html'>Contact</a><br />Copyright &copy; 2004-2010 ");
	document.write("<a href='mailto:greg@naumanphoto.com'>Nauman Photography</a><br />561 Obeche Court., Dubuque, IA 52003 - For more info call 563-599-1655<br />"); 
	document.write("Send Questions or Comments to: <a href='mailto:greg@naumanphoto.com'>Greg Nauman</a> ");
	;        
}




