// *******************************************************************
// *************** jQuery DEFAULT HIDER (SEO optimized) **************
// *******************************************************************
// v1.0	(2009-11-17) librarizzato e spostato in libs. INDISPENSABILE PER na_functions v2.8+, nasconde gli span interni ai tasti negli imgmenu
// v1.1	(2010-11-09) rimosso l'hider di tag h1. era utile per i titoli immagine ma usando cufon nn serve piu' (usare h1 per i titoli!)

	$('head').append('<style type="text/css">body {display:none}</style>') // dirty trick to avoid damn jquery flickering

	$(document).ready(function(){
		$('body').css('display','block'); // reshows body avoiding flickers
		$(".tohide").hide(); // default hider (IMPORTANT: tohide class IS USED BY na_functions v2.8+!!)
	});

