$(document).ready(function(){
  $('.voting_answer a').click(function(){
    if ($(this).attr('rel') > 0)
    {
      $.get('http://www.verkon.cz/devel/anketa-vote.php?id_item='+$(this).attr('rel'), function(data){
        $('#box_voting .content').load('http://www.verkon.cz/devel/anketa.php?id_voting='+data).fadeIn(300);
        jAlert('Děkujeme za hlasování v naší anketě', 'VERKON.CZ', function(r) {});
      });
    }
    
  });
});
