$(document).ready(function() {
//   $("#gasthof").opacity = 0.6;
//   $("#platzl").opacity = 0.6;
   
   $("#gasthof").mouseover(function() {
     $('#gasthof').animate({
        opacity: 1.0
      }, 600, function() {
        // Animation complete.
      });
   });
   
   $("#gasthof").mouseout(function() {
     $('#gasthof').animate({
        opacity: 0.6
      }, 600, function() {
        // Animation complete.
      });
   });
   
   $("#platzl").mouseover(function() {
     $('#platzl').animate({
        opacity: 1.0
      }, 600, function() {
        // Animation complete.
      });
   });
   
   $("#platzl").mouseout(function() {
     $('#platzl').animate({
        opacity: 0.6
      }, 600, function() {
        // Animation complete.
      });
   });
 });
