// JavaScript Document
function borderit(which,color,id)
{
	//if IE 4+ or NS 6+
	if (document.all||document.getElementById)
	{
	which.style.borderColor=color
	if(document.getElementById(id).className == "project_name_hover")
		{
			document.getElementById(id).className = ""; 
		}
		else
		{
			document.getElementById(id).className = "project_name_hover"; 
		}
	}
}

function borderitimg(id,color){
	//if IE 4+ or NS 6+
	document.getElementById(id).style.borderColor=color;
}
