/**
 * Real Cool Futures 09/2009
 * Story Worldwide
 *
 ** Random job selecta
 */

$(document).ready(function(){var timeout=4000,timerId=0,image='images/randomjob-animator.gif',text='Just a moment...<br />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!==''){$('<img>').attr('src',image);}
content='<img src="'+image+'" alt=""><p>'+text+'</p>';$('#randomJob a').click(function(e){e.preventDefault();var docHeight=$(document).height();var href=$(this).attr('href');if($('#overlay').length===0){var overlay=$('<div id="overlay" class="randomJob">').html(content).appendTo('body');var overlayBg=$('<div id="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);});}});});
