/////////////////////////////////////////
//variables
/////////////////////////////////////////
function mouseOver(id, state)
{
if (state=='over')
{
//document.getElementById(id).style.background ="#993399";
//document.getElementById(id).style.color ="#FFFFFF";
}

if (state=='out')
{
//document.getElementById(id).style.background ="#000000";
//document.getElementById(id).style.color ="#993399";
}
}

function mousePress(id, state)
{
switch(id)
{
case "Aboutus":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=AboutUs.htm");
break;
case "LostwithielClasses":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=LostwithielClasses.htm");
break;
case "NewquayClasses":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=NewquayClasses.htm");
break;
case "WadebridgeClasses":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=WadebridgeClasses.htm");
break;
case "WhitemoorClasses":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=WhitemoorClasses.htm");
break;
case "UpRockCrew":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=UpRockCrew.htm");
break;
case "TheatreWorkshop":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=TheatreWorkshop.htm");
break;
case "AdultClasses":
//if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ComingSoon.htm");
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=AdultClasses.htm");
break;
case "DanceClothing":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=DanceClothing.htm");
break;
case "PrivacyPolicy":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=PrivacyPolicy.htm");
break;
case "PhotoGallery":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=PhotoGallery.htm");
break;
case "ContactUs":
if (state=='click')window.location.replace("cgi-bin/pages.cgi?ID=ContactUs.php");
break;
default: break;			
}
}
/////////////////////////////////////////
