function mouse_over(id)
{
	document.getElementById(id).src = "/images/logo_small/" + id + ".gif";
}

function mouse_out(id)
{
	document.getElementById(id).src = "/images/logo_small_gray/" + id + ".gif";
}


function mouse_over_fl(id)
{
	var image = id.substr(0, id.length - 1);
	document.getElementById(id).src = "/images/logo_small/" + image + ".gif";
}

function mouse_out_fl(id)
{
	var image = id.substr(0, id.length - 1);
	document.getElementById(id).src = "/images/logo_small_gray/" + image + ".gif";
}