var pics = new Array();
var alts = new Array();
var caps = new Array();
var link = new Array();

pics.push("arts");
alts.push("The Arts at ISU");
caps.push("<p>Idaho State University has many outlets and venues for the arts. Concerts, plays and art shows are going on every week. Learn more about the <strong><a href=\"http://www.isu.edu/arts/\">Arts at ISU</a></strong>.</p>");
link.push("http://www.isu.edu/arts/");

pics.push("beadvised2009");
alts.push("Be Advised: meet with an advisor");
caps.push("<p><strong><a href=\"http://www.isu.edu/advising/\">Be Advised!</a></strong> The Academic Advising Center is running the \"Be Advised\" campaign from October 26 to November 18. Meet with an advisor!</p>");
link.push("http://www.isu.edu/advising/");

pics.push("hansen");
alts.push("Richard Hansen and El Mirador Basin");
caps.push("<p>The helicopter ride alone is worth the trip. It’s like flying into a real-life Emerald City. We glide over a vast expanse of green jungle and blue sky, dotted with hills once mistaken for volcanoes, now uncovered as ancient Mayan pyramids covered in dense tropical forests.<br /><strong><a href=\"http://www.isu.edu/magazine/fall09/mirador-basin/\">more>></a></strong> </p>");
link.push("http://www.isu.edu/magazine/fall09/mirador-basin/");

pics.push("babe");
alts.push("Remembering the Legend");
caps.push("<p> Italo I.J. <strong><a href=\"http://www.isu.edu/magazine/fall09/the-legend.shtml\">Babe Caccia</a></strong>, the winningest coach in ISU's history in both football and baseball, passed away Aug. 28, in Pocatello of natural causes. Caccia, who was five weeks shy of his 92nd birthday, was one of the most well known and beloved figures in Idaho State history.</p>");
link.push("http://www.isu.edu/magazine/fall09/the-legend.shtml");

pics.push("blazevic");
alts.push("A 6,000 Mile Journey");
caps.push("<p><strong><a href=\"http://www.isu.edu/magazine/fall09/china/\">Jason Blazevic</a></strong> was the only student who was invited to participate in an intensive multinational \"East Asia Security Symposium\" workshop this June in Beijing, China.</p>");
link.push("http://www.isu.edu/magazine/fall09/china/");

pics.push("ferns");
alts.push("Hungry Plants");
caps.push("<p>In a significant scientific paper soon to be published in the well respected journal Botany, <strong><a href=\"http://www.isu.edu/magazine/fall09/plants.shtml\">Idaho State University researchers</a></strong> have documented how ferns consume sugars in early life stages.</p>");
link.push("http://www.isu.edu/magazine/fall09/plants.shtml");

pics.push("mortimer");
alts.push("Heroes on Campus");
caps.push("<p>Live fire in a battle zone is one challenge to a soldier; readjusting to civilian life as a university student is another. <br /><strong><a href=\"http://www.isu.edu/magazine/fall09/stripes-earned.shtml\">more>></a></strong></p>");
link.push("http://www.isu.edu/magazine/fall09/stripes-earned.shtml");

pics.push("pennant");
alts.push("Where's this been?");
caps.push("<p>A black-and-orange Idaho State University <strong><a href=\"http://www.isu.edu/magazine/fall09/pennant/\">pennant</a></strong> sailed around the globe last spring, making appearances and captured in photographs at some of the world's most famous and obscure places.</p>");
link.push("http://www.isu.edu/magazine/fall09/pennant/");

var total = pics.length;
var current;
var setIntervalID;

$(document).ready(function() {
	$.each(pics, function(i, pic) {
		$("<a>").text(i+1).attr({
			href: "#",
			rel: pic
		}).appendTo("#splashnav ul").wrap("<li></li>").click( function() {
			clearInterval(setIntervalID);
			$("<img>").attr({
				src: "/images/homephotos/" + $(this).attr("rel") + ".jpg"
			}).replaceAll("#splash dt a").wrap("<a href=\""+link[i]+"\"></a>");
			$("<dd>").html(caps[i]).attr({
				id: "announcements"
			}).replaceAll("#splash dd#announcements");
			$("#splash dt img").css({opacity: 0.0}).animate({opacity: 1.0}, 1000);
			$("#splash dd#announcements").css({opacity: 0.0}).animate({opacity: 1.0}, 1000);
			return false;
		});
	});
	slideshow();
});

function slideshow() {
	var randnum = Math.random();
	current = Math.round((total - 1) * randnum);
	$("<img>").attr({
		src: "/images/homephotos/" + pics[current] + ".jpg"
	}).replaceAll("#splash dt a").wrap("<a href=\""+link[current]+"\"></a>");
	$("<dd>").html(caps[current]).attr({
		id: "announcements"
	}).replaceAll("#splash dd#announcements");
	$("#splash dt img").css({opacity: 0.0}).animate({opacity: 1.0}, 500);
	$("#splash dd#announcements").css({opacity: 0.0}).animate({opacity: 1.0}, 500);
	
	setIntervalID = setInterval('nextslide()', 15000);
}

function nextslide() {
	current++;
	if(current >= total) {
		current = 0;
	}
	$("<img>").attr({
		src: "/images/homephotos/" + pics[current] + ".jpg"
	}).replaceAll("#splash dt a").wrap("<a href=\""+link[current]+"\"></a>");
	$("<dd>").html(caps[current]).attr({
		id: "announcements"
	}).replaceAll("#splash dd#announcements");
	$("#splash dt img").css({opacity: 0.0}).animate({opacity: 1.0}, 1000);
	$("#splash dd#announcements").css({opacity: 0.0}).animate({opacity: 1.0}, 1000);
}