$(document).ready(function(){
  //NEWS
  $(function() {
    $(".titleblock").titleBlock({
      removeTitle: false,
      thefontSize: "24px"
    });          
  });
  
  $("a").click(function () {
    var qu = $(this).attr("id");
    var an = "#" + qu.replace("title","news");
    $(an).slideToggle('slow');
  });
 
  //FAQ
  $(function() {
    $(".questions > li").click(function() {
      var qu = $(this).attr("id");
      var an = "#" + qu.replace("q","a");
      $.scrollTo(an, {duration: 800, axis:"y"});
    });
  });
    
  $(function() {
    $(".return_top").click(function() {
      $.scrollTo("body", {duration: 800, axis:"y"});
    });
  });
  
  //HOME
  $(function() {
    $("#top-page").click(function() {
      $.scrollTo("body", {duration: 800, axis:"y"});
    });
  });
  
  $(".sitemap").colorbox({width:"400px", height:"450px", iframe:true, close:"chiudi"});
  $(".login").colorbox({width:"500px", height:"430px", iframe:true, close:"chiudi"});
  
  // FOTO
  $(".fade").fadeTo("fast", 0.5);

  $(".fade").hover(function(){
    $(this).fadeTo("fast", 1.0);
  },function(){
    $(this).fadeTo("fast", 0.5);
  });
  
  $(function() {
     $('a[rel^=colorbox]').colorbox({transition:"fade", current:"foto {current} di {total}", previous:"prec", next:"succ", close:"chiudi"});
  });
  
});
