// JavaScript Document

  $(document).ready(function(){
  
  

		$('a').click(function(){
		
		$('#content1').show('slow');

});

$('a#close').click(function(){
	$('#content1').hide('slow');
	})

  });
