//SEARCH BACKGROUND
function srchImg() {
	var rand = Math.floor(Math.random()*8) + 1;
	document.getElementById("search").style.backgroundImage = 'url("http://www.dom.edu/ican/_resources/images/random/right/home/ican_home_' + rand + '.gif")';
}

//LOAD FUNCTIONS
function init() {
	MM_preloadImages(
		'http://www.dom.edu/ican/_resources/images/dom.gif',
		'http://www.dom.edu/ican/_resources/images/dom_ro.gif',
		'http://www.dom.edu/ican/_resources/images/search_btn_ro.gif',
		'http://www.dom.edu/ican/_resources/images/gradient/advisor.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/applynow.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/blogs.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/counselor.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/nav.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/photos.jpg',
		'http://www.dom.edu/ican/_resources/images/gradient/about.jpg'
		);
}

//RANDOM VIDEO
function randVid() {
	var randNumber = Math.floor(Math.random()*7) + 0;
	var newsroomVideos = new Array(7)
	newsroomVideos[0]= '<a rel="shadowbox;width=480;height=320" class="option" title="Preview of 2009 Mr. Dominican Competition" href="http://www.dom.edu/_resources/video/mrdominican09.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanmrdominicanpreview09.jpg" /></a>';
	newsroomVideos[1]= '<a rel="shadowbox;width=480;height=320" class="option" title="Tim Lazicki conducts research at Alexian Brothers Medical Center" href="http://www.dom.edu/_resources/video/alexianresearch.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanTimLazickiresearch.jpg" /></a>';
	newsroomVideos[2]= '<a rel="shadowbox;width=480;height=320" class="option" title="Undergraduate Summer Scholars Program" href="http://www.dom.edu/_resources/video/summerscholars.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanSummerScholarsProgram.jpg" /></a>';
	newsroomVideos[3]= '<a rel="shadowbox;width=480;height=320" class="option" title="Delta Blues Experiential Learning Trip" href="http://www.dom.edu/_resources/video/deltablues.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanDeltaBlues.jpg" /></a>';
	newsroomVideos[4]= '<a rel="shadowbox;width=480;height=320" class="option" title="Highlights from Candle and Rose 2009" href="http://www.dom.edu/_resources/video/candleandrose.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanCandleandRose2009.jpg" /></a>';
	newsroomVideos[5]= '<a rel="shadowbox;width=480;height=320" class="option" title="Senior Thesis Art Exhibitions" href="http://www.dom.edu/_resources/video/seniorthesis.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanSeniorThesis.jpg" /></a>';
	newsroomVideos[6]= '<a rel="shadowbox;width=480;height=320" class="option" title="Preview of 2009 Fashion Show: Destination" href="http://www.dom.edu/_resources/video/fashionshowpreview.mov"> <img width="238" height="104" class="left" alt="Latest Video" src="http://www.dom.edu/ican/_resources/images/ICanFashionShow09.jpg" /></a>';
	document.write(newsroomVideos[randNumber]);
}