function abrirareas1() {
	
		if($("#areas1").css('display')=='none'){
			$("#areas1").fadeIn("slow");
		}
		else{
			$("#areas1").fadeOut("fast");
		}
}

function abrirareas2() {
	
		if($("#areas2").css('display')=='none'){
			$("#areas2").fadeIn("slow");
		}
		else{
			$("#areas2").fadeOut("fast");
		}
}	

function abrirareas3() {
	
		if($("#areas3").css('display')=='none'){
			$("#areas3").fadeIn("slow");
		}
		else{
			$("#areas3").fadeOut("fast");
		}
}	
	


function abrircv02() {
	if($("#areas2").height()<130){
		$("#areas2").animate( { height:"1300px" },500);
	}
	else{ 
		$("#areas2").height(120);
	}
	
}

function abrircv03() {
	if($("#areas3").height()<130){
		$("#areas3").animate( { height:"1330px" },500);
	}
	else{ 
		$("#areas3").height(120);
	}
	
}

