/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 sabato 9 aprile 2011 11.01.33
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */
  $(function(){
            $.fn.supersized.options = {  
                startwidth: 1200,
                startheight: 600,
                vertical_center: 1,
                slides : [
                    {image : 'img/bg3.jpg' }
                ]
            };
            $('#supersized').supersized(); 
        });
    $(document).ready(function(){ 

$("#circle li a ").click(function(){
var id= $(this).attr('id');

  $.ajax({
   type: "GET",
   url: "load_post.php",
   data: "id="+id,
   success: function(data){
  $("#load_post").fadeIn();
 $("#load_post").empty();
  $("#load_post").html(data);
   }
 });

});

    $("#circle li a span.tool[title]").tooltip({

    // one configuration property 
    position: "center right",

tip : '#tooltip'

});

 });
