var texts=new Array();
var links=new Array();
texts['illo_clarendon']="Think cosy, grand, open log fireplaces and theatre restaurant. The reflects the Clarendon perfectly. <br />When we called Tim, The Clarendon Manager two months after his site launch to ask how the site was working for his business, he told us:";
links['illo_clarendon']='www.clarendon.com.au';

// INSTRUCTIONS
// the key linking phraze is the name you have used in the image. In this case: "illo_clarendon"
// take a look in the html codes for the thumbnail image and the links 'view closeup' & 'view site'.

function changeBig(to){
	document.getElementById('bigholder').src='images/'+to+'_big.jpg';
	document.getElementById('textholder').innerHTML='<p>'+texts[to]+'</p>';
}
function openLink(which){
	window.location=links[which];
}