$(document).ready(function(){
	/*$(function() {
		$(".foto li a").lightBox({fixedNavigation:true});
	});*/
	$("input[name=pollAnswer]").click(function(){
		$("#votePoll").show();
	});
	
	$("#votePoll").click(function(){
		var answerId = $("input[name=pollAnswer]:checked").val();
		var pollId = $(".p_anketa").attr("id").replace(/pollId/, "");
		/*alert(answerId + ' ' + pollId);
		return false;*/
		jQuery.ajax({
			type: "GET",
			url: "/api/Anketa/glasuj/" + pollId + "/" + answerId,
			success: function(msg){
				$("#div_fpPoll").html(msg).fadeIn("slow");
				$("#votePoll").fadeOut();
			}
		});
		
		return false;
	});
});
