function get_random_billboard() {

	//unless you are making new billboard combinations,
	// only the numbers billboard_min and billboard_max
	// need to be changed
	//
	//billboard_min should be the lowest number (starting from zero)
	// you want to be included
	//billboard_max should be the highest number (starting from zero)
	// you want to be included
	//they can have the same value

	var billboard_min = 0;
	var billboard_max = 5;

	var billboards = [
/* normal random list (0-5) */
		"l-clayton",
		"vision",
		"vision2",
		"legacy",
		"truth",
		"truth-bible",
/*		"sesqui-group",*/
/* resources list (6) */
		"resource-section",
/* chapel live (7) */
		"chapel-live",
/* President's forum (8) */
		"forum"
		];
	var billboard_slugs = [
/* normal random list (0-6) */
		"Legacy. Ours Runs Deep.",
		"Vision. See Yours Come Alive.",
		"Vision. See Yours Come Alive.",
		"Legacy. Ours Runs Deep.",
		"Truth. A Foundation for Learning.",
		"Truth. It Matters Here.",
/*		"Featured Resources from Southern's Sesquicentennial",*/
/* resources list (7) */
		"Resources",
/* chapel live (8) */
		"Chapel Live",
/* President's forum (9) */
		"Presidents Forum"
		];
	var billboard_quotes = [
/* normal random list (0-6) */
		'',
		'',
		'',
		'',
		'',
		'',
/*		'	<!-- Sesqui Service -->'+
		'	<a style="position:absolute; left:323px; top:508px;" class="apply-button" href="http://www.sbts.edu/resources/sesquicentennial-celebration/sesquicentennial-service/">Watch Video</a>'+
		'	<!-- Future of SBC -->'+
		'	<a style="position:absolute; left:564px; top:485px;" class="apply-button" href="http://www.sbts.edu/resources/lectures/presidents-forum/video-the-presidents-forum-on-the-future-of-the-southern-baptist-convention/">Watch Video</a>'+
		'	<!-- Convocation -->'+
		'	<a style="position:absolute; left:803px; top:488px;" class="apply-button" href="http://www.sbts.edu/resources/chapel/chapel-fall-2009/opening-chapel-fall-2009/">Watch Video</a>',*/
/* resources list (6) */
		'<a style="width:180px; padding:10px; font-size:18px; text-align:center; position:absolute; left:665px; top:490px;" id="homepage-video-view" class="apply-button" href="http://www.sbts.edu/new-gutenberg/"><span>View It Live!</span></a>',
/* chapel live (7) */
		'<a style="width:100px; text-align:center; position:absolute; left:419px; top:360px;" id="homepage-video-view" class="apply-button" href="http://www.sbts.edu/chapel-live/"><span>View It Live!</span></a>',
/* President's forum (8) */
		'<h1 style="position:absolute; left:290px; top:100px; width:400px;font-size:24px; line-height:26px;text-align:center;">Watch the The President\'s Forum <br/>on the Future of the <br/>Southern Baptist Convention</h1><img style="position:absolute; left:750px; top:100px;" src="/_img/_content/p-mohler.jpg" alt="Dr. R. Albert Mohler, Jr." /><h2 style="font-size:18px; color:#555; font-style:italic; line-height:21px; position:absolute; left:287px; top:265px; width:400px; text-align:center;">Watch it live at 10:00am<br/><span style="font-size:12px; text-transform:uppercase; letter-spacing:1px; font-style:normal; color:#777;">August 19, 2009</span></h2><a style="width:100px; text-align:center; position:absolute; left:426px; top:200px;" id="homepage-video-view" class="apply-button" href="http://www.sbts.edu/presidents-forum/"><span>View It Live!</span></a>'
		];

	var randomnumber=3;
	if (billboard_min == billboard_max)
		randomnumber = billboard_min;
	else if ((billboard_min >= 0) && (billboard_max < billboards.length) && (billboard_max > billboard_min))
		randomnumber=Math.floor(Math.random()*(billboard_max-billboard_min+1))+billboard_min;
	return [billboards[randomnumber],billboard_slugs[randomnumber],billboard_quotes[randomnumber]];

}
