var fullheight;

$(document).ready(function (){
	fullheight = $('#content').height();
	$('#content').css({
				height: 0,
				width: 750,
				left: 0,
				top: 0
			});
	
	$('#showhide').children().click(function(){
		
		var current = $(this).html();

		if (current == "show&nbsp;text") {
			$('#content').animate({
				height: fullheight,
				width: 650,
				left: 50,
				top: 50
			});
			
			$(this).html("hide&nbsp;text");
			

			
		} else {
			fullheight = $('#content').height();
			$('#content').animate({
				height: 0,
				width: 750,
				left: 0,
				top: 0
			});
			
			$(this).html("show&nbsp;text");

		}
		return false;
	});
	
});