// JavaScript Document

function doGood(good) {
	var goodlink = "index.html"; 
	// funds are zero indexed
	switch(good) {
		case 'MT': goodlink = "/giftguide/millertheatre.aspx?fund=4"; break; // Make beautiful music
		case 'JRN': goodlink = "/giftguide/journalism.aspx?fund=2"; break; // Newsroom intregrity
		case 'SW': goodlink = "/giftguide/socialwork.aspx?fund=13"; break; // Prevent social worker burnout
		case 'BUS': goodlink = "/giftguide/business.aspx?fund=10"; break; // Rest your case at Columbia
		case 'NR': goodlink = "/giftguide/nursing.aspx?fund=3"; break; // Care for those in need
		case 'LAW': goodlink = "/giftguide/law.aspx?fund=3"; break; // Think through the law
		case 'CDM': goodlink = "/giftguide/dental.aspx?fund=17"; break; // Keep seniors smiling
		case 'ATH': goodlink = "/giftguide/athletics.aspx?fund=3"; break; // Teach lions to roar
		case 'PS': goodlink = "/giftguide/med.aspx?fund=3"; break; // Enliven medical education
		case 'CC': goodlink = "/giftguide/columbia_college.aspx?fund=7"; break; // Strengthen the core
		case 'SEAS': goodlink = "/giftguide/seas.aspx?fund=8"; break; // Engineer a connected world
		case 'GSAS': goodlink = "/giftguide/gsas.aspx?fund=6"; break; // Wrap up a dissertation
		case 'GS': goodlink = "/giftguide/gs.aspx?fund=2&t=2"; break; // Bring students back to school
		case 'PH': goodlink = "/giftguide/mailman.aspx?fund=17"; break; // Endow a center for public health
		case 'SIPA': goodlink = "/giftguide/sipa.aspx?fund=5"; break; // Encourage global leadership
		case 'EI': goodlink = "/giftguide/earth_institute.aspx"; break; // Build the earth science frontier
	}
	window.location.href = goodlink;
}
	
function goSchool(schoollink) {
	window.location.href = schoollink;
}

