$(document).ready(function(){ // wait for document to load 
	// call the feeds
	window.feedLoad = function(filtertype){
		ShowLoading();
		// handle style for selected
		SelectedTab(filtertype);
		$.ajax({
		  url: 'index.feed.php?filter=' + filtertype,
		  cache: false,
		  success: function(html){
		    HideLoading(html);
		  }
		});
	}

	// call the hopchart feeds
	window.topUsers = function(filtertype){
		ShowLoading();
		// handle style for selected
		SelectedTab(filtertype);
		$.ajax({
		  url: 'index.feed.php?filter=' + filtertype,
		  cache: false,
		  success: function(html){
		    HideLoading(html);
		  }
		});
	}	

});