function show_study(id)
{
	$("#study" + id).show(2);
}

function hide_study(id)
{
	$("#study" + id).hide();
}