// JavaScript Document


var tagline = 'Family Owned and Operated and Ready to Serve You'
var upcomingEvents = 'Visit us at our friends <a href="http://www.zsport.org/index.php" target="_blank">Z Sport the Z Club of San Antonio</a>.<br />We&rsquo;re proudly featured on the cover of their <a href="http://zsport.org/images/newsletters/ZSportNewsletterMarchApril2010.pdf" target="_blank">March / April 2010 Newsletter</a>.'

var account1 = "info"	// user 1
var domain1 = "@domain1"	// domain 1

var account2 = "acct2"	// user 2
var domain2 = "@domain2"	// domain 2

var account3 = "acct3"	// user 3
var domain3 = "@domain3"	// domain 3
		
function drawEmailAddress(obj) {
	switch(obj) {
	case 1: // user 1
		account=account1
		domain=domain1
	break;
	
	case 2: // user 2
		account=account2
		domain=domain2
	break;
	
	case 3: // user 3
		account=account3
		domain=domain3
	break;
	default:
	}
	document.write('<a href="mailto:'+account1+domain1+'?subject=R &amp; N Garage Web Site Inquiry">'+account1+domain1+'</a>');
}
	
function swapImg(ImgToChange,ImgToShow) {
	if (document.images) { document.getElementById(ImgToChange).src = ImgToShow; }
}

function setNavMain(obj) {
	if(obj!="0") { document.getElementById(obj).className="active"} else {
	
	}
}

function drawHeader() {
	document.write('<div id="header">');
	document.write('    <h1 id="slogan">'+tagline+'</h1>');
	document.write('  </div>');
}

function drawHeaderSm() {
	document.write('<div id="headerSm">');
	document.write('    <h1 id="slogan">'+tagline+'</h1>');
	document.write('  </div>');
}

function drawNavMain() {
	document.write('<div id="navMain">');
	document.write('<a href="default.htm" id="navMain1">Home</a> ');
	document.write('<a href="ourServices.htm" id="navMain2">Services We Provide</a> ');
	document.write('<a href="ourLocation.htm" id="navMain3">Our Location</a> ');
	document.write('<a href="aboutUs.htm" id="navMain4">About Us</a> ');
	document.write('<a href="swaps.htm" id="navMain5">SR SWAPs</a> ');
	document.write('<span id="phoneNum">Call us 210.495.5959</span>');
	document.write('</div>');
}

function drawFooter() {
	document.write('<div id="footer">');
	document.write('	<div class="cards"><a href="https://www.bbb.org/online/consumer/cks.aspx?id=110061615514" target="_blank"><img src="images/bbbsealh1US.gif" alt="Council of Better Business Bureaus" width="135" height="51" /></a>&nbsp;<img src="images/amex.gif" alt="American Express" width="39" height="25" /><img src="images/visa.gif" alt="Visa" width="39" height="25" /><img src="images/mastercard.gif" alt="Mastercard" width="39" height="25" /><img src="images/discover.gif" alt="Discover Card" width="39" height="25" />&nbsp;&nbsp;</div>');
	document.write('	');
	document.write('    <h1>A Special Message...</h1>  ');
	document.write('    <p style="margin-top: -.3em;">'+upcomingEvents+'</p>');
	document.write('  </div>');
	document.write('	<div id="contactInformation">3615 Tavern Oaks San Antonio, TX 78247&ndash;4807 210.495.5959 Fax 210.495.9292<br /><!--Questions or comments? Contact R &amp; N Garage:--> ');
	//drawEmailAddress(1);
	setNavMain(navMainActive);
	document.write('	</div>');
}

function drawPromos(obj) {
switch(obj) {
	case 1:
		document.write('      <h1>Promo One</h1>');
		document.write('	<div id="campaignTeam">');
		document.write('      <p>Content Here</p>');
		document.write('	</div>');
		document.write('      <h1>Promo Two</h1>');
		document.write('	<div id="sboxEvents">');
		document.write('      <p>Content Here</p>');
		document.write('	</div>');
	break;
	
	case 2:
	
	break;
	
	default:
	}
}

