$(document).ready(function(){
    $('#menu li').append('<span class="bg"></span>');
    $('#menu li').not('.active').hover(
    function() {
        $(this).find('span.bg').stop().animate({ opacity: 1.0 }, 400 );
    },
    function() {
        $(this).find('span.bg').stop().animate({ opacity: 0.0 }, 400 );
    });
});

$(function() {		
  $(".scrollable").scrollable({ vertical: true, circular: true });	
});

$(function() {
   setTimeout("showSticker(1)", 200);
});

function showSticker(num) {
  $(".sticker"+num).animate({opacity: 1});
  if (num + 1 < 7) {
    setTimeout("showSticker("+(num+1)+")", 200);
  }
}
