/**
 ** icBanner.js  -- rotates the banner on the main site to a random one
 **/
 
/*
 * HISTORY:
 *  $Author: root $
 *  $Date: 2008/02/05 03:13:34 $
 *  $Log: icBanner.js,v $
 *  Revision 1.1.1.1  2008/02/05 03:13:34  root
 *  - initial import
 *
 *
 */

/**
 * slide show stuff
 */
var tpl  = '/images/tpl';

IC = new slideshow("IC");

s      = new slide();
s.src  = tpl + '/banner_labs.jpg';
s.link = 'http://computerlabs.ic.ucsb.edu/';
s.text = 'Computing Facilities';
s.attr = "width=693,height=136";
IC.add_slide(s);

s      = new slide();
s.src  = tpl + '/banner_training.jpg';
s.link = 'http://training.ic.ucsb.edu/';
s.text = 'Software Training Services';
s.attr = "width=693,height=136";
IC.add_slide(s);

s      = new slide();
s.src  = tpl + '/banner_cosl.png';
s.link = 'http://cosl.ic.ucsb.edu/';
s.text = "Campus Office of Software Licensing";
s.attr = "width=693,height=136";
IC.add_slide(s);

s      = new slide();
s.src  = tpl + '/banner_umail.jpg';
s.link = 'http://www.umail.ucsb.edu/';
s.text = "U-Mail Student E-Mail Service";
s.attr = "width=693,height=136";
IC.add_slide(s);
