function getPromedio(){
	var id = document.getElementById("idgal").value;
	var query = "index.php?option=com_content&task=view&id=19416&Itemid=2277&idgal=" + id;
	jQuery("#vote_result").load(query);
}

function vote(n) {
	var id = document.getElementById("idgal").value;
	var cookieVal = jQuery.cookie('voteCHVGallery');
	var flag = true;
	if(cookieVal != null) {
		var temp = cookieVal.split('&');
		for (i=0;i<temp.length;i++) {
			if(temp[i] == 'lock'+id) {
				flag = false;
			}
		}
	}
	if(flag) {
		var mask;
			if(cookieVal == null) mask = '';
			else mask = cookieVal;
		jQuery.cookie('voteCHVGallery', mask+'lock'+id+'&', { expires: 1 });
		var query = "index.php?option=com_content&task=view&id=19416&Itemid=2277&idgal=" + id + "&v=1";
		jQuery("#vote_result").load(query, {nota: n});
	}
	else {
		alert("Lo sentimos, pero ya has votado por esta galería hoy.\nPuedes intentarlo otra vez mañana. ¡Gracias!");
	}
}
