function DisplayContact(id)
{
$("#"+id).css("display", "block");		
}

function HideContact(id)
{
$("#"+id).css("display", "none");		
}

	function Over(id){
	var imgg = document.getElementById(id).src;
	imgg = imgg.substring(0, imgg.indexOf(".gif"));
	imgg = imgg + "_over.gif";
	document.getElementById(id).src = imgg;
}
	function Offit(id){
	var imgg = document.getElementById(id).src;
	imgg = imgg.substring(0, imgg.indexOf("_"));
	imgg = imgg + ".gif";
	document.getElementById(id).src = imgg;
}

