// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function AsignarVotoTop(idep, idp){
	$.post('ajax/ajax_asignar_voto_pique.asp', 
		   {idep:idep,idp:idp},
		   function(data){
				if (data == 'OK'){
					RefrescarCapaMurga(idep);
				}
	});
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function RefrescarCapaMurga(ep){
	$('#' + ep).html('recargando...');
	
	$.post('ajax/ajax_contenido_bloque_murga.asp',  
		   {ep:ep},
		   function(data){
				$('#' + ep).html(data);
				$('#' + ep + ' .imagen_lista_p img').each(function(){$(this).AjustarImagen(75,75);});

				Cufon.replace('#' + ep + ' .datos_selec_lista_p');
	});
}
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
