$(document).ready(function(){
		$(".slide-open").click(function(){
			$(this).parents(".slide").find(".slide-div").slideToggle("slow");
			$(this).next(".slide-close").toggleClass("active");
			$(this).toggleClass("active");
			return false; 
		});
		$(".slide-close").click(function(){
			$(this).parents(".slide").find(".slide-div").slideToggle("slow");
			$(this).prev(".slide-open").toggleClass("active");
			$(this).toggleClass("active");
			return false; 
		});
		$(".slide-div .view .btn-edit").click(function(){
			$(this).parents(".view").slideToggle("slow");
			$(this).parents(".slide-div").find(".edit").slideToggle("slow");
			return false; 
		});
		$(".slide-div .edit .btn-cancel").click(function(){
			$(this).parents(".edit").slideToggle("slow");
			$(this).parents(".slide-div").find(".view").slideToggle("slow");
			return false; 
		});
	});

