
function showDetails(self, id_to_show) {
	$(self).css('visibility', 'hidden');
	$('#'+id_to_show).show('fast');
}

