/** * Real Cool Futures 09/2009 * Story Worldwide * ** Random job selecta */ $(document).ready(function(){var timeout=4000,timerId=0,image='http://www.realcoolfutures.com/images/randomjob-animator.gif',text='Just a moment...
We are taking you to the best job!',content='',position={sTop:function(){return window.pageYOffset||document.documentElement&&document.documentElement.scrollTop||document.body.scrollTop;},wHeight:function(){return window.innerHeight||document.documentElement&&document.documentElement.clientHeight||document.body.clientHeight;}};if(image!==''){$('').attr('src',image);} content='

'+text+'

';$('#randomJob a').click(function(e){e.preventDefault();var docHeight=$(document).height();var href=$(this).attr('href');if($('#overlay').length===0){var overlay=$('
').html(content).appendTo('body');var overlayBg=$('
').height(docHeight+'px').fadeTo(0,0.75).appendTo('body');var overlayTop=position.sTop()+(position.wHeight()/2)-(overlay.height()/2);overlay.css('top',overlayTop);timerId=setTimeout(function(){document.location.href=href;},timeout);$('#overlayBg').click(function(e){$(this).remove();$('#overlay').remove();clearTimeout(timerId);});}});});