$(document).ready(function() {
	$('a#clicker').click(function() {         
		  $('#box').animate({
               width: 'toggle'
               }, 220
		  );						
///	$("#box").css({"display": "inline", "float": "left"});
		  
	});
     $('#close-button').click(function() {								   
          $('#box').animate({
               width: 'toggle'
               }, 220
		  );	  
	 }); 
});

