		function getElementByIdCompatible (the_id) {
			if (typeof the_id != 'string') {
				return the_id;
			}

			if (typeof document.getElementById != 'undefined') {
				return document.getElementById(the_id);
			} else if (typeof document.all != 'undefined') {
				return document.all[the_id];
			} else if (typeof document.layers != 'undefined') {
				return document.layers[the_id];
			} else {
				return null;
			}
		}
		

		function swap(){
			if (document.images){
				var img;
				img = getElementByIdCompatible(swap.arguments[0]);
				img.src = eval(swap.arguments[1] + ".src");
			}
		}
		
		function loadImage(){
			var mainDiv = getElementByIdCompatible("mainWrapper");
			mainDiv.style.background   = "#FFFFFF url('/includes/templates/LCGS/images/branch_bottom.gif') no-repeat scroll -20px bottom";		
		}