Event.observe(window, 'load', function() {
	$('h-balloon').setStyle({
	  display:'none'
	});
	Event.observe('what-flodeo', 'click', showHide);
});
function showHide(){
	if($('h-balloon').getStyle('display') == 'none'){
		$('h-balloon').setStyle({ display:'block' });
		$('what-flodeo').addClassName('strong');
	} else {
		$('h-balloon').setStyle({ display:'none' });
		$('what-flodeo').removeClassName('strong');
	}
}