<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2500;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Pic = new Array();


Pic[0] = 'gif/header-img1.jpg'
Pic[1] = 'gif/header-img2.jpg'
Pic[2] = 'gif/header-img7.jpg'
Pic[3] = 'gif/header-img8.jpg'




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);
}
// 
function getit(){
if (document.menuForm.tours.selectedIndex != 0) parent.location=document.menuForm.tours.options[document.menuForm.tours.selectedIndex].value;
}
function getit1(){
if (document.menuForm1.destination.selectedIndex != 0) parent.location=document.menuForm1.destination.options[document.menuForm1.destination.selectedIndex].value;
}
function getit2(){
if (document.menuForm2.themes.selectedIndex != 0) parent.location=document.menuForm2.themes.options[document.menuForm2.themes.selectedIndex].value;
}
function getit3(){
if (document.menuForm3.hotels.selectedIndex != 0) parent.location=document.menuForm3.hotels.options[document.menuForm3.hotels.selectedIndex].value;
}