<!--

// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
ss.timeout = 8000;

// 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 = "images/corporate/Umbro.jpg";
s.text = "<style type=\"text/css\">#ss_text p { margin-top: 8px; }</style><h3>Garbo</h3><p>Promotional postcard (1 of 4)</p><p><strong>End Client:</strong><br/>Umbra</p>";
s.height = "279";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/CraigCD.jpg";
s.text = "<style type=\"text/css\">#ss_text p { margin-top: 8px; }</style><h3>Drumset and Percussion</h3><p>CD cover</p><p><strong>End Client:</strong><br/>Craig Hunter<p><strong>Collaborators:<br>Photographer:</strong> Latham Hunter</p>";
s.height = "224";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/CapTrust.jpg";
s.text = "<h3>Capital Trust Annual Report</h3><p>Cover for an annual report by an Northern Ireland-based financial company.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">MX Marketing</span></dd></dl>";
s.height = "500";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/HKC-Logos.gif";
s.text = "<h3>HKC Logos</h3><p>Logo design for a new identity for the reorganisation of Heather Kelly Communications into HKC Events and HKC Marketing</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Heather Kelly Communications</span></dd></dl>";
s.height = "180";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/Mainstay.jpg";
s.text = "<h3>Intelligent Evolution</h3><p>Interior page from a magazine-style promotional document for a tellecommunications company</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Mainstay Marketing</span></dd><dt>Collaborators:</dt><dd><dl><dt>Illustrator:</dt><dd class=\"vcard\"><span=\"fn\">Eric Colquhoun</span></dd></dl></dd></dl>";
s.height = "468";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/Nobel3.jpg";
s.text = "<h3>A Beautiful Smile</h3><p>Opening page for a four-page promotional insert for Nobel Biocare's dental services, in Homemakers magazine.</p><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Transcontinental/Nobel Biocare</span></dd><dt>Collaborators:</dt><dd><dl><dt>Photographer:</dt><dd class=\"secondary vcard\"><span=\"fn\">Geoff George</span></dd><dt>Hair & Make-up:</dt><dd class=\"vcard\"><span=\"fn org\">Buffy/Judy Inc.</span></dd></dl></dd></dl>";
s.height = "500";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/PangaeaAd1.jpg";
s.text = "<h3>Toronto Life ad</h3><p>Quarter-page ad for Pangaea restaurant, in Toronto Life magazine</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Pangaea restaurant</span></dd></dl>";
s.height = "386";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/RoccoCover.jpg";
s.text = "<h3>David Rocco's Dolce Vita</h3><p>Wrap-around cover (front cover, spine and back cover) for a proposed cookbook based on a Food Network show.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Madison Press</span></dd></dl>";
s.height = "313";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/RoccoSpread.jpg";
s.text = "";
s.height = "312";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/Seneca.jpg";
s.text = "<h3>Education that Works</h3><p>Cover for the Seneca College winter calendar of evening classes.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Seneca College</span></dd></dl>";
s.height = "380";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/SenecaSport.gif";
s.text = "<h3>Sport & Recreation Programs</h3><p>Tabloid newspaper-sized cover for the Seneca College fall calendar of sport & recreation programs.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Seneca College</span></dd></dl>";
s.height = "452";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/SparkleLogo.gif";
s.text = "<h3>Sparkle with Ocean Spray</h3><p>Proposed logo for a Christmas cocktail recipe booklet.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Transcontinental/Ocean Spray</span></dd></dl>";
s.height = "185";
ss.add_slide(s);

s = new slide();
s.src = "images/corporate/WaveLogo.gif";
s.text = "<h3>Next Wave</h3><p>Proposed logo for a telecomunications company promotion.</p><dl><dt>End Client:</dt><dd class=\"vcard\"><span=\"fn org\">Mainstay Marketing</span></dd></dl>";
s.height = "278";
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";

}

//-->
