var preloadFlag = false;
function preLoad() 
	{
	if (document.images) 
		{ 
		img1on  = new Image();img1on.src =  "images/home/btn_go_on.gif";
		img1off = new Image();img1off.src = "images/home/btn_go_off.gif";
		img2on  = new Image();img2on.src =  "images/home/btn_investment_on.jpg";
		img2off = new Image();img2off.src = "images/home/btn_investment_off.jpg";
		img3on  = new Image();img3on.src =  "images/home/btn_family_on.jpg";
		img3off = new Image();img3off.src = "images/home/btn_family_off.jpg";
		img4on  = new Image();img4on.src =  "images/home/btn_specialty_on.jpg";
		img4off = new Image();img4off.src = "images/home/btn_specialty_off.jpg";
		img5on  = new Image();img5on.src =  "images/home/btn_about_on.png";
		img5off = new Image();img5off.src = "images/home/btn_about_off.png";
		img6on  = new Image();img6on.src =  "images/home/btn_contact_on.png";
		img6off = new Image();img6off.src = "images/home/btn_contact_off.png";
		img7on  = new Image();img7on.src =  "images/home/btn_learning_on.png";
		img7off = new Image();img7off.src = "images/home/btn_learning_off.png";
		img8on  = new Image();img8on.src =  "images/home/btn_login_on.gif";
		img8off = new Image();img8off.src = "images/home/btn_login_off.gif";
		img9on  = new Image();img9on.src =  "images/home/btn_people_on.png";
		img9off = new Image();img9off.src = "images/home/btn_people_off.png";
		img10on  = new Image();img10on.src =  "images/home/btn_community_on.png";
		img10off = new Image();img10off.src = "images/home/btn_community_off.png";
		preloadFlag = true;
		}
	}

function change()
	{
	if (document.images && (preloadFlag == true))
		{
		for (var i=0; i<change.arguments.length; i+=2)
			{
			document[change.arguments[i]].src = eval(change.arguments[i+1] + ".src");
			}
		}
	}

