/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
	$(".show_text").live("click",function(){
		$(this).parent().next(".text_cache").slideToggle();
	});

});
