var SpotlightImages = new Array();
var SpotlightNews = new Array();

SpotlightImages[0] = "<img src='/spotlight/shaking_hands.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='http://career.fsu.edu/connect/index.html' class='style14'>  Make contacts using the Professional Network!</a></span>";
SpotlightNews[0] = "Find FSU alumni and friends willing to provide career information, job hunting tips, and more using the Professional Network in SeminoleLink.";

SpotlightImages[1] = "<img src='/spotlight/facebook.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='http://www.facebook.com/pages/Tallahassee-FL/FSU-Career-Center/84875280687' class='style14'>Find us on Facebook!</a></span>";
SpotlightNews[1] = "Search FSU Career Center to learn more about us and how we can help you. Join the group today and get the most up-to-date information about Career Center events and services.";

SpotlightImages[2] = "<img src='/spotlight/cicp.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='cicp/' class='style14'>Career Internship Certification Program</a></span>";
SpotlightNews[2] = "Apply to receive a Certification of Completion for your current or past internship work experience.";

SpotlightImages[3] = "<img src='/spotlight/dsc.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='eir/' class='style14'>Employer-in-Residence Program</a></span>";
SpotlightNews[3] = "Attention Placement Partners! Take advantage of our new Employer-in- Residence program to increase your connections with students.";

SpotlightImages[4] = "<img src='/spotlight/two_women_meeting.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='news.html#story006' class='style14'>Employers Say FSU Students are Top-Notch</a></span>";
SpotlightNews[4] = "Employers look forward to interviewing FSU students each semester. Find out more about on-campus recruiting and learn how to register here.";

SpotlightImages[5] = "<img src='/spotlight/EOkoli.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='http://career.fsu.edu/news.html' class='style14'>Student Success at the Career Center</a></span>";
SpotlightNews[5] = "Recent grad Elizabeth Okoli found a job using Career Center tools and attending career expos. Read her story <a href='http://career.fsu.edu/news.html'> here.</a>";

SpotlightImages[6] = "<img src='/spotlight/careertv.jpg' width='161' height='52' border='0'/><br><span class='style14'><a href='media/' class='style14'>CareerTV</a></span>";
SpotlightNews[6] = "The Career Center has partnered with CareerTV to bring you short, informative videos that present employer and career related information. Click <a href='media/'>here</a> to view!";


var NumberofNews = SpotlightImages.length-1;
var RandomNumber
var NewsTaken = new Array();


function getUniqueRandomNumber(){
	RandomNumber = Math.floor(Math.random() * NumberofNews);
//	return RandomNumber;
}

function printSpotlight(){
	getUniqueRandomNumber();
	
	for(var id = 1; id <= 3 ; id = id + 1){
		var image = "image" + id;
		var text = "text" + id;

		if(id == 3){
		document.getElementById(image).innerHTML = SpotlightImages[6];
		document.getElementById(text).innerHTML = SpotlightNews[6];	
		}else{
		document.getElementById(image).innerHTML = SpotlightImages[(RandomNumber) % NumberofNews];
		document.getElementById(text).innerHTML = SpotlightNews[(RandomNumber) % NumberofNews];
		}
		
		RandomNumber++;
	}
}
