 function graphClick() {
    $('#graph_detail').click(function(e) {
        var pollId = $(this).attr('rel');
	    var pollQuestion = $("#poll_question").text();
        tb_show(pollQuestion ? pollQuestion : "Poll Result", "/site/all/renderers/poll.php?poll_id=" + pollId + "&box=1&fShowResults=1");
	    return false;
    });
}
						 
$(document).ready(function() {
    var pollId = $(this).attr('rel');
    $.ajax({
        type: 'GET',
        url: '/site/all/renderers/poll.php',
        success: function(res) {
            $('#poll_container').html(res);
            graphClick();
            
            $("#btn_vote").click(function(e) {
                var pollId = $("#poll_id").attr("value");
                var optId = $("input[@type=radio][@checked]").attr("value");
 
                if (optId) {
                    $.get('/site/all/renderers/poll.php', {"poll_id": pollId, "opt_id": optId}, function(res) {
                        $('#poll_container').html(res);
                        graphClick();
                    });
                } else {
                    alert("Please select a vote");
                }
                return false;
            });
        }
    });
});
