<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// 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] = 'graphics/image1.jpg'
Pic[1] = 'graphics/image2.jpg'
Pic[2] = 'graphics/image3.jpg'
Pic[3] = 'graphics/image4.jpg'
Pic[4] = 'graphics/image5.jpg'
Pic[5] = 'graphics/image6.jpg'
Pic[6] = 'graphics/image7.jpg'
Pic[7] = 'graphics/image8.jpg'
Pic[8] = 'graphics/image9.jpg'
Pic[9] = 'graphics/image10.jpg'
Pic[10] = 'graphics/image11.jpg'

// 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();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);

}
document.write('<td class="banner" align="right" valign="top" width="175">');
document.write('<center><table class="bannerNav" width="175" cellspacing="0" cellpadding="0" border="0">');
document.write('<tr><td id="VU" class="bannerNav" width="175" height="101" align="center" valign="top">');
document.write('<img src="graphics/image11.jpg" name="SlideShow" width="175" height="101">');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
document.write('</center>');
document.write('</td></tr>');
document.write('</table>');
document.write('</td></tr>');
document.write('</table>');
document.write('</td></tr>');
document.write('<tr><td colspan="3" width="773">');
document.write('<table width="768" cellspacing="0" cellpadding="0" border="0">');
document.write('<tr><td class="outline" width="768">');
document.write('<img src="graphics/clear.gif" border="0" width="1" height="1"></td></tr>');
document.write('<tr><td class="nav"><img src="graphics/clear.gif" border="0" width="1" height="1"></td></tr>');
document.write('</table>');
document.write('</td></tr>');
document.write('<tr>');
// End -->

