
function mostradiv(div){

	$("#"+div).fadeIn("slow");
}

function escondediv(div){
	$("#"+div).fadeOut("slow");
}