function hideId(id)
{
		$("#"+id).fadeOut("fast");
}
function showId(id)
{
		$("#"+id).fadeIn("fast");
}
