
var featuresarray = {"features": [


			{"title": "<br /><br />Mountains of Opportunity", "date": "2009-11-05", "descshort": "Running your own business, how cool is that? Alumni entrepreneurs impact the new economy.", "url": "http://today.appstate.edu/entrepreneurs/", "piclarge": "portal/entrepreneurs/big-01.jpg", "picsmall": "portal/entrepreneurs/small-01.jpg", "pic120x60": "portal/entrepreneurs/120x120-01.jpg", "textcolor": "#fff", "linktext": "Learn more", "linkcolor": "#3aa5cb", "linkicon": "none"},

			{"title": "<br /><br />Community of Learners", "date": "2009-10-08", "descshort": "Young archeologists find artifacts in the New River Valley dating back more than 7,500 years.", "url": "http://today.appstate.edu/archeology/", "piclarge": "portal/archeology/big-02.jpg", "picsmall": "portal/archeology/small-02.jpg", "pic120x60": "portal/archeology/120x120-02.jpg", "textcolor": "#fff", "linktext": "Learn more", "linkcolor": "#fff", "linkicon": "video"},

			{"title": "Mountains of Opportunity", "date": "2009-09-18", "descshort": "As a student, Jim Bridges found <br />his passion in photography. <br /><br />Now he’s working amid the stars.", "url": "http://today.appstate.edu/features/archives/jim-bridges/", "piclarge": "portal/jim-bridges/big.jpg", "picsmall": "portal/jim-bridges/small.jpg", "pic120x60": "portal/jim-bridges/120x120.jpg", "textcolor": "#222", "linktext": "Learn more", "linkcolor": "#2b4faf", "linkicon": "none"},

			{"title": "<br /><br />Creating Connections", "date": "2009-09-07", "descshort": "Students help solve some of today's most relevant science questions through NASA-funded grant program.", "url": "http://today.appstate.edu/space-grant/", "piclarge": "portal/space-grant/big.jpg", "picsmall": "portal/space-grant/small.jpg", "pic120x60": "portal/space-grant/120x120.jpg", "textcolor": "#fff", "linktext": "Learn more", "linkcolor": "#b5bdd4", "linkicon": "none"}

]};

function escapequote(string) {

	return string.replace('"', '\"');

}

function view(feature) {

	var title = featuresarray.features[feature].title;
	var date = featuresarray.features[feature].date;
	var descshort = featuresarray.features[feature].descshort;
	var url = featuresarray.features[feature].url;
	var piclarge = featuresarray.features[feature].piclarge;
	var picsmall = featuresarray.features[feature].picsmall;
	var pic120x60 = featuresarray.features[feature].pic120x60;
	var textcolor = featuresarray.features[feature].textcolor;
	var linktext = featuresarray.features[feature].linktext;
	var linkcolor = featuresarray.features[feature].linkcolor;
	var linkicon = featuresarray.features[feature].linkicon;

	for (var C01 = 0; C01 < featuresarray.features.length; C01++) {

		if (C01 != feature) {

			document.getElementById("img" + C01).style.marginTop = "0";

		} else {

			document.getElementById("img" + C01).style.marginTop = "-60px";

		}

	}

	document.getElementById("portal_right_01").style.background = "#333 url(" + picsmall + ") no-repeat scroll top right";
	document.getElementById("portal_right_01_div_title").style.color = textcolor;
	document.getElementById("portal_right_01_div_title").innerHTML = title;
	document.getElementById("portal_right_01_div_descshort").style.color = textcolor;
	document.getElementById("portal_right_01_div_descshort").innerHTML = descshort;

	if (url.length > 0) {

		document.getElementById("portal_right_01_div_url").style.display = "block";
		document.getElementById("portal_right_01_div_url").style.color = textcolor;
		document.getElementById("portal_right_01_div_url_a").style.color = linkcolor;
		document.getElementById("portal_right_01_div_url_a").href = url;
		document.getElementById("portal_right_01_div_url_a").innerHTML = linktext;

		if (linkicon == "video") {

			document.getElementById("portal_right_01_div_icon").innerHTML = "<a href=\"" + url + "\" onclick=\"javascript: pageTracker._trackPageview('/outgoing/portal');\"><img src=\"portal/videoicon20x17.gif\" width=\"20\" height=\"17\" alt=\"\" /></a>";

		} else {

			document.getElementById("portal_right_01_div_icon").innerHTML = "";

		}

	} else {

		document.getElementById("portal_right_01_div_url").style.display = "none";

	}

	var i = "";

	if (url.length > 0) {

		i += "<a href=\"" + escapequote(url) + "\" onclick=\"javascript: pageTracker._trackPageview('/outgoing/portal');\">";

	}

	i += "<img src=\"" + escapequote(piclarge) + "\" width=\"357\" height=\"246\" border=\"0\" alt=\"\" />";

	if (url.length > 0) {

		i += "</a>";

	}

	document.getElementById("portal_right_02").innerHTML = i;
	return false;

}

