var onImage = new Array()

onImage["login"] = new Image()             
onImage["login"].src = "images/Login-over.gif"; 
	
onImage["about"] = new Image()             
onImage["about"].src = "images/AboutUs-over.gif"; 
	
onImage["employment"] = new Image()             
onImage["employment"].src = "images/Employment-over.gif"; 
	
onImage["news"] = new Image()             
onImage["news"].src = "images/CompanyNews-over.gif";  
	
onImage["contact"] = new Image()             
onImage["contact"].src = "images/ContactUs-over.gif";  
	
onImage["service"] = new Image()             
onImage["service"].src = "images/FieldService-over.gif"; 
	
onImage["itm"] = new Image()             
onImage["itm"].src = "images/ITM-over.gif"; 
	
onImage["asset"] = new Image()             
onImage["asset"].src = "images/AssetManagement-over.gif"; 
	
onImage["tracking"] = new Image()             
onImage["tracking"].src = "images/DeviceTracking-over.gif"; 
	
onImage["ctc"] = new Image()             
onImage["ctc"].src = "images/CTC-over.gif"; 
	
onImage["education"] = new Image()             
onImage["education"].src = "images/Education-over.gif";  
	
onImage["home"] = new Image()             
onImage["home"].src = "images/Home-over.gif"; 
 
onImage["cruise"] = new Image()             
onImage["cruise"].src = "images/CruiseLN-over.gif"; 

var offImage = new Array()

offImage["login"] = new Image()
offImage["login"].src = "images/Login.gif";

offImage["about"] = new Image()
offImage["about"].src = "images/AboutUs.gif";
	
offImage["employment"] = new Image()
offImage["employment"].src = "images/Employment.gif";

offImage["news"] = new Image()
offImage["news"].src = "images/CompanyNews.gif";

offImage["contact"] = new Image()
offImage["contact"].src = "images/ContactUs.gif";

offImage["service"] = new Image()
offImage["service"].src = "images/FieldService.gif";

offImage["itm"] = new Image()
offImage["itm"].src = "images/ITM.gif";

offImage["asset"] = new Image()
offImage["asset"].src = "images/AssetManagement.gif";

offImage["tracking"] = new Image()
offImage["tracking"].src = "images/DeviceTracking.gif";

offImage["ctc"] = new Image()
offImage["ctc"].src = "images/CTC.gif";

offImage["education"] = new Image()
offImage["education"].src = "images/Education.gif";

offImage["home"] = new Image()
offImage["home"].src = "images/Home.gif";

offImage["cruise"] = new Image()
offImage["cruise"].src = "images/CruiseLN.gif";

function showOn(imgName) { 
document.images[imgName].src = onImage[imgName].src
}

function showOff(imgName) {
document.images[imgName].src = offImage[imgName].src
}

img2 = new Image()

seconds = "11";

function imgOne()
{
setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
document.myimg.src = 'images/Testimonial2.gif';
setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
document.myimg.src = 'images/Testimonial.gif';
setTimeout("imgTwo()", seconds * 1000);
}