$(document).ready(function(){
	// Left bar controls
	var leftbar = 0;
	$('#tab a').click(function(){
		if (leftbar){
			$('#tab').animate({'left':'0px'}, 1000);
			$('#tab a').animate({opacity:1}, 1000);
			$('#left_bar').animate({'left':'-384px'}, 1000);
			leftbar = 0;
		} else {
			$('#tab').animate({'left':'384px'}, 1000);
			$('#tab a').animate({opacity:1}, 1000);
			$('#left_bar').animate({'left':'0px'}, 1000);
			leftbar = 1;
		}
		return false;
	});
});
