$(document).ready(function(){
$(".tipo div").mouseover(function () { 
      $(this).css("cursor","pointer"); 
    });
$(".tipo div").click(function()
{
if ($(this).parent().find("ul").is(":hidden")) 
{$("ul.mod,ul.doc").hide();var oggetto=$(this).parent().find("ul");oggetto.toggle()}
else {$(this).parent().find("ul").toggle()}
}
);
//variabile globale per alternare il testo
var htmlStr="";

$("li.manca").hover(function () { htmlStr=$(this).html();
      $(this).text("coming soon"); 
    },function () {$(this).text(htmlStr)
    });

});
