		function showHide(item)
		{
			jQuery('#' + item).slideToggle('slow');
		} 
		function hide(item)
		{
			jQuery('#' + item).hide('slow');
		}
		function show(item)
		{
			jQuery('#' + item).show('slow');
		}
