// APBO2009
// sponsorslogo.js

      
<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue// the pattern, adding to the array below

Pic[0] = 'images/sponsors_koreanair.jpg'
Pic[1] = 'images/sponsors_wellsfargo.jpg'
Pic[2] = 'images/sponsors_ciber.jpg'
Pic[3] = 'images/sponsors_ibear.jpg'
Pic[4] = 'images/sponsors_itri.jpg'
Pic[5] = 'images/sponsors_rdgc.jpg'
Pic[6] = 'images/sponsors_whitedrive.jpg'
Pic[7] = 'images/sponsors_citd.jpg'
Pic[8] = 'images/sponsors_fedex.jpg'
Pic[9] = 'images/sponsors_sunrider.jpg'
Pic[10] = 'images/sponsors_bea.jpg'
Pic[11] = 'images/sponsors_ewc.jpg'
Pic[12] = 'images/sponsors_laedc.jpg'


var Url = new Array (); // this array will contain all urls to which the image link

Url[0] = "http://www.koreanair.com/";
Url[1] = "https://www.wellsfargo.com/"; // it's important to add the http:// protocol in front of the link
Url[2] = "http://www.marshall.usc.edu/ciber/index.htm";
Url[3] = "http://www.marshall.usc.edu/ibear/";
Url[4] = "http://www.itri.org.tw/eng/";
Url[5] = "http://www.zhenjiang.cn/gb/zgzj/zjgb/eng/zjgk.html";
Url[6] = "http://www.whitedriveproducts.com/";
Url[7] = "http://citd.org/";
Url[8] = "http://www.fedex.com/";
Url[9] = "http://www.sunrider.com/";
Url[10] = "http://www.bea.gov/";
Url[11] = "http://www.eastwestcenter.org/";
Url[12] = "http://www.laedc.org/";


// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
document.getElementById('the_link').href = Url[j];
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->
