$(document).ready(function(){

// corner
		$(".inner").corner("round 8px").parent().css('padding', '1px').corner("round 10px");

// effetto striscia menu
        $("#menu").lavaLamp({
            fx: "backout",
            speed: 700,
            click: function(event, menuItem) {
                return false;
            }
        });

// gestione sotto-menu
		var options3 = {minWidth: 150, offsetTop: 23, hoverOpenDelay: 20, arrowSrc: 'next.gif'};
		$('#menu').menu(options3);

// click sul sottomenu
		$("ul li").click(function(){
			  //get the url from href attribute and launch the url
			  window.location=$(this).find("a").attr("href"); return false;
			});


// bottone cerca
		$('#cerca_but').button().css("font-size", "11px").css({height: "22px"});

		$('#submitButton').button().css("font-size", "14px").css({height: "38px"});


// gestione accordion
		$( "#accordion" ).accordion();
		$( "#accordion" ).accordion("activate", "#sel");
		$( "#accordion2" ).accordion();
		$( "#accordion2" ).accordion("activate", "#sel2");

// gestione dei tab
		$("#tabs").tabs();

		/*$('#titolo_top').fit();

		  $(window).resize(function() {
		    $('#titolo_top').fit();
		  });*/


 });

