function show(dir)
{
	thedir = dir;
	$('*:animated').stop(true,true);
	$("#"+currenttab).animate({width: "0px"}, 500, 'swing',
		function()
		{
			$("#"+currenttab).hide();
			var next = '';
			if(thedir == 1)
			{
				if($("#"+currenttab).attr('id') == 'networks')
				{
					next = "about";
				}
				else if($("#"+currenttab).attr('id') == 'about')
				{
					next = 'contact';
				}
				else
				{
					next = 'networks';
				}
			}
			else
			{
				if($("#"+currenttab).attr('id') == 'networks')
				{
					next = "contact";
				}
				else if($("#"+currenttab).attr('id') == 'about')
				{
					next = 'networks';
				}
				else
				{
					next = 'about';
				}
			}
			
			
			$('#'+next).css('width', '0px');
			$('#'+next).show();
			$('#'+next).animate({width: "100%"}, 1000, 'swing');
			currenttab = next;
			
		}
	);
	

}
var currenttab = 'networks';
var thedir = 0;