// JavaScript Document

//Fxn to highlight the gallery image when mouse over


function pick(obj)
{
 if(document.getElementById(obj).style.filter=="alpha(opacity=60);-moz-opacity:.60;opacity:.60;")
 	document.getElementById(obj).style.filter="alpha(opacity=100);-moz-opacity:1.0;opacity:1.0;";
else
	document.getElementById(obj).style.filter="alpha(opacity=60);-moz-opacity:.60;opacity:.60;";
}

