function mout(obj) {
	obj.style.opacity=1.0;
	if (jQuery.browser.msie) {
      obj.style.filter="alpha(opacity=100)";
    }
}
function mover(obj) {
	obj.style.opacity=0.6;
	if (jQuery.browser.msie) {
      obj.style.filter="alpha(opacity=60)";
    }
}
function unitclick(link){location.href = link;}