$(document).ready(function(){

	$(".cvl1_open").click(function(){
		$("#cvl1").fadeIn("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".cvl2_open").click(function(){
		$("#cvl2").fadeIn("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".cvl3_open").click(function(){
		$("#cvl3").fadeIn("slow");
		$(this).toggleClass("active"); return false;
	});
	$(".cvl4_open").click(function(){
		$("#cvl4").fadeIn("slow");
		$(this).toggleClass("active"); return false;
	});
	$(".cvl5_open").click(function(){
		$("#cvl5").fadeIn("slow");
		$(this).toggleClass("active"); return false;
	});




	
	$(".cvl1_close").click(function(){
		$("#cvl1").fadeOut("slow");
		$(this).toggleClass("active"); return false;
	});
	
	$(".cvl2_close").click(function(){
		$("#cvl2").fadeOut("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".cvl3_close").click(function(){
		$("#cvl3").fadeOut("slow");
		$(this).toggleClass("active"); return false;
	});
	$(".cvl4_close").click(function(){
		$("#cvl4").fadeOut("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".cvl5_close").click(function(){
		$("#cvl5").fadeOut("slow");
		$(this).toggleClass("active"); return false;
	});

       
 });