$(function() {
fbFetch();
	$(".socdiv").hide();
	$("#sociable").hover(function(){$(".socdiv").show('fast');},function(){$(".socdiv").hide('fast');});
	$("a.transition").click(function(event){
		var $this = $(this);
		event.preventDefault();
		linkLocation = this.href;
		var properties=$this.attr("rel")
		properties = properties.split(":")
		$("#folder-content").flip({
			direction:properties[0],
			content:'Loading...',
			color:properties[1],
			onBefore: function(){
				$("#content").hide()
			},
			onEnd: function(){
				redirectPage();
			}
		});
	});
	function redirectPage() {
		window.location = linkLocation;
	}
});
