// JavaScript Document

function changeImage(obj){
	objDiv = document.getElementById(obj);
	hfield = document.getElementById("dnn_txtHidden");
	if (objDiv && hfield)
	{
		objDiv.style.background = "none";
		objDiv.style.background = "url(" + hfield.value + ") no-repeat"; 
	}

	if (document.getElementById("dnn_txtScroller")) {
	    startw();
	}

}


