if (top.location != location) {
    top.location.href = document.location.href ;
}

$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
}); 


function regBox(type) {
	if(type == 'hide') {
		$('#dialogBox').fadeOut('slow',function(){
				$('#dialogOverlay').hide();
		});
	} else {
		$('#dialogOverlay').show();
		$('#dialogBox').fadeIn('slow');
	}
}


 function register_player(){
 	$.post("ajax/registration.php",$('#registration').serialize(), function(response) {
 		if(response != "done") {
 			$('#registrationMessage').html(response);
 		} else {
 			$('#registrationMessage').html('<center><img src="img/gate/loading_animation.gif" border="0" width="48px" height="48px" /><center>');
			
			var loginForm = document.getElementById('loginForm');
 			loginForm.world_id.options[loginForm.world_id.selectedIndex].value = $('#world_reg').val();
			$('#user').val($('#user_reg').val());
			$('#pass').val($('#pass_reg').val());
			
			loginForm.submit();	
 		}
	});
	return false;
 }
 
 
function subscribe_ajax(){
  	$.post("ajax/subscribe.php",$('#subscribe').serialize(), function(response) {
		alert(response);
	});
	return;
}
