// when the DOM is ready prepares the switch bottega/malga
$(document).ready(function () {
  $("#malga-switch").click(function () {
    $.scrollTo( 0, 500);
    $("#bottega").slideUp();
    $("#malga").slideDown();
    $("#partitaIva").toggle();
  });
  
  $("#bottega-switch").click(function () {
    $.scrollTo( 0, 500);
    $("#bottega").slideDown();
    $("#malga").slideUp();
    $("#partitaIva").toggle();
  });
});
