<!--
	var showCaseList = new Array();
		// Each Numeric Value Is Matched With Each Folders in "ics/img/home/showcase"
		// The URL path given is the URL per the folder ID's showcase
		showCaseList[0] = "../ics/projects/?id=131";
		showCaseList[1] = "../ics/projects/?id=229";
		showCaseList[2] = "../ics/projects/?id=228";
	
		/*
		When more showcases are added simply add another line
		indicating - showCaseList[NEXT_FOLDER_ID] = "URL_TO_DISPLAY"
		
		showCaseList[3] = "http://www.megamates.com";
		showCaseList[4] = "http://www.amazon.com";
		showCaseList[5] = "http://www.msn.com";
		showCaseList[6] = "http://www.lumenvox.com";
		showCaseList[7] = "http://www.nhl.com";
		showCaseList[8] = "http://www.espn.com";
		showCaseList[9] = "http://www.flashforwardconference.com";
		*/

	var showcaseID = Math.floor(Math.random()* showCaseList.length);
	var showCaseURL = showCaseList[showcaseID];
		
//-->