$(document).ready( function(){ 	
	
	 
	 _xAction.init();
		
	$('.top-banner a').click( function(){
		if(! window.open($(this).attr('href'),'Press','width=900,height=600,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0')){
			alert('Your browser has blocked the new window from popping up, please allow popups for this site so that you may read the material');	
		}
		return false;
	 });
	
});

_xAction = {

	init: function(){
		
		$('.over1').fadeIn(1500, function(){  $('.over2').fadeIn(900, function(){ setTimeout("_xAction.redirect()",1000) }); });
	},
	
	redirect : function(){
		document.location = 'who.html';	
	}

}

 