
// Rotating banner promotion control data

  // Set the promotion number
  // Must be unique to allow more than one promo on a page
  // and must match the file name promo<promotionNumber>.js 
  promotionNumber = '1'; 

  ///// ----------- Don't alter this section ------------ /////
  eval('promo[' +promotionNumber +'] = new Promotion()'); // set a promo object in the global array
  promoRef = eval('promo[' +promotionNumber +']');        // set a convenient reference in this file
  ///// ------------------------------------------------- /////

  promoRef.imageHeight = 363;
  promoRef.imageWidth  = 500;
  promoRef.baseName    = 'rot_gallery_';
  promoRef.imageType   = '.jpg'; // .gif or .jpg, but all images must be the same!
  promoRef.imagePath   = 'images/';   // NB with the trailing '/'
  promoRef.imageClass  = '';     // CSS style classname for IMG image tag if required
  promoRef.linkClass   = '';     // CSS style classname for A link tag if required
  promoRef.target      = '';     // link target from an iframe if required

  // Set advert weighting percentage per day [0] for Sunday, [1] for Monday etc.
  // Weighting array sums must equal 100 (percent)!
  // use (100, 0) for a fixed (single) banner
  // all days must have equal number of ads, so use 0 to disable individual banners
  promoRef.weighting[0] = new Array (50,50); // Sunday
  promoRef.weighting[1] = new Array (50,50); // Monday
  promoRef.weighting[2] = new Array (50,50); // Tuesday
  promoRef.weighting[3] = new Array (50,50); // Wednesday
  promoRef.weighting[4] = new Array (50,50); // Thursday
  promoRef.weighting[5] = new Array (50,50); // Friday
  promoRef.weighting[6] = new Array (50,50); // Saturday

  // Set link URL's - prefix with http:// or https:// for an external site
  // Don't set Coremetrics tagging here
  promoRef.adURL[1]  = "gallery.htm";
  promoRef.adURL[2]  = "gallery.htm";


  // Set banner names for Coremetrics 'Site Promotion' tracking.
  // Format is brand-_-promoName-_-bannerName
  //
  promoRef.bannerName[1]  = "homebanner1_1";
  promoRef.bannerName[2]  = "homebanner1_2";
      
	  
  // Set ALT and TITLE attribute text
  promoRef.adAltText[1]  = "View Our Gallery";
  promoRef.adAltText[2]  = "View Our Gallery";

///////////////

