jQuery.noConflict();
(function($){
	$(document).ready(function(){
		$("a.open-link").click(function () {
    			$(this).next().slideDown();
			$(this).hide();
    			return false;
    		});
    	
    		$("a.close-link").click(function () {
    			$("#main .ce_text").slideUp();
			$("a.open-link").show('slow');
			return false;
    		});
	});
})(jQuery);
