// JavaScript Document


var _imgCount = 6;
var _activeIndex =0;
var hoverName = "over.jpg";
var hoverOutName = ".jpg";
var imgPrefix = "website/images/home/ee";
var _activeHoverIndex=0;

function _$(pID){
	return document.getElementById(pID); 	
}

function imgHover(pCurrent, pIDPrefix ){
	if(pCurrent != _activeIndex){
		_$(pIDPrefix+pCurrent).src = imgPrefix + pCurrent + hoverName;		
		_$("div"+pIDPrefix + _activeIndex).style.display = "none";
		_$("div"+pIDPrefix+pCurrent).style.display = "";
		_activeHoverIndex = pCurrent;
	}
}

function imgHoverOut(pCurrent, pIDPrefix ){
	if(pCurrent != _activeIndex){
		_$(pIDPrefix+pCurrent).src = imgPrefix + pCurrent + hoverOutName;		
		_$("div"+pIDPrefix+pCurrent).style.display = "none";
		_$("div"+pIDPrefix + _activeIndex).style.display = "";
	}
}

function imgClick(pCurrent,pIDPrefix){
	for(i=0; i < _imgCount; i++){
		if(pCurrent != i){
			_$(pIDPrefix+i).src = imgPrefix + i + hoverOutName;
			_$("div"+pIDPrefix+i).style.display = "none";
		}else{
			_$(pIDPrefix+i).src = imgPrefix + i + hoverName;
			_$("div"+pIDPrefix+i).style.display = "";
		}
	}
	_activeIndex = pCurrent;
}





