// JavaScript Document
jQuery(function(){
				jQuery("#pur_flow").toggle(function(){
													jQuery(this).next("p").slideDown();
													},function(){
													jQuery(this).next("p").slideUp();	
													});
				});