<!--

// Create the slideshow object
ss = new slideshow("ss");

// ---- Slideshow Settings ----//
// Set the delay between slides, 1000 = 1 sec
// ss.timeout = 3000;
// By default, all of the slideshow images are prefetched.
// If you have a large number of slides you can limit the
// number of images that are prefetched.
// ss.prefetch = 1;
// By default the slideshow will repeat when you get to the end.
// ss.repeat = false;
// ---- Slideshow Settings ----//

// ---- Sample Code ---- //
// Create the slides and add them to the slideshow.
//s = new slide();
//s.src =  "/tellychakkar/y2k4/november/18nov/anuj1.jpg";
//s.link = "/tellychakkar/y2k4/september/8sep/nausheen1.jpg";
//s.title = "1 slide";
//s.text = "<center><font color='black' face='Verdana' size='1'><b>Some Text.<\/font><\/center>";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
// ---- Sample Code ---- //

s = new slide();
s.src =  "/tellychakkar/y2k5/july/14jul/pic1.jpg";
s.title = "1 slide";
s.text = "<center><font color='white' face='arial' size='3'><b></b></font><font color='white' face='arial' size='2'><br><br>Rajeev walks in, in style. One look at him, and we realise why we have women swooning over him. In white shirt and jeans and sporting a stubble, he looks as handsome as ever...Sujal or not! Very interested in what we have to say about his performance in TB, Rajeev checks out Telly Chakkar!<\/font><\/center>";
ss.add_slide(s);

s = new slide();
s.src =  "/tellychakkar/y2k5/july/14jul/pic2.jpg";
s.title = "2 slide";
s.text = "<center><font color='white' face='arial' size='3'><b></b></font><font color='white' face='arial' size='2'><br><br>Takes a look at the site and laughs out loud at the recent posting on the grapevine page. Rajeev also takes a look at TC forums and says that it is important that his fans both criticise and appreciate his work.<\/font><\/center>";
ss.add_slide(s);

s = new slide();
s.src =  "/tellychakkar/y2k5/july/14jul/pic3.jpg";
s.title = "3 slide";
s.text = "<center><font color='white' face='arial' size='3'><b></b></font><font color='white' face='arial' size='2'><br><br>`Oh! So this is what they think about me?` Great!<\/font><\/center>";
ss.add_slide(s);

s = new slide();
s.src =  "/tellychakkar/y2k5/july/14jul/pic4.jpg";
s.title = "4 slide";
s.text = "<center><font color='white' face='arial' size='3'><b></b></font><font color='white' face='arial' size='2'><br><br>That`s me! That`s me! `But I do feel a little tired`, he says. Understandably so.<\/font><\/center>";
ss.add_slide(s);

s = new slide();
s.src =  "/tellychakkar/y2k5/july/14jul/pic5.jpg";
s.title = "5 slide";
s.text = "<center><font color='white' face='arial' size='3'><b></b></font><font color='white' face='arial' size='2'><br><br>Rajeev checks out a TC wallpaper!<br><br><b>Pics by Vicky Ahuja</b><\/font><\/center>";
ss.add_slide(s);


// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
  s.target = "ss_popup";
  s.attr = "width=320,height=420,resizable=yes,scrollbars=yes";
}

//-->