var allImages = new Array(
	'../_img/menu/about_on.gif',			// 0
	'../_img/menu/news_on.gif',			// 1
	'../_img/menu/services_on.gif',		// 2
	'../_img/menu/infrastructure_on.gif',	// 3
	'../_img/menu/success_on.gif',		// 4
	'../_img/menu/trading_on.gif',		// 5
	'../_img/menu/contact_on.gif',		// 6
	'../_img/menu/registration_on.gif',	// 7
	'../_img/menu/login_on.gif',		// 8
	'../_img/menu/legal_on.gif',		// 9
	'../_img/menu/member_on.gif'			// 10
	);

onImage=new Array();	
for (count = 0; count < allImages.length; count++) {	
	onImage[count] = new Image();	
	onImage[count].src = allImages[count];	
};

function rollOver(area, arrayNum, state){
	if (state) {
		defaultPic=document.images[area].src
		document[area].src = onImage[arrayNum].src;
		return true;
		}
	else {
		document[area].src=defaultPic;
		return true;		
		};
	};

function Login() {
    open('index.html\\localhost\secure\login.aspx','_self');
	};

function Register() {
    open('index.html\\localhost\secure\register.aspx','_self');
	};

