$(document).ready(function(){
	$('.toggle').click(function(){
		var pos = $(this).offset();
		var tabToShow = $(this).attr('href');
		$('.block:not(' + tabToShow + ')').hide();
		$(tabToShow)
		.css({
			top: pos.top - 2,
			left: pos.left - ( $(tabToShow).width()/2 ) 
		})
		.toggle();
		return false;
	}); 
});