// JavaScript Document

function ChangePic(elementID, imagePath)
{
	eleThis = document.getElementById(elementID);
	eleThis.style.backgroundImage = "url(" + imagePath + ")";	
}

function Navigate(url)
{
	window.location.href = url;	
}

function PreloadImage(strImageURI)
{
	document.write("<div style=\"position:absolute;visibility:hidden;background-image:url(" + strImageURI + ")\"></div>");
}
	

