$(document).ready(function() {
 // hides the banner as soon as the DOM is ready (a little sooner that page load)
 //$('#banner').hide();
  
 // shows and hides and toggles the banner on click  
  $('#banner').click(function() {
    $('#banner').hide('fast');
	window.location.href = 'http://www.stalking.it/?page_id=1056';
    return false;
  });
  $('#banner-hide').click(function() {
    $('#banner').hide('slow');
    return false;
  });
  $('#slick-toggle').click(function() {
    $('#banner').toggle(400);
    return false;
  });

});
