// JavaScript Document


function footer(page)
{
	document.write('	<div id="footer">');
	document.write('	<div id="footer-inner">');
	document.write('	<a href="http://www.facebook.com/SchultzDevelopmentCorp" class="fb">Facebook</a>');
	document.write('		<p class="copy">');
	
	if (page=="home"){
		document.write('			Schultz Development has been building fine custom homes in<br />');
		document.write('			Paradise Valley, Scottsdale and the Phoenix area for over 20 years.');	
	} else {
		document.write('			<br /><br />');	
	}
	
	document.write('</p>');
	document.write('		<p class="contact-info">');
	document.write('			Schultz Development Corp. &nbsp;|&nbsp; General Contractor &nbsp;|&nbsp; Residential/Commercial Builder &nbsp;|&nbsp; 7890 East McClain Drive &nbsp;|&nbsp; Suite 1<br />');
	document.write('			Scottsdale, Arizona 85260 &nbsp;|&nbsp; Office (480) 991-6054 &nbsp;|&nbsp; Fax (480) 991-1140 &nbsp;|&nbsp; Res. License # B-089314 &nbsp;|&nbsp; Comm. License # B-01-129577');
	document.write('		</p>');
	document.write('	</div>');
	document.write('	</div>');
}
	

function header()
{
	document.write('	<div id="header-left">');
	document.write('		<a href="index.html"><img src="images/logo.gif" width="276" height="67" border="0" alt="Schultz Development" /></a>');
	document.write('	</div>');
	document.write('	<div id="header-right">');
	document.write('		<img src="images/subhdr-passion-excellence.gif" width="246" height="21" alt="Passion for Excellence" />');
	document.write('	</div>');
}
