/* 
Christian Huebner Interiors Inc.
Designed and built by: Robert Fornesi
http://www.fornesi.com
*/
if (document.images) 
	{

		img07on=new Image();
		img07on.src="/graphics/thumbOther1On.jpg";
		img07off=new Image();
		img07off.src="/graphics/thumbOther1.jpg";
		
		img08on=new Image();
		img08on.src="/graphics/thumbOther2On.jpg";
		img08off=new Image();
		img08off.src="/graphics/thumbOther2.jpg";
		

	}
	
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src=eval (imgName + "on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src=eval (imgName +"off.src");
	}	

}