/*

$(document).ready(function(){
 // addNotice('<p>Bencistà will be closed from ... to ....</p>');
  setTimeout(function() {
    addNotice('<p>We are closed from<br><b>10 Nov 2010</b> to <b>15 Mar 2011</b></p>');
  }, 1000);


$('#growl')
  .find('.close')
  .live('click', function() {
    $(this)
      .closest('.notice')
      .animate({
        border: 'none',
        height: 0,
        marginBottom: 0,
        marginTop: '-6px',
        opacity: 0,
        paddingBottom: 0,
        paddingTop: 0,
        queue: false
      }, 500, function() {
        $(this).remove();
      });
  });
});


function addNotice(notice) {
  $('<div class="notice"></div>')
    .append('<div class="skin"></div>')
    .append('<a href="#" class="close">close</a>')
    .append($('<div class="content"></div>').html($(notice)))
    .hide()
    .appendTo('#growl')    
    .fadeIn(1000);
}


*/
