// Guy Herschell Architects Index Text Manupulations Version 15.02
// SpaceofCreation 2011. wwww.spaceofcreation.co.nz
// Tested X platform on all browsers as working on 18 May 2011

var quote = new Array()

quote[0]= "Fusing energy efficiency and environmental responsibility."
quote[1]= "Highly creative design, crafted homes."
quote[2]= "Buildings which are innovative, imaginative and pleasing to occupy."
quote[3]= "Intelligent ideas, creative solutions."
quote[4]= "Environmentally meaningful architectural solutions."
quote[5]= "Our children are the caretakers of our future.<br>We have a responsibility to show them what we aspire to,<br>and demonstrate the passions that motivate us."
quote[6]= "Sustainability is not simply about conservation, energy and technology<br>but also about strengthening human relationships and building local resilience."
quote[7]= "Buildings which are derived from their surroundings and are sensitive to the environment<br>last longer, return greater value and are enjoyed by the people who inhabit them."
quote[8]=  "building consumes energy,<br>We have an obligation to consider the ongoing environmental foot print<br>and lifecycle we are establishing."
quote[9]=  "Valuable buildings that enhance the places you live, work and play."
quote[10]= "Personalized service, energy, enthusiasm and a fresh approach." 
quote[11]= "unique and articulate design solutions through collaboration."
quote[12]= "Developing thoughtful cutting edge ideas<br>reflected in buildings that are meaningful and legible on many levels." 
quote[13]= "Using materials in innovative ways and rethinking existing methodologies to create new design solutions."
quote[14]= "Architecture that is unique, timeless,<br>sometimes alternative,<br> but always personal and founded in a meaningful relationship with the land."
quote[15]= "Good design inherently considers the environment,<br> in the same way good design inherently considers form, functon and ergonomics."
quote[16]= "Build well, Live well. Choose locally made, long lasting and durable.<br>Surround yourself with the things you love."
quote[17]= "Good architecture is quiet, it has no need for noisy overtures." 


//pause quote cycle
var qpause=3
var qcounter=0
var q_content=""
var qq_content=""
qpause=qpause*1000

ran_quote()

// select random quote from the array
function ran_quote(){
	var qpick=0
	qpick=Math.floor(Math.random()*quote.length)
	var picked_quote = quote[qpick];
	var y_rep = "<span class='yellowquotes'>l</span>";   //remove colour highlights for simplicity at the moment?
	var y_quote = picked_quote.replace(/l/g, y_rep);	//remove colour highlights for simplicity at the moment?
    q_content = "<span class='quotes'>"
	q_content+=y_quote
	q_content+="</span>"
	writecontent()
}
	
function writecontent(){
	qq_content="<div class='quotes' align ='center' id ='indexquote' style=opacity:0;filter:alpha(opacity=0)>"
	qq_content+=q_content
	qq_content+="</div>"
	document.getElementById("quotewindow").innerHTML=qq_content
}


 
