// JavaScript Document


/*
Textual Tooltip Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/



var caption=new Array()
var bigImage=new Array()

caption[0]='&nbsp;'

//INTERIOR
caption[01]='&nbsp;'

bigImage[0]='&nbsp;'

bigImage[01]='<img src="images/photos/flowers-01.jpg" class="bordered bigImage" name="imageBig">'
bigImage[02]='<img src="images/photos/lobster-boat.jpg" class="bordered bigImage" name="imageBig">'
bigImage[03]='<img src="images/photos/table-04.jpg" class="bordered bigImage" name="imageBig">'
bigImage[04]='<img src="images/photos/table-02.jpg" class="bordered bigImage" name="imageBig">'
bigImage[05]='<img src="images/photos/ice-sculpture-01.jpg" class="bordered bigImage" name="imageBig">'
bigImage[06]='<img src="images/photos/serving-table.jpg" class="bordered bigImage" name="imageBig">'
bigImage[07]='<img src="images/photos/cake-01.jpg" class="bordered bigImage" name="imageBig">'
bigImage[08]='<img src="images/photos/table-05.jpg" class="bordered bigImage" name="imageBig">'
bigImage[09]='<img src="images/photos/table-03.jpg" class="bordered bigImage" name="imageBig">'
bigImage[10]='<img src="images/photos/pool.jpg" class="bordered bigImage" name="imageBig">'
bigImage[11]='<img src="images/photos/rowboat.jpg" class="bordered bigImage" name="imageBig">'
bigImage[12]='<img src="images/photos/oceanside-setting.jpg" class="bordered bigImage" name="imageBig">'



function changeImage(whichImage){
	if (document.all||document.getElementById){
		cross_e2=document.getElementById? document.getElementById("bigImage"):document.all.bigImage
		cross_e2.innerHTML= whichImage
	}
	else if (document.layers){
		document.d3.document.d4.document.write(whichImage)
		document.d3.document.d4.document.close()
	}
}


function changetext(whichcontent){
	if (document.all||document.getElementById){
		cross_el=document.getElementById? document.getElementById("caption"):document.all.caption
		cross_el.innerHTML= whichcontent
	}
	else if (document.layers){
		document.d1.document.d2.document.write(whichcontent)
		document.d1.document.d2.document.close()
	}
}

