/*---------------------------------------------------------------*\
	EDIT HISTORY ::::::::::::: 
									:: 05.19.2009 Initial Creation EOM (Emile Melbourne)
	FILENAME ::::::::::::::::: util.js
	DEPENDANCIES :::::::::::::
	DESCRIPTION :::::::::::::: 
\*----------------------------------------------------------------*/


function setSideBarImage(objectID, xPos, yPos) {
	var object = document.getElementById(objectID);
	object.style.backgroundPosition = xPos + "px" + " " + yPos + "px";
}

