$(document).ready(function() {
	$('div#helper').css({'display': 'none'});
	$('div.help').click(function(){
		//help on
		$(this).css({'font-weight': 'bold'}).attr('title','turn help off');
		$('div#helper').fadeIn('fast');
	});
	$('div#helper').click(function(){
		$(this).fadeOut('fast');
		$('div.help').css({'font-weight': 'normal'}).attr('title', 'turn help on');
	});
});
