function ajx ( Pagina, Action, File ) {

$.post( Pagina + '.php', { action : "upload", file : File }, function( respuesta )
        {
            $("#p1").html( respuesta )
    });
    
}



$(function()
{ 

	$("a#cat").hover(function () { 
		 $("div#categorie").fadeIn("fast");
		 $("div#mezzi").hide();
	});
	
	$("a#mez").hover(function () { 
		 $("div#mezzi").fadeIn("fast");
		 $("div#categorie").hide();
	});
	
	$("a#out").hover(function () { 
		 $("div#mezzi").hide();
		 $("div#categorie").hide();
	});	

});


$(function() {
	$("#descrizione").wysiwyg();
});


$(function()
{
		$("#saveImage").click(function () { 
			var file = $( "input#foto" ).val(); 
			
			ajx('upload', "", file); 
		});
});


$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});


function mostraSub ( id ) {
	$("ul#" + id).fadeIn("fast");
}
