function ver_video(elemento) {
	$.ajax({
	type: 'GET',
	url: 'ver_video.php?vid_id_sec='+elemento,
	success: function(msg){
	$("#div_video").html(msg);
	}
});
}
function ver_video_apa(elemento) {
	$.ajax({
	type: 'GET',
	url: 'ver_video.php?vid_id_apa='+elemento,
	success: function(msg){
	$("#div_video").html(msg);
	}
});
}
function carga_menu(elemento) {
	$.ajax({
	type: 'GET',
	url: 'carga-menu-lateral.php?lista_inicio='+elemento,
	success: function(msg){
	$("#div_menu").html(msg);
	}
});
}

$(document).ready(function () {

	$('#leer_mas').click(function () {
	$('#contenido').fadeIn('medium');
	$('#div_leer').hide('fast');
	$('#div_leermenos').show('medium');
    });
    
   $('#feed_cerrar').click(function () {
	$('#div4').hide('medium');
    });
    
   $('#leer_menos').click(function () {
	$('#contenido').fadeOut('medium');
	$('#div_leermenos').hide('fast');
	$('#div_leer').show('medium');
    })
});
function cambiar_fondo(nueva) {
	$('body').removeClass();
   $('body').addClass(nueva); 
}
