// JavaScript Document
var holding = new Array();
holding[0] = "summary1";
holding[1] = "summary2";
holding[2] = "summary3";
holding[3] = "summary4";
holding[4] = "summary5";
holding[5] = "summary6";
holding[6] = "summary7";
holding[7] = "summary8";
holding[8] = "summary9";
holding[9] = "summary10";
holding[10] = "summary11";
holding[11] = "summary12";
holding[12] = "summary13";
holding[13] = "summary14";
function changeSummary(divId){
	if(!divId){divId = 'summary11';}
	var count = holding.length - 1;
	for(x=0;x<=count;x++){
		document.getElementById(holding[x]).style.display = "none";
		var str = holding[x];
		var number = str.replace(/summary/,"");
		document.getElementById('link'+number+'').style.color = "#545454";
	}
	var element = document.getElementById(''+divId+'');
	element.style.display = "block";
	var str = divId;
	var number = str.replace(/summary/,"");
	document.getElementById('link'+number+'').style.color = "#3399cc";
}
