jQuery(function($) {  // put jQuery in no-conflict mode

	jQuery(document).ready(function(){ // Tells jQuery to do all the following code once the body has loaded			
		
		/* CLOSE CONTENT BOX */
		$('#content-main').prepend('<div id="close">X</div>');
		$('#close').click(function() { 
			$('#content-main').fadeOut("slow");
	  	});	
			
	}); // End of code run once body has loaded
}); // end no conflict mode