function endavant_video_canal(){
		/*Mostrem els seguents i mirem si hem de deshabilitar el boto en questio*/
		offset = offset+limit;
        limit_mou = offset+limit;

		if(total <= limit_mou){
			$('#thumbs_video_canal_next').css('display','none');
			$('#thumbs_video_canal_1 table').css('margin-right','0px');
		}
		$('#thumbs_video_canal_prev').css('display','inline');
		$('#thumbs_video_canal_1 table').css('margin-left','0px');
		$.ajax({
			type:'POST',
			url:'/ajax/videos_canal.php',
			timeout:'20000',
			data: { limit_mou:limit_mou, offset:offset, total:total, idcanal:idcanal },
			success: function(data){
				$('#thumbs_video_canal_1').html(data);
			}
		
		});
		
	
	}
	
	function endarrera_video_canal(){
		/*Mostrem els seguents i mirem si hem de deshabilitar el boto en questio*/
		offset = offset-limit;
        limit_mou = limit_mou-limit;
		if(offset <= 0){
			$('#thumbs_video_canal_prev').css('display','none');
			$('#thumbs_video_canal_1 table').css('margin-left','0px');
		}
		$('#thumbs_video_canal_next').css('display','inline');
		$('#thumbs_video_canal_1 table').css('margin-right','0px');
		$.ajax({
			type:'POST',
			url:'/ajax/videos_canal.php',
			timeout:'20000',
			data: { limit_mou:limit_mou, offset:offset, total:total, idcanal:idcanal },
			success: function(data){
				$('#thumbs_video_canal_1').html(data);
			}
		
		});
	}
    
    function cargar_canal_carrousel(offset,limit, total, idcanal){
        var limit = limit;
        var limit_mou = limit;
       	var offset = offset;
        var idcanal = idcanal;
        var total = total;

            $('#thumbs_video_canal_prev').css('display','none');
			$('#thumbs_video_canal_1 table').css('margin-left','0px');
       
       $.ajax({
			type:'POST',
			url:'/ajax/videos_canal.php',
			timeout:'20000',
			data: { limit_mou:limit_mou, offset:offset, total:total, idcanal:idcanal },
			success: function(data){
				$('#thumbs_video_canal_1').html(data);
			}
		
		});
	}
    
    function show_video_portada_canal(id, urlvideo, urlfoto, alt)
    {
        if (/video-generic\.png/.test(urlfoto))
        {
            urlfoto = '';
        }

        $('#'+id).html( '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553500" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/portada_swflash.cab#version=8,0,0,0" width="344" height="258" align="middle" name="videoplayer"><param name="flashVars" value="url=' + urlvideo + '&amp;urlfoto=' + urlfoto + '&amp;arrel=/&amp;rutaxml=ajax/videogaleria.php?action%3Dxml&amp;idembed=' + urlvideo + '"/><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="true" /><param name="movie" value="/portada_swf/player.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="wmode" value="opaque" /><embed id="videoplayer" src="/portada_swf/player.swf" flashVars="url=' + urlvideo + '&amp;urlfoto=' + urlfoto + '&amp;arrel=/&amp;rutaxml=ajax/videogaleria.php?action%3Dxml&amp;idembed=' + urlvideo + '" quality="high" bgcolor="#000000" width="344" height="258" name="videoplayer" align="middle" wmode="opaque" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
        $('.peu').html(document.getElementById('preview_redisseny_'+alt).alt);
    }
