$(document).ready(function() {
  $("#splash").mouseover(function() {
    $(this).animate({
      width: "120px",
      height: "120px"
    }, 100);
  });
  
  $("#splash_index").mouseover(function() {
    $(this).animate({
      width: "120px",
      height: "120px"
    }, 100);
  });
  
  $("#splash").mouseout(function() {
    $(this).animate({
      width: "100px",
      height: "100px"
    }, 100);
  });
  
  $("#splash_index").mouseout(function() {
    $(this).animate({
      width: "100px",
      height: "100px"
    }, 100);
  });
  
  $("#splash-link").click(function() {
    window.open('acquisto/acquisto.php?step=1', 'popup', 'width=1000, height=600, top=50%, left=50%, resizable=no, scrollbars=yes'); 
  });
  
  $("#ambiente").hide();
  
  $("#ambChiudi").click(function() {
    $("#ambiente").hide();
  });
  
 
});
