$(document).ready(function(){

  $('body').append('<a id="splash" href="' + nwSplash_page + '" style="display:none;">splash</a>');

  $('a#splash').fancybox({
    'width'         : nwSplash_width,
    'height'        : nwSplash_height,
    'autoScale'     : 'false',
    'transitionIn'  : 'fade',
    'transitionOut' : 'fade',
    'type'          : 'iframe'
  });

   setTimeout(function(){
     $('a#splash').click();
   }, 2000);
});

