// JavaScript Document
//Highlight image script
function makevisible(cur,amount){
	strength=amount;
	if (cur.style.MozOpacity){
		cur.style.MozOpacity=strength
	}else if (cur.filters){
		cur.filters.alpha.opacity=strength*100
	}
}
//show big image
function showimage(name){

	document.images.showimage.src=name;
}


