$(function() {
	
	// setup exposing
	$("#ball").click(function()  {
			
		var el = $(this);
		
		el.expose({
	
			// grow the ball when exposing starts
			onBeforeLoad: function() {
				el.animate({width: 298});
			},
	
			// shrink the ball when exposing closes
			onBeforeClose: function() {
				el.animate({width: 130});
			}
		}); 
	});

});