$(document).ready(function() {
  
  $("#menu_inicio").click(function(){
    $("#menu > li a").removeClass("current");
    $("#menu_inicio").addClass("current");

    $("#bone").hide(); 
    $("#sgcp").hide(); 
    $("#polaroid_contato").hide();
    $("#corpo").animate({
      left: '0',
      height: '1460px'
    }, "slow");
  });

  $("#menu_panoramas").click(function(){ 
    $("#menu > li a").removeClass("current");
    $("#menu_panoramas").addClass("current");
    $("#corpo_panorama").show();
    $("#bone").hide(); 
    $("#sgcp").hide();  
    $("#polaroid_contato").hide();     
    $("#corpo").animate({
      left: '-600px',
      height: '1260px'
    }, "slow");   
  }); 

  $("#menu_objetos").click(function(){ 
    $("#menu > li a").removeClass("current");
    $("#menu_objetos").addClass("current"); 
    $("#corpo_objeto").show(); 
    $("#corpo").animate({
      left: '-1200px',
      height: '1600px'
    }, "slow"); 
    $("#polaroid_contato").hide();
    $("#bone").show();
    $("#sgcp").show();    
 
  });

  $("#menu_contato").click(function(){ 
      $("#menu > li a").removeClass("current");
    $("#menu_contato").addClass("current");
    $("#corpo_contato").show(); 
    $("#bone").hide(); 
    $("#sgcp").hide();     
    $("#corpo").animate({
      left: '-1800px',
      height: '1017'
    }, "slow");   
    $("#polaroid_contato").show();
  }); 
  
  $("#bone").Draggable({
    zIndex: 1000
  });    
  $("#sgcp").Draggable({
    zIndex: 1000
  });
  
  $(".lg_panorama").add(".tb_panorama").hover(function(){
    $(this).stopAll();
    $(this).animate({opacity: 1},1);
  },function(){
    $(this).stopAll();
    $(this).animate({opacity: 0.5},"slow");
  });
  
});
