/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready( function() {
  $('.shop-notice').hide();
  $('.shop-notice').slideDown();
  setTimeout(slideUp, 5000);
});
function slideUp()
{
  $('.shop-notice').slideUp('slow');
}
