<!--
// Create the slideshow object
ss2 = new slideshow2("ss2");
// 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;
// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "PsyAsia_Difference_images/experts-in-people.jpg";
//s.link = "#";
s.title = "First slide";
s.text = "afaf";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss2.add_slide(s);

s = new slide();
s.src =  "PsyAsia_Difference_images/award-winning-psych.jpg";
//s.link = "#";
s.title = "Second slide";
s.text = "afaf";
ss2.add_slide(s);

s = new slide();
s.src =  "PsyAsia_Difference_images/award-winning-company.jpg";
//s.link = "#";
s.title = "Third slide";
s.text = "afaf";
ss2.add_slide(s);


s = new slide();
s.src =  "PsyAsia_Difference_images/professional-ethical-compet.jpg";
//s.link = "#";
s.title = "Forth slide";
s.text = "";
ss2.add_slide(s);

s = new slide();
s.src =  "PsyAsia_Difference_images/psychometric-experts.jpg";
//s.link = "#";
s.title = "Fifth slide";
s.text = "";
ss2.add_slide(s);


s = new slide();
s.src =  "PsyAsia_Difference_images/passion-for-science.jpg";
//s.link = "#";
s.title = "Sixth slide";
s.text = "";
ss2.add_slide(s);

s = new slide();
s.src =  "PsyAsia_Difference_images/top-journals.jpg";
//s.link = "#";
s.title = "Seventh slide";
s.text = "";
ss2.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 < ss2.slides.length; i++) {
  s = ss2.slides[i];
  //s.target = "ss_popup";
  //s.attr = "width=320,height=420,resizable=yes,scrollbars=yes";
}


//-->

