
// ]]>


var over_images = {
	homeP: 'gui/homeBtnOver.jpg',
	cg: 'gui/cgBtnOver.jpg',
	partner: 'gui/partnerBtnOver.jpg',
	contact: 'gui/contactBtnOver.jpg',
	site: 'gui/siteBtnOver.jpg',
	AT: 'gui/AT_L1_ON.jpg',
	AIT: 'gui/AIT_L1_ON.jpg',
	EE: 'gui/EE_L1_ON.jpg',
	EWT: 'gui/EWT_L1_ON.jpg',
	ME: 'gui/ME_L1_ON.jpg',
	RD: 'gui/RD_L1_ON.jpg'
	};
	
var off_images = {
	homeP: 'gui/homeBtn.jpg',
	cg: 'gui/cgBtn.jpg',
	partner: 'gui/partnerBtn.jpg',
	contact: 'gui/contactBtn.jpg',
	site: 'gui/siteBtn.jpg',
	AT: 'gui/AT_L1_OFF.jpg',
	AIT: 'gui/AIT_L1_OFF.jpg',
	EE: 'gui/EE_L1_OFF.jpg',
	EWT: 'gui/EWT_L1_OFF.jpg',
	ME: 'gui/ME_L1_OFF.jpg',
	RD: 'gui/RD_L1_OFF.jpg'
	};
	
var over_imagesSub = {
	homeP: 'gui/homeBtnOver.jpg',
	cg: 'gui/cgBtnOver.jpg',
	partner: 'gui/partnerBtnOver.jpg',
	contact: 'gui/contactBtnOver.jpg',
	site: 'gui/siteBtnOver.jpg',
	AT: 'gui/AT_L2_ON.jpg',
	AIT: 'gui/AIT_L2_ON.jpg',
	EE: 'gui/EE_L2_ON.jpg',
	EWT: 'gui/EWT_L2_ON.jpg',
	ME: 'gui/ME_L2_ON.jpg',
	RD: 'gui/RD_L2_ON.jpg'
	};
	
var off_imagesSub = {
	homeP: 'gui/homeBtn.jpg',
	cg: 'gui/cgBtn.jpg',
	partner: 'gui/partnerBtn.jpg',
	contact: 'gui/contactBtn.jpg',
	site: 'gui/siteBtn.jpg',
	AT: 'gui/AT_L2_OFF.jpg',
	AIT: 'gui/AIT_L2_OFF.jpg',
	EE: 'gui/EE_L2_OFF.jpg',
	EWT: 'gui/EWT_L2_OFF.jpg',
	ME: 'gui/ME_L2_OFF.jpg',
	RD: 'gui/RD_L2_OFF.jpg'
	};
	



function mouseOver(id)
{
		var img = document.getElementById(id);
		img.setAttribute('src', over_images[id]);
	
}

function mouseOverSub(id)
{
	
	var img = document.getElementById(id);
	img.setAttribute('src', over_imagesSub[id]);

}



function mouseOut(id)
{
//document.b1.src ="images/homeBtn.jpg";
	
		var img = document.getElementById(id);
		img.setAttribute('src', off_images[id]);
}

function mouseOutSub(id)
{
	
		var img = document.getElementById(id);
		img.setAttribute('src', off_imagesSub[id]);
}



function checkPage(){
	if(curPageLoaded != "home"){
		document.getElementById('AT').setAttribute('src', off_imagesSub['AT']);
		document.getElementById('AIT').setAttribute('src', off_imagesSub['AIT']);
		document.getElementById('EE').setAttribute('src', off_imagesSub['EE']);
		document.getElementById('EWT').setAttribute('src', off_imagesSub['EWT']);
		document.getElementById('ME').setAttribute('src', off_imagesSub['ME']);
		document.getElementById('RD').setAttribute('src', off_imagesSub['RD']);
	}
	else{
		document.getElementById('AT').setAttribute('src', off_images['AT']);
		document.getElementById('AIT').setAttribute('src', off_images['AIT']);
		document.getElementById('EE').setAttribute('src', off_images['EE']);
		document.getElementById('EWT').setAttribute('src', off_images['EWT']);
		document.getElementById('ME').setAttribute('src', off_images['ME']);
		document.getElementById('RD').setAttribute('src', off_images['RD']);
	}
}


function scrollUp(){
	window.scrollTo(0,0);

}	

function loadPage(newloc){
	window.location = newloc + ".html";
	
	
}
	

