// Miscellaneous JavaScript functions

$('a.togglelink').click(function() {
	var id = $(this).attr('id');
	alert(id);
	$('#togglebox'+id).toggle(400);
	return false;
});

function show(tagID) {
	document.getElementById('s_' + tagID).style.display = 'block';
	document.getElementById('h_' + tagID).style.display = 'none';
}

function hide(tagID)	{
	document.getElementById('s_' + tagID).style.display = 'none';
	document.getElementById('h_' + tagID).style.display = 'block';
}

