var Objgraf;
var biez_ankieta=new Array();

$(document).ready(init);

function init()
{
	sondainit();
}

function sondainit()
{
    var forma;
    $('#canv_kont').html('<canvas id="canvas" width="550" height="200">...</canvas>');
    if(document.getElementById('ankietaglosowalna')) forma=1;
    else forma=0;
    $('#legenda li').each(function(i) {
        var t=$(this).find('span').text();
        var p=$(this).find('i').text();
        var i=$(this).find('input[type=radio]').val();
        if(!i) i=0;
        biez_ankieta.push(new odpowiedz(parseInt(i),t,parseInt(p)));
    });

    if(forma) Objgraf=new graf(biez_ankieta,true,true);
    else Objgraf=new graf(biez_ankieta,false,false);
}

function dajankiete(id)
{
    self.location.href='/sonda-'+id+'-'+ankiety_page;
}

