if (document.images) {
img21 = new Image();
img21.src = "http://www.thepurplecafe.com/images/reserve-a-table.png";
img17 = new Image();
img17.src = "http://www.thepurplecafe.com/images/reserve-bellevue-a.gif";
img18 = new Image();
img18.src = "http://www.thepurplecafe.com/images/reserve-kirkland-a.gif";
img19 = new Image();
img19.src = "http://www.thepurplecafe.com/images/reserve-seattle-a.gif";
img20 = new Image();
img20.src = "http://www.thepurplecafe.com/images/reserve-woodinville-a.gif";
img11 = new Image();
img11.src = "http://www.thepurplecafe.com/images/purple-cafe-and-wine-bar.gif";
img14 = new Image();
img14.src = "http://www.thepurplecafe.com/images/twitter.jpg";
img15 = new Image();
img15.src = "http://www.thepurplecafe.com/images/facebook.jpg";
img16 = new Image();
img16.src = "http://www.thepurplecafe.com/images/signup.jpg";
img1 = new Image();
img1.src = "http://www.thepurplecafe.com/images/link1a.gif";
img2 = new Image();
img2.src = "http://www.thepurplecafe.com/images/link2a.gif";
img3 = new Image();
img3.src = "http://www.thepurplecafe.com/images/link3a.gif";
img4 = new Image();
img4.src = "http://www.thepurplecafe.com/images/link4a.gif";
img5 = new Image();
img5.src = "http://www.thepurplecafe.com/images/link5a.gif";
img6 = new Image();
img6.src = "http://www.thepurplecafe.com/images/link6a.gif";
img7 = new Image();
img7.src = "http://www.thepurplecafe.com/images/link7a.gif";
img8 = new Image();
img8.src = "http://www.thepurplecafe.com/images/link8a.gif";
img9 = new Image();
img9.src = "http://www.thepurplecafe.com/images/link9a.gif";
img10 = new Image();
img10.src = "http://www.thepurplecafe.com/images/slideshow-1.jpg";
img12 = new Image();
img12.src = "http://www.thepurplecafe.com/images/dark-hr.gif";
img13 = new Image();
img13.src = "http://www.thepurplecafe.com/images/background-new.jpg";
}

function linkOn(num)
{
document.images['link' + (num)].src = "http://www.thepurplecafe.com/images/link"+(num)+"a.gif"
}

function linkOff(num)
{
document.images['link' + (num)].src = "http://www.thepurplecafe.com/images/link"+(num)+".gif"
}

var piccount=Math.floor(Math.random()*11);

var ssID = '';

function slideshow() {
ssID = setTimeout("newPic()",6000);
}

function newPic() {
piccount=((piccount)+1);
if ((piccount)>11)
{
piccount=1;
}
document.images.slideshowpic.src="images/slideshow-"+(piccount)+".jpg";
slideshow();
}

function nextPic() {
clearTimeout(ssID);
piccount=((piccount)+1);

if ((piccount)>11)
{
piccount=1;
}
document.images.slideshowpic.src="images/slideshow-"+(piccount)+".jpg";
}

function prevPic() {
clearTimeout(ssID);
piccount=((piccount)-1);

if ((piccount)<1)
{
piccount=11;
}
document.images.slideshowpic.src="images/slideshow-"+(piccount)+".jpg";
}

var tID = '';

function showTables(){
document.getElementById("tablereservations").style.display = "block";
document.images.reservetable.src='http://www.thepurplecafe.com/images/reserve-a-table-a.png';
}

function hideTables(){
tID = setTimeout("origVals()",700);
}

function origVals(){
document.getElementById("tablereservations").style.display = "none";
document.images.reservetable.src='http://www.thepurplecafe.com/images/reserve-a-table.png';
}

function resetTimer() {
clearTimeout(tID);
}

