$(document).ready(function(){
    $(".radioF").click(function(){
       var country=$(this).attr("id");
       var link='url(images/othello/'+country+'.png)';
       $('.balti').css('background-image', link);

    });
    
       $(".radioB").click(function(){
          var mas=[['url(images/othello/fonas1.png)','url(images/othello/fonas1.png)','url(images/othello/legalus4.png)'],
                   ['url(images/othello/greenglass.png)','url(images/othello/blueglass.png)','url(images/othello/legalus.png)'],
                   ['url(images/othello/magentabutton.png)','url(images/othello/yellowbutton.png)','url(images/othello/legalus1.png)'],
                   ['url(images/othello/bluebutton.png)','url(images/othello/yellowbutton.png)','url(images/othello/legalus1.png)'],
                   ['url(images/othello/metal1.png)','url(images/othello/metal1.png)','url(images/othello/legalus1.png)'],
                   ['url(images/othello/wood1.png)','url(images/othello/wood2.png)','url(images/othello/legalus3.png)']]; 
          var count=parseInt($(this).attr('id'));
          $('.lastele').css('background-image',mas[count][0]);
          $('.lastele1').css('background-image',mas[count][1]); 
          $('.legalus').css('background-image',mas[count][2]);
           


  
    });
    
    $( "#tabs" ).tabs();
    $("#game_winner").dialog({
         autoOpen : false,
         hide : 'explode',
         show : 'blind',
         modal : true,
         resizable: false    
    });
     
}); //Document ready pabaiga
