jQuery.noConflict();

jQuery(document).ready(function($){
	$("a.closebox").click(function(){
		
		 $(this).parent().animate({
			opacity: 0.00,
			left: '-=300'
			
		  }, 500, function() {
			
		  $("#main-content").prepend('<a href="#" class="show-tab">Show &raquo;</a>');
		  
		  $("a.show-tab").click(function(){
			  
			  $("#text-internal").animate({
				    opacity: 1.00,
					left: '0'
					
			   }, 500, function() {
				   
			   });
			   
			   $(this).fadeOut(500);
			  
		  });
			
		});
	
	return false;
	
	})
});