//<!--

mainPics = new Array("main.jpg", "burglar.jpg","fire.jpg", "alert.jpg", "camera.jpg", "intercom.jpg", "access.jpg", "codetect.jpg", "temp.jpg", "water.jpg", "theatre.jpg", "tv.jpg", "audio.jpg", "speaker.jpg", "remote.jpeg", "furniture.jpg", "homeauto.jpg", "cctv.jpg", "wintercom.jpg", "cvac.jpg", "cable.jpg")

function preLoad(){
	var p;
	pLoad = new Array();
	for(p=0;p<mainPics.length;p++){
		pLoad[p] = new Image;
		pLoad[p].src = "images/"+mainPics[p];
	}
}

function setBGC(x){
	x.style.backgroundColor="#ffffcc";
}

function resetBGC(x){
	x.style.backgroundColor="";
}

function setMainImg(x){
	if(document.getElementById("mainImg")){
		document.getElementById("mainImg").src="images/"+mainPics[x];}
}

//-->
