/* Created by Lee Davis 12/12/06 
Javascript file for modifying framework elements via DOM
*/

function getObj(name) {
	obj = document.getElementById(name);
	return obj;
}

/* Replace element sources */

function applyDOMAlterations() {
	if (getObj("login_submitbtn") != null) getObj("login_submitbtn").src = "/images/app/btn_submit.gif";
}

window.onload = applyDOMAlterations;
