jQuery(document).ready(function(){
	//show / hide help div
	//show
	jQuery('.questionMark').click(function(){
		//help_ is just a prefix for real div id
		var id = this.id.split('-')[1];
		jQuery('#info_'+id).removeClass('hidden');
		return false;
	});
	//close
	jQuery('.close').click(function(){
		jQuery('.helpDiv').addClass('hidden');
		return false;
	});
});
