
$(document).ready(function() { 

	
});

	function carga_video(id){
		 $.ajax({
           async:true,
           type: "GET",
           dataType: "html",
           contentType: "application/x-www-form-urlencoded",
           url:"index.php",
           data:"contenido_video/flw/"+id,
           beforeSend:inicioVideo,
           success:ResultadoVideo,
           timeout:1000
        }); 
		 
         return false;
		}
		
	function ResultadoVideo(datos)
	{
	  var x;
	  x = $("#videos");
	  x.html(datos);
	} 
	
	function inicioVideo()
	{	 
	  var x=$("#videos");
	  x.html('<img src="images/loading.gif">');
	}
		
	
	function carga_titulo(id){
		var x  = $("#top_videos_descrip");
		x.html(id);
		return false;
		}
		
		function carga_titulo2(id){
		var x  = $("#top_videos_descrip2");
		x.html(id);
		return false;
		}
	function carga_titulo3(id){
		var x  = $("#top_videos_descrip3");
		x.html(id);
		return false;
		}	
	
	function carga_titulo4(id){
		var x  = $("#top_videos_descrip4");
		x.html(id);
		return false;
		}
	
	function carga_descripcion(id){
		var x  = $("#componente_video_txt_tit");
		x.html(id);
		return false;
		}
	
	
	
	




