function voteQuestion(id)
{
	var questionsLatestInterestings = $('#questionsLatestInterestings_' + id);
	var questionsNoAnswerInterestings = $('#questionsNoAnswerInterestings_' + id);
	var questionsPopularInterestings = $('#questionsPopularInterestings_' + id);
	questionsLatestInterestings.html('<img src="' + SITE_URL + 'images/loader.gif" height="16" width="16" /> гласуване...');
	questionsNoAnswerInterestings.html('<img src="' + SITE_URL + 'images/loader.gif" height="16" width="16" /> гласуване...');
	questionsPopularInterestings.html('<img src="' + SITE_URL + 'images/loader.gif" height="16" width="16" /> гласуване...');

	$.ajax({
		url: SITE_URL + 'ajax/',
		data: 'action=voteQuestion&id=' + id,
		dataType: 'json',
		type: 'post',
		success: function (j) {
			if (j.result == true) {
				questionsLatestInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
				questionsNoAnswerInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
				questionsPopularInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
			} else {
				jAlert(j.message, SITE_NAME);

				questionsLatestInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star_off.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
				questionsNoAnswerInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star_off.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
				questionsPopularInterestings.html(j.interestings + ' <img src="' + SITE_URL + 'images/icons/star_off.png" alt="star" /><a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');">Интересно!</a>');
			}
		}
	});
}

function voteAnswer(id, thumb, page)
{
	var answersLatestRating = $('#answersLatestRating_' + id);
	var answersRatingRating = $('#answersRatingRating_' + id);
	answersLatestRating.html('<img src="' + SITE_URL + 'images/loader.gif" height="16" width="16" /> гласуване...');
	answersRatingRating.html('<img src="' + SITE_URL + 'images/loader.gif" height="16" width="16" /> гласуване...');

	$.ajax({
		url: SITE_URL + 'ajax/',
		data: 'action=voteAnswer&id=' + id + '&thumb=' + thumb,
		dataType: 'json',
		type: 'post',
		success: function (j) {
			if (j.result == true) {
				if (page != null && page == 'question') {
					answersLatestRating.html('<div>' + j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a></div><div>' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a></div>');
					answersRatingRating.html('<div>' + j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a></div><div>' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a></div>');
				} else {
					answersLatestRating.html(j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a>&nbsp;&nbsp;' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a>');
					answersRatingRating.html(j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a>&nbsp;&nbsp;' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a>');
				}
			} else {
				jAlert(j.message, SITE_NAME);

				if (page != null && page == 'question') {
					answersLatestRating.html('<div>' + j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a></div><div>' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a></div>');
					answersRatingRating.html('<div>' + j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a></div><div>' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a></div>');
				} else {
					answersLatestRating.html(j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a>&nbsp;&nbsp;' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a>');
					answersRatingRating.html(j.up_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_up.png" alt="Добър" /></a>&nbsp;&nbsp;' + j.down_votes + ' <a href="javascript:void(0);" onclick="jAlert(\'' + j.message + '\', \'' + SITE_NAME + '\');"><img src="' + SITE_URL + 'images/icons/thumb_down.png" alt="Лош" /></a>');
				}
			}
		}
	});
}