$(document).ready(function(){	
	
//Hide the box		   
	$("#showBox").hide();

//Sets up the click function and speed	
	$("#btn-slide").click(function(){
	$("#showBox").slideToggle("slow",function(){

//Toggles link text between open and close	
//=="Open" is vital in order to close the box
	($("#btn-slide").html()=="about me")?$("#btn-slide").html("close x"):$("#btn-slide").html("about me");
	});
	return false;	
});	
  
});

