// File: scripts/load_images_home.js
// Author: Michael Xu
// Notes: This file is used for loading function of image-loading
// File created: April 12, 2000
// Last Modified: November 1, 2007

function imageitem(pic)
{
	if (document.images)
	{
		this.off = new Image();
		this.off.src = "images/" + pic + ".jpg";
		this.on = new Image();
		this.on.src = "images/" + pic + "_on.jpg";
//		this.note = new Image();
//		this.note.src = "http://www.versune.com/images/" + pic + "_note.gif";
	}
}


