$(document).ready(function(){
	if(window.location.hash.length != 13){
		$.post(
			'geturl.php',
			{'s' : 's'},
			function(data){
				window.location.hash = data;
				window.location.reload();
			}
		);
	}else{
		$.post(
			'getcontents.php',
			{'url' : window.location.hash},
			function(data2){
				$('#content').html(data2);
				namespace.centerDiv();
				$('#wrapper').fadeIn(250);
			}
		);
	}
});

$('*').click(function(){
		$.post(
			'geturl.php',
			{'s' : 's'},
			function(data){
				window.location.hash = data;
				$('#wrapper').fadeOut(250, function(){
					$('#content').load('getcontents.php',{url:data},function(){
						namespace.centerDiv();
						$('#wrapper').fadeIn(250);
					});
					
				});
			}
		);
});
