function load_bg() {
	var base_path = 'images/home/current/';
	var images = new Array();
	var text = new Array();
	var links = new Array();
	
	images[0] = '../old/general/bg-1.jpg';
	//images[0] = 'abduction.jpg';
	text[0] = 'Read the latest issue of <em>Tableau</em>, the Humanities Division magazine... ';
	links[0] = 'http://tableau.uchicago.edu/'
	
	/*images[1] = '../old/general/bg-4.jpg';
	text[1] = 'Read the latest issue of <em>Tableau</em>, the Humanities Division magazine... ';
	links[1] = 'http://tableau.uchicago.edu/'*/
	
	
	
	/*images[0] = 'donigerhomepage.jpg';
	text[0] = 'Hindu scholar presents lecture on women, jewelry and mythology...';
	links[0] = 'http://lucian.uchicago.edu/blogs/news/2010/01/26/wendy-doniger-explores-hinduism-jewelry-and-mythology/';*/
	
	/*images[0] = 'jade-simmons.jpg';
	text[0] = 'Jade Simmons brings new take on Rachmaninoff to University Orchestra...';
	links[0] = 'http://lucian.uchicago.edu/blogs/news/2009/11/23/pianist-jade-simmons-joins-the-university-of-chicago-symphony-orchestra-to-play-rachmaninoff/';
	
	images[1] = 'dawn-upshaw.jpg';
	text[1] = 'Rave reviews for on-campus performance by award winning soprano...';
	links[1] = 'http://lucian.uchicago.edu/blogs/news/2009/11/16/chicago-hosts-grammy-award-winning-soprano-dawn-upshaw/';*/
	
	//images[2] = 'faculty_scholarship2.jpg';
	//text[2] = 'Humanities Day 2009 to showcase faculty scholarship...';
	//links[2] = 'http://humanitiesday.uchicago.edu';
	
	//images[0] = 'alcot.jpg';
	//text[0] = 'Bross lecturer Susan Alcock to explore surveillance and the ancient world...';
	//links[0] = 'http://lucian.uchicago.edu/blogs/news/2009/03/21/bross-lectures-will-feature-archaeologist-susan-alcock-discussing-some-archaeologies-of-surveillance/';
	
	/*
	images[0] = 'danceofdeath.jpg';
	text[0] = 'Rave reviews for Smart Museum Exhibition curated by Art History graduate students...';
	links[0] = 'http://lucian.uchicago.edu/blogs/news/2009/04/07/your-pal-cliff-at-the-smart-museum/';
	
	images[0] = 'spring_lectures.jpg';
	text[0] = 'Spring lectures bring renowned scholars to campus...';
	links[0] = 'http://lucian.uchicago.edu/blogs/news/2009/04/13/2009-spring-lecture-series-features-internationally-renowned-scholars-and-artists/';*/
	
	/*images[0] = 'gomezpena.jpg';
	text[0] = 'Artspeaks to feature performance artist and writer Guillermo Gómez-Peña...';
	links[0] = 'http://arts.uchicago.edu/artspeaks.html';*/
	
	/*images[1] = 'intlifemind.jpg';
	text[1] = 'Regenstein Exhibit on academic integration includes Division alumna Georgiana Simpson, one of the first African American women to receive a Ph.D. ...';
	links[1] = 'http://www.uchicago.edu/features/20090119_mlk.shtml';
	
	images[2] = 'nehgrant.jpg';
	text[2] = 'Near Eastern Languages and Civilizations professors Gibson, Moeller, and Stolper each receive grants from the National Endowment for the Humanities...';
	links[2] = 'http://chronicle.uchicago.edu/081211/accolades.shtml';*/
	
	var splashid = $random(0, images.length - 1);
		
	window.document.body.style.backgroundPosition = 'top center';
	window.document.body.style.backgroundRepeat = 'no-repeat';
	window.document.body.style.backgroundImage = 'url(' + base_path + images[splashid] + ')';
	
	document.getElementById('hum_home_text').innerHTML = text[splashid];
	document.getElementById('hum_home_more').innerHTML = '<a href="'+links[splashid]+'">more</a>';
}

