$(document).ready(function(){
    jq(".para_arrow_up").hide();
    jq(".expand_subparagraph").ready(function(){
        jq(".expand_subparagraph").html("<span class=\"do_expand_subparagraph\">Leggi tutto</span>");
        jq(".expand_subparagraph").nextAll().hide();
        jq(".expand_no").hide();
    });
    jq(".expand_subparagraph").click(function(){
        jq(this).nextAll().slideToggle(450);
    });
    jq(".expand_paragraph").click(function(){
        jq(this).children(".para_arrow_down").toggle();
        jq(this).children(".para_arrow_up").toggle();
        jq(this).next().slideToggle(450);
    });

    jq("span[rel]").overlay();

    jq("div[rel]").overlay({
        left:-100,
        top:null,
        absolute:true
    });

    jq("span[rel]").click(function(){
        jq(".oggettoFlash").toggle();
    });
    jq(".close").click(function(){
        jq(".oggettoFlash").toggle();
    });
    
});
