/**  generico.js
 * 
 * Funzioni javascript varie.
 * 
 * @copyright 1995-2008 Intesys S.r.l. Verona (I). All rights reserved. 
 * @version 28/02/2008 - 1.0
 * @package icms
 * 
 * 
 */

function searchfocus() { document.getElementById('searchInput').focus(); }


window.addEvent("domready", function() {
	/*if ($$('.fotoGallery').length > 0) {
		$$('.fotoGallery').slimbox();
	}*/
	//$('ul.menu ul:not(:has(li))').remove();
	$$('ul.menu ul').each(function (el, i) {
	 if (!$E('li', el)) {
	  el.remove();
	 } 
	});
});
