//Descriptions for Tidal Wave interior gallery.
var interior = new Array();
interior[0] = "High level air conditioning vents.";
interior[1] = "Large bottle holder recessed into seating with mirrored, stainless steel backing.";
interior[2] = "DVD TV plays film and music music DVDs and outputs the sound through the main stereo for a great effect.";
interior[3] = "Fibre optic lighting, with 6 colour transition effect, installed around bar and under seating.";
interior[4] = "Laser light show that reacts to the music.";
interior[5] = "Custom coloured, fully functioning, privacy divider with mirrored surround and 6-colour fibre optic ends.";
interior[6] = "Custom coloured leather seating.";
interior[7] = "Strobe lighting effect.<br>(Can be turned off on request)";

function intover(part)
{
document.getElementById("info").innerHTML = interior[part];
}

function intout()
{
document.getElementById("info").innerHTML = "";
}

