// JavaScript Document
//E' indispensabile l'id *arch*

function handler(){
     //alert("ok");
     var pos = $(this).offset();
     var w = $(this).width()-10;
     $(this).children(".cataloghi").show();
     $(this).children(".cataloghi").css("top",pos.top);
     $(this).children(".cataloghi").css("left",pos.left + w);
}

function handler2(){
     //alert("ok");

       $(this).children(".cataloghi").hide();

}

$(document).ready(function(){
    $(".arch").mouseenter(handler);
    $(".arch").mouseleave(handler2);
});
