/* author: Felicia Betancourt
date: 05.09.2009
file: add_background.js
This should put a background image on any page with marker div
*/

window.onload = addBkg;

function addBkg() {
	if(document.getElementById("festival_guide")) { // if marker div exists...
		//document.getElementById("maincolumn").style.background="url(images/iwps9009/berkeley-audience-grad.gif) top left no-repeat";
		document.getElementById("maincolumn").className="fg_background";
	}
	
	if(document.getElementById("the_talent")) { // if marker div exists...
		document.getElementById("maincolumn").className="talent_background";
	}
	
	if(document.getElementById("about_iwps")) { // if marker div exists...
		document.getElementById("maincolumn").className="iwps_background";
	}
}