$(document).ready(function(){
	$('.linkVotar').click(function(event){
		event.preventDefault();
		var options = {
			type: 'GET',
			url: $(this).attr('href'),
			async: false,
			beforeSubmit: showRequest($(this).attr('rel'))
		};

		var newNvideo = $.ajax(options).responseText;
		$('#contenedor' + $(this).attr('rel')).html(newNvideo);

		return false;
	});

});

function showRequest(param){
	$('#cargando' + param).one('ajaxStart',function(){
		$('#cargando' + param).show();
		$('#video'+ param).hide();
	}).one('ajaxStop',function(){
		$('#cargando' + param).hide();
		$('#video'+ param).show();
	});
}
