$(function(){	
	$("#slider").easySlider({auto: true, continuous: true, numeric: true});
	$.post("http://www.pieslingers.com/resources/library/processors/facebook/fan_photos.php", function(data){
		$("#fanPhotos").html(data);
	});
	$.post("http://www.pieslingers.com/resources/library/processors/facebook/current_status.php", function(data){
		$("#currentStatus").html(data);
	});
	$.post("http://www.pieslingers.com/resources/library/processors/facebook/wall_posts.php", function(data){
		$("#fanPosts").html(data);
	});
	$.post("http://www.pieslingers.com/resources/library/processors/facebook/albums.php", function(data){
		$("#photoAlbums").html(data);
	});
	$(".fanPhoto[title], #photoAlbums img[title]").livequery(function(){
		$(this).tooltip();
	});
});
