<!-- 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 Slide Show AAA

// Set slideShowSpeedAAA (milliseconds)
var slideShowSpeedAAA = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var PicAAA = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicAAA[0] = 'assets/rotate/Left1.png'
PicAAA[1] = 'assets/rotate/Left2.png'

// do not edit anything below this line
var tAAA;
var jAAA = 0;
var pAAA = PicAAA.length;
var preLoadAAA = new Array();
for (i = 0; i < pAAA; i++) {
preLoadAAA[i] = new Image();
preLoadAAA[i].src = PicAAA[i];
}
function runSlideShowAAA() {
if (document.all) {
document.images.SlideShowAAA.style.filter="blendTrans(duration=2)";
document.images.SlideShowAAA.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShowAAA.filters.blendTrans.Apply();
}
document.images.SlideShowAAA.src = preLoadAAA[jAAA].src;
if (document.all) {
document.images.SlideShowAAA.filters.blendTrans.Play();
}
jAAA = jAAA + 1;
if (jAAA > (pAAA - 1)) jAAA = 0;
tAAA = setTimeout('runSlideShowAAA()', slideShowSpeedAAA);
}
//  End -->

<!-- Begin Slide Show BBB
// Set slideShowSpeedBBB (milliseconds)
var slideShowSpeedBBB = slideShowSpeedAAA + 750;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var PicBBB = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicBBB[0] = 'assets/rotate/Right1.png'
PicBBB[1] = 'assets/rotate/Right2.png'

// do not edit anything below this line
var tBBB;
var jBBB = 0;
var pBBB = PicBBB.length;
var preLoadBBB = new Array();
for (i = 0; i < pBBB; i++) {
preLoadBBB[i] = new Image();
preLoadBBB[i].src = PicBBB[i];
}
function runSlideShowBBB() {
if (document.all) {
document.images.SlideShowBBB.style.filter="blendTrans(duration=2)";
document.images.SlideShowBBB.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShowBBB.filters.blendTrans.Apply();
}
document.images.SlideShowBBB.src = preLoadBBB[jBBB].src;
if (document.all) {
document.images.SlideShowBBB.filters.blendTrans.Play();
}
jBBB = jBBB + 1;
if (jBBB > (pBBB - 1)) jBBB = 0;
tBBB = setTimeout('runSlideShowBBB()', slideShowSpeedBBB);
}

this.item_transitions = "filter:progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=90, Duration=1.5, Enabled=TRUE)";
//  End -->

