// JavaScript Document


<!-- Rollovers
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->

<!-- Email thing
	function testEmail(prt1,prt2,id){
	//redirect to mailto
	window.location = 'mailto:'+prt1+'@'+prt2;
	return false;
	}
	//-->

<!-- FAQs page thing
var previousFaq = "faq1";	
function thisFaq(myId) { //v4.01
  
	document.getElementById(previousFaq+"Div").style.display="none";
	document.getElementById(previousFaq+"Li").setAttribute("class" , "");
	
	document.getElementById(myId+"Div").style.display = "inline";
	document.getElementById(myId+"Li").setAttribute("class" , "marked");
	
	previousFaq = myId;
  
}

<!-- Photo rotation  -->

var photoCap = new Array(
						 "Exterior One",
						 "Bath Cabinet",
						 "1428 Upshot",
						 "Hand Crafted Kitchen",
						 "Premium Hardware",
						 "Exterior Corner Of L",
						 "Book Matched Grain",
						 "Exterior Light",
						 "Bathroom Sink",
						 "Cottage Kitchen",
						 "Corner Beam",
						 "Infra-red Outdoor Northeast",
						 "Infra-red Outdoor Northwest",
						 "2828L",
						 "Energy Star Bosch Dishwasher",
						 "3 Hours Later",
						 "142814 With Hallway Connector",
						 "Hatches",
						 "Craning a Lid",
						 "Moving Air",
						 "Galley Kitchen",
						 "2828L exterior",
						 "Jennaire Downdraft",
						 "Optional Laundry",
						 "1428 Nightshot",
						 "Shared Space",
						 "Dual Flush Water Saving",
						 "Custom 1428",
						 "Hall Storm Screen Open",
						 "Exterior Lid",
						 "Exterior Two",
						 "Clerestory Windows",
						 "Clean Lines",
						 "Energy Star Fridgidaire",
						 "Loft",
						 "Exterior One",
						 "Shower"
						 );				   
				   
			
var photoNum = 01;

function photoScroll(flipDir) {
	maxNum = 37;
	
	if (flipDir == "next"){
		photoNum = Number(photoNum+1);
	}else{
		photoNum = Number(photoNum-1);
	}
	
	if (photoNum > maxNum){
		photoNum = 01;
	}
	
	if (photoNum < 1){
		photoNum = maxNum;
	}
	
	if (photoNum < 10){
		op = "0";
	}else{
		op ="";
	}
	
	
	
	currentCaption = photoCap[photoNum-1]; // minus 1 because the array is 0 based
	
	//console.log (currentCaption);
	
	document.getElementById('myCaption').innerHTML = currentCaption;
	document.getElementById('photoBox').src = "/about_us/photo_"+op+photoNum+".jpg"
	
		
	
}