var activeImage = false;
var menuObj = false;
function showImage()
	{
		if(activeImage){
			activeImage.style.filter = 'alpha(opacity=75)';	
			activeImage.style.opacity = 0.75;
		}	
		this.style.filter = 'alpha(opacity=100)';
		this.style.opacity = 1;	
		activeImage = this;	
	}
function initSlideShow()
	{	
		menuObj = document.getElementById('cpt_auxpages_navigation');	
		var menu = menuObj.getElementsByTagName('li');
		for(var no=0;no<menu.length;no++){
			menu[no].onmouseover = showImage;
		}
				
	}
window.onload=function(){
initSlideShow();
domap();
}