$(document).ready(function()
{
  $.translate(function()
  {
    function translateTo(destLang)
    {
      $('body').translate('pl', destLang,
      {
        toggle: true,
        walk: false
      });
    }

    if($.cookie('trans') != null && $.cookie('trans') != 'pl')
    {
      $('#'+$.cookie('trans')+' img').addClass('hover');
      translateTo($.cookie('trans'));
    }
  });
});
