// JavaScript Document

function swap_bg(id_no){
	
	oDiv = document.getElementById("content");
	oDiv.className = "content_image" + id_no
}

function hiliteme(o){
	o.className = "hilite";
	o.width="90";
}

function unhiliteme(o){
	o.className = "";
	o.width="75";
}

function preload_img(){

	var imgFiles = new Array(
	'/bg/DSC_0028.JPG',
	'/bg/DSC_0067.JPG',
	'/bg/DSC_0071.JPG',
	'/bg/DSC_0200.JPG',
	'/bg/DSC_0270.JPG',
	'/bg/FH000012.JPG',
	'/bg/FH000015.JPG')

	var imgArray = new Array();

	for (i in imgFiles){
		var myImg = new Image();
		myImg.src= i;
		imgArray.push(myImg);
	}
	
}
