$(function (){ 
    if(!$.cookie('showPopuper')) 
    {
        setTimeout(showPopuper, 3000);
    }
    
    $('#popuperOverlayer, #popuper .close').click(function(){
        $('#popuper').fadeOut('fast', function(){
            $('#popuperOverlayer').fadeOut('fast');
        })
    });
    
    function showPopuper()
    {
      $('#popuperOverlayer').fadeIn('fast', function(){ // Показываем оверлаейер, как закончится анимация запускаем показ самого окна
         $('#popuper').animate({'top':'50%'}, 1000, function(){
            $('#popuperContent').effect('bounce', { times: 5, distance: 50 })
         }); 
      });
      $.cookie('showPopuper', 1);  
    }  
 
});
