/*var chipSet = "<img src="../buildSite/scripts/images/chip_Clips.gif" class="chip_Clips" />";

var catchThisContent = "Hello";
var newtitle = "Loaded Establishing his stand-up career in the Pacific Northwest, Boxcar worked closely with the Seattle Comedy Underground. </p><p>There, along with numerous feature appearances, Boxcar produced and staged a weekly show called High Contrast Comedy. Incorporating video, live music, sketch comedy, improvisational comedy, stand-up and social and political commentary, High Contrast Comedy";
*/
function setTextInit() {
   alert("L");
   var head1 = document.getElementById("catchThisFront");

   head1.innerHTML=chipSet+catchThisContent;
}

function setText() {
   alert("setText");
   var head1 = document.getElementById("catchThisFront");

   head1.innerHTML=chipSet+catchThisContent;
}

function doScroll(obj, whichChip)	{
	/*document.getElementById(chipBox).style.height=700px;
	chipBox.height = 400 px;*/
	
	whichChip.style.height= "400 px";
	alert(whichChip);
}

function resetHCCtabs()	{
	//reset DIV className for default appearance
	document.getElementById("missioNTab").className = "hccTabOff";
	document.getElementById("historyTab").className = "hccTabOff";
	document.getElementById("alumTab").className = "hccTabOff";
	document.getElementById("requestSet").className = "hccTabOff";
	
	//hide all DIVS
	document.getElementById("hccMission").style.display = "none";
	document.getElementById("hccHistory").style.display = "none";
	document.getElementById("hccAlum").style.display = "none";
	document.getElementById("hccRequest").style.display = "none";
	
	//reset default font color
	document.getElementById("missioNTab").style.color = "#898989";
	document.getElementById("historyTab").style.color = "#898989";
	document.getElementById("alumTab").style.color = "#898989";
	document.getElementById("requestSet").style.color = "#898989";
}

function setHCCTab(obj)	{
	if (obj.className != "hccTabOn") {
		//resetTabs
		resetHCCtabs();
		
		//displays correct content
		switch (obj.id){	
      		case "missioNTab":
				//document.getElementById("missioNTab").className = "hccTabOn";
				document.getElementById("hccMission").style.display = "inline";
				document.getElementById("missioNTab").style.color = "#000000";
				document.getElementById("missioNTab").style.textDecoration = "none";
        		break;
			case "historyTab":
				//document.getElementById("historyTab").className = "hccTabOn";
				document.getElementById("hccHistory").style.display = "inline";
				document.getElementById("historyTab").style.color = "#000000";
				document.getElementById("historyTab").style.textDecoration = "none";
        		break;
			case "alumTab":
				//document.getElementById("alumTab").className = "hccTabOn";
				document.getElementById("hccAlum").style.display = "inline";
				document.getElementById("alumTab").style.color = "#000000";
				document.getElementById("alumTab").style.textDecoration = "none";
        		break;
			case "requestSet":
				//document.getElementById("requestSet").className = "hccTabOn";
				document.getElementById("hccRequest").style.display = "inline";
				document.getElementById("requestSet").style.color = "#000000";
				document.getElementById("requestSet").style.textDecoration = "none";
        		break;
		}
		
		//set active tab
		document.getElementById(obj.id).className = "hccTabOn";
	}
	
}

function tabHoverOn(obj)	{
	if (obj.className != "hccTabOn") {
		obj.style.textDecoration = "underline";
		obj.style.color = "#FFFFFF";
	}
}

function tabHoverOff(obj)	{
	obj.style.textDecoration = "none";
	if (obj.className == "hccTabOn")		{
		obj.style.color = "#000000";
	}else{
		obj.style.color = "#898989";
	}
	
	
	/*
	if (obj.className != "hccTabOn") {
		obj.style.textDecoration = "none";
		obj.style.color = "#000000";
	}else{
		obj.style.textDecoration = "none";
		obj.style.color = "#898989";
	}
	
	
	if (obj.className = "hccTabOn") {
		obj.style.color = "#FFFFFF";
	}else{
		obj.style.color = "#898989";
	}
	*/
}


