// JavaScript Document

function showStripe(stripeId) 
{
	document.getElementById(stripeId).style.backgroundColor = "#F5F092";
}

function hideStripe(stripeId)
{
	document.getElementById(stripeId).style.backgroundColor = "#665642";
}