<!-- For the following code to work, jquery.js should be included in the page -->
	$(document).ready(function(){
		$('#box_did').hide(); // Hide the divDone on load.
		
		// attach the click functionality to the 'showWhatDoIDo' div link.
		$('#showWhatDoIDo').click(function(){
			//call the click event on div 'closeme'
			$('#box_did > #closeMe').click();
		});
		
		// on clicking [x] on div, close it.
		$('#box_did > #closeMe').click(function()
			{
				$(this).parent().toggle(500);
			})
		});
	