// JavaScript Document




var photos_swap = new Array('ranch_1.jpg','ranch_2.jpg','ranch_3.jpg');


var head_swap = new Array('ranch house goes through the roof','ranch house goes through the roof','ranch house goes through the roof');


var text_swap = new Array();

var same_text = "The client requested all in one room living (except for bedrooms, bathrooms and utility spaces.) The original low ceilings were unsatisfying. Our answer was to add a vaulted ceiling with transom windows which allows filtered light for the owner's copious and changing art collection.";

text_swap[0] = same_text;
text_swap[1] = same_text;
text_swap[2] = same_text;


/* PRELOAD */
function preloadImgsT3(){
	var i = 0;
    imageObj = new Image();
    images = new Array();     
	images[0]="images/loft_o.gif";     
	images[1]="images/beach_house_o.gif";     
	images[2]="images/ranch_o.gif";
    for(i=0; i<=images.length; i++){          
		imageObj.src=images[i];    
	}
}




