// JavaScript Document
$(document).ready(function(){

	$("#change_link").click(function(){
		$("#text").slideToggle("slow");
	});	
	 
});