function changeDirectionColorOn(text)
{
	text.style.color = "#fce861";
	text.style.fontSize = "13px";
	text.style.paddingLeft = "15px";
}

function changeDirectionColorOff(text)
{
	text.style.color = "#113210";
	text.style.fontSize = "12px";
	text.style.paddingLeft = "20px";
}

function changeDirections(city)
{
	if (city == "Ocean City")
		dirctions.innerHTML = ". Rt 1 North<br/ ><br/ >. Turn Left onto Rt. 54 West at light<br/ ><br/ >. Scotty's is 3.8 miles on the Left";
	else if(city == "Rehoboth")
		dirctions.innerHTML = ". Take Rt. 1 South through Bethany and Fenwick Island to the DE/MD line<br/ ><br/ >. Turn Right onto Rt. 54 West at light<br/ ><br/ >. Scotty's is 3.8 miles on the left ";
	else if (city == "West Rt. 54")
		dirctions.innerHTML = ". Go past Rt. 20 (BP Station on your left)<br/ ><br/ >. Scotty's is 100 yards to the Right";
	else
		dirctions.innerHTML = "&nbsp;";
}