
$(document).ready(function () {


$('#pottery_about').qtip({
   content: $("#divAboutMenu").html(),
   show: 'mouseover',
   hide: { when: 'mouseout', fixed: true },
   style: { 
      width: 400,
      padding: 5,
      background: '#D21727',
      color: '#fff',
      textAlign: 'left',
      border: {
         width: 7,
         radius: 5,
         color: '#D21727'
      }
    },
    position: {
      corner: {
         target: 'bottomleft',
         tooltip: 'topleft'
      }
   }

})

$('#pottery_how').qtip({
   content: $("#divHowMenu").html(),
   show: 'mouseover',
   hide: { when: 'mouseout', fixed: true },
   style: { 
      width: 400,
      padding: 5,
      background: '#D21727',
      color: '#fff',
      textAlign: 'left',
      border: {
         width: 7,
         radius: 5,
         color: '#D21727'
      }
    },
    position: {
      corner: {
         target: 'bottomleft',
         tooltip: 'topleft'
      }
   }

})

$('#pottery_parties').qtip({
   content: $("#divEventsMenu").html(),
   show: 'mouseover',
   hide: { when: 'mouseout', fixed: true },
   style: { 
      width: 400,
      padding: 5,
      background: '#D21727',
      color: '#fff',
      textAlign: 'left',
      border: {
         width: 7,
         radius: 5,
         color: '#D21727'
      }
    },
    position: {
      corner: {
         target: 'bottomleft',
         tooltip: 'topleft'
      }
   }

})

});
