$(document).ready(function(){
	$(".step").click(function(){
		 $(this).next().slideToggle("normal");
		 return false;
	 });
});
