// File "bannerconfig.js"
// This file is used for configuring the CUHK Alumni Interactive Banner

/* [ Banner Parameters ] */
var interval = 7;		// time interval for moving btw messages (ms)
var increment = 1;		// the distance for each step movement (Pixel)
var reflashInterval = 300;	// time interval for reflashing the banner position (ms)
var pause = 2000;		// time to pause for each message (ms)
var bannerColor = "#ffffff";	// banner background colour
var leftPadding = 0;		// banner left margine
var topPadding = 0;		// banner top margine
var defaultDirection = false;	// default direction --- true = UP, false = DOWN

/* [ Banner Element ] */

// The dimensions of ALL the images should be the same (240 x 54 pixels)
// Format: ["name/description", "image_patch", "linked_url"],

var msgArr = new Array (
["Alumni Matters", "./banner/alumnimatters.jpg",
"http://www.alumni.cuhk.edu.hk/eng/privileges/connection/alumnimatters.html"],
["Welcome to the alumni roll", "./banner/Newgrad_e.gif",
"http://www.alumni.cuhk.edu.hk/eng/news/graduation_class.html"],
["AAO Fund-raising", "./banner/aaofund-eng.gif", 
"http://www.alumni.cuhk.edu.hk/eng/giving/aaofund.html"],
["CU Alumni Credit Card", "./banner/cucard_eng.jpg", 
"http://www.alumni.cuhk.edu.hk/eng/privileges/special/cucard.html"],
["CUHK Foundation", "../../chi/banner/aaobanner.jpg",
"http://www2.cuhk.edu.hk/oia/"],
["Exchange Students", "./banner/ExchangeStudent_e.jpg",
"http://www.alumni.cuhk.edu.hk/eng/associations/overseasAA.html"]);

