<!--
SLIDES = new slideshow("SLIDES");

s = new slide();
s.src =  "graphics/intro.jpg";
s.link = "";
s.text = "Welcome to the Frock Exchange";
SLIDES.add_slide(s);

s = new slide();
s.src =  "graphics/shopfront_small.jpg";
s.link = "graphics/shopfront.jpg";
s.text = "Shop Located on Blenhein Road";
SLIDES.add_slide(s);

s = new slide();
s.src =  "graphics/window.gif";
s.link = "graphics/window_big.gif";
s.text = "";
SLIDES.add_slide(s);

s = new slide();
s.src =  "graphics/poster_small.jpg";
s.link = "graphics/poster.jpg";
s.text = "";
SLIDES.add_slide(s);

s = new slide();
s.src =  "graphics/manakin2_small.jpg";
s.link = "graphics/manakin2.jpg";
s.text = "";
SLIDES.add_slide(s);

s = new slide();
s.src =  "graphics/manakin1_small.jpg";
s.link = "graphics/manakin1.jpg";
s.text = "";
SLIDES.add_slide(s);


for (var i=0; i < SLIDES.slides.length; i++)
{
	s = SLIDES.slides[i];
	s.target = "_blank";
	s.attr = "width=600,height=450,resizable=yes,scrollbars=yes"
}

//<!--
