function highlightATW(){
	document.getElementById("atw").style.opacity="1";
	document.getElementById("atw").filters.alpha.opacity="100";
}

function highlightBaristas(){
	document.getElementById("baristas").style.opacity="1";
	document.getElementById("baristas").filters.alpha.opacity="100";
}

function highlightCommunity(){
	document.getElementById("community").style.opacity="1";
	document.getElementById("community").filters.alpha.opacity="100";
}

function highlightLatteArt(){
	document.getElementById("latteart").style.opacity="1";
	document.getElementById("latteart").filters.alpha.opacity="100";
}

function highlightShows(){
	document.getElementById("shows").style.opacity="1";
	document.getElementById("shows").filters.alpha.opacity="100";
}

function highlightVideos(){
	document.getElementById("videos").style.opacity="1";
	document.getElementById("videos").filters.alpha.opacity="100";
}

function hideATW(){
	document.getElementById("atw").style.opacity="0.8";
	document.getElementById("atw").filters.alpha.opacity="80";
}
function hideBaristas(){
	document.getElementById("baristas").style.opacity="0.8";
	document.getElementById("baristas").filters.alpha.opacity="80";
}
function hideCommunity(){
	document.getElementById("community").style.opacity="0.8";
	document.getElementById("community").filters.alpha.opacity="80";
}
function hideLatteArt(){
	document.getElementById("latteart").style.opacity="0.8";
	document.getElementById("latteart").filters.alpha.opacity="80";
}
function hideShows(){
	document.getElementById("shows").style.opacity="0.8";
	document.getElementById("shows").filters.alpha.opacity="80";
}
function hideVideos(){
	document.getElementById("videos").style.opacity="0.8";
	document.getElementById("videos").filters.alpha.opacity="80";
}
