function getVideo(caminho,pagina,tamanho){
	document.getElementById('videoInfo').innerHTML = "<img src='"+caminho+"images/loadingAnimation.gif' style='margin:80px 0px 0px 310px;' />";
	$(function() {
		$.ajax({
		type: "GET",
		url: caminho+"includes/videos/videos-competicoes.asp?pagina="+pagina+"&tamanho="+tamanho+"&ts="+(new Date()).getTime(),
		dataType: "html",
		success: function(result) {
			document.getElementById('videoInfo').innerHTML = result;
			resgataPaginacao(caminho);
		}});
	});
}

function paginacao(caminho,pagina,tamanho){
	if(pagina==null)pagina=1;
	if(tamanho==null)tamanho=0;
//	tags = limpaTags(document.getElementById('tagsSelecinonadas').innerHTML);
	getVideo(caminho,pagina,tamanho);
}

function resgataPaginacao(caminho){
	$(function() {
		$.ajax({
		type: "GET",
		url: caminho + "includes/videos/pagina-videos-competicoes.asp?caminho="+caminho+"&ts="+(new Date()).getTime(),
		dataType: "html",
		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
		success: function(resultado) {
			document.getElementById('paginacao').innerHTML = resultado;
		}});
	});
}
