
var featuresarray = {"features": [


			{"title": "Creating Connections", "featuretitle": "Appalachian Students Experience the World", "date": "2011-03-29", "descshort": "Appalachian's Office of International Education and Development helps hundreds of Appalachian students to study abroad each year.", "url": "http://today.appstate.edu/international-studies", "piclarge": "portal/international-studies/big-01.jpg", "picsmall": "portal/international-studies/small-01.jpg", "pic120x60": "portal/international-studies/120x120-01.jpg", "textcolor": "#ffffff", "linktext": "Learn more", "linkcolor": "#ffdb67", "linkicon": ""},

			{"title": "Creating Connections", "featuretitle": "Will early study abroad inspire future global learning?", "date": "2011-02-28", "descshort": "A freshman experience in Costa Rica before fall classes even started may be a model for how to inspire students' interest in study abroad.", "url": "http://today.appstate.edu/costa-rica", "piclarge": "portal/costa-rica/big-01.jpg", "picsmall": "portal/costa-rica/small-01.jpg", "pic120x60": "portal/costa-rica/120x120-01.jpg", "textcolor": "#ffffff", "linktext": "Learn more", "linkcolor": "#c0ed8a", "linkicon": "none"},

			{"title": "Mountains of Opportunity", "featuretitle": "Plants for biofuels also clean the environment", "date": "2011-02-28", "descshort": "Two biologists research new<br />sources of biofuels that also<br />can clean North Carolina's<br />waterways.", "url": "http://today.appstate.edu/biofuels", "piclarge": "portal/biofuels/big-02.jpg", "picsmall": "portal/biofuels/small-02.jpg", "pic120x60": "portal/biofuels/120x120-02.jpg", "textcolor": "#ffffff", "linktext": "Learn more", "linkcolor": "#c9d255", "linkicon": "none"},

			{"title": "Community of Learners", "featuretitle": "Graduate students gain top research experience with GRAM", "date": "2011-01-27", "descshort": "Graduate students make real-<br />world contributions through<br />Appalachian's special<br />Graduate Research<br />Associate Mentor (GRAM)<br />program.", "url": "http://today.appstate.edu/gram", "piclarge": "portal/gram/big-01.jpg", "picsmall": "portal/gram/small-01.jpg", "pic120x60": "portal/gram/120x120-01.jpg", "textcolor": "#ffffff", "linktext": "Learn more", "linkcolor": "#f3b044", "linkicon": "none"}

]};

function escapequote(string) {

	return string.replace('"', '\"');

}

function view(feature) {

	var title = featuresarray.features[feature].title;
	var featuretitle = featuresarray.features[feature].featuretitle;
	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) && (linktext.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=\"Learn more\" /></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=\"" + escapequote(featuretitle) + "\" />";

	if (url.length > 0) {

		i += "</a>";

	}

	document.getElementById("portal_right_02").innerHTML = i;
	return false;

}


