/*
* Copyright 2010 Kris Pizer
*/

$().ready(function(){
	setInterval("checkAnchor()", 300);
});

var currentAnchor = null;

function checkAnchor(){
	
	if(currentAnchor != document.location.hash){
		$("#ajax-content").html("<img src='./images/loading.gif' alt='Loading....' />");
		currentAnchor = document.location.hash;
		
		if(!currentAnchor)
			query = "page=home";
		else
		{			
			var splits = currentAnchor.substring(1).split('&');			
			var section = splits[0];
			delete splits[0];			
			var params = splits.join('&');
			var query = "page=" + section + params;
		}		
		$.get("callbacks.php",query, function(data){
			$("#ajax-content").html(data);
		});
	}
}