// JavaScript Document
var img = new Array();
img[0] = './images/homeOver.gif';
img[1] = './images/AboutusOver.gif';
img[2] = './images/servicesOver.gif';
img[3] = './images/GlobalClientsOver.gif';
img[4] = './images/ResourceCentreOver.gif';
img[5] = './images/CareersOver.gif';
img[6] = './images/ContactUsOver.gif';

var imgO = new Array();
imgO[0] = './images/home.gif';
imgO[1] = './images/Aboutus.gif';
imgO[2] = './images/services.gif';
imgO[3] = './images/GlobalClients.gif';
imgO[4] = './images/ResourceCentre.gif';
imgO[5] = './images/Careers.gif';
imgO[6] = './images/ContactUs.gif';



function M_Over(value){
	if(value == 0){
	document.home1.src = img[0];
	}
	/*else{
	document.home1.src = imgO[0];
	}*/
	if(value == 1){
	document.AboutUsI.src=img[1];
	}
	else{
	document.AboutUsI.src = imgO[1];
	}
	if(value == 2){
	document.ServicesI.src=img[2];
	}
	else{
	document.ServicesI.src = imgO[2];
	}
	if(value == 3){
	document.GlobalClientsI.src = img[3];
	}
	else{
	document.GlobalClientsI.src = imgO[3];
	}
	if(value == 4){
	document.ResourceCentreI.src = img[4];
	}
	else{
	document.ResourceCentreI.src = imgO[4];
	}
	if(value == 5){
	document.CareerI.src = img[5];
	}
	/*else{
	document.CareerI.src = imgO[5];
	}*/

	if(value == 6){
	document.ContactUsI.src = img[6];
	}
	/*else{
	document.ContactUsI.src = imgO[6];
	}*/
}
function M_Out(value){
	if(value == 0){
	document.home1.src = imgO[0];
	}
	if(value == 1){
	document.AboutUsI.src = imgO[1];
	}
	if(value == 2){
	document.ServicesI.src = imgO[2];
	}
	if(value == 3){
	document.GlobalClientsI.src = imgO[3];
	}
	if(value == 4){
	document.ResourceCentreI.src = imgO[4];
	}
	if(value == 5){
	document.CareerI.src = imgO[5];
	}
	if(value == 6){
	document.ContactUsI.src = imgO[6];
	}
}
