$(function() {

 $(function () {
    if ($.browser.msie) {
        $('input:radio').click(function () {
            this.blur();
            this.focus();
        });
    }
});


 function displayPaySelect() { // vrati hodnotu atributu text a vypise v div paynote
      var singleValues = $("input.pay_radio:checked").attr("text");
      $('#paynote').css({height:"200px",backgroundColor:"#FFDDAA"}).html(singleValues);
    }
 function displayTransportSelect() { // vrati hodnotu atributu text a vypise v div transportnote
      var singleValues = $("input.transport_radio:checked").attr("text");
      //alert(singleValues);
      $('#transportnote').html(singleValues);
    }

 displayPaySelect();
 displayTransportSelect();

  $('.transport_radio').change(function(){
    var element = $(this);

    var text = element.attr("text");

    $('#transportnote').html(text);
  });

  $('.pay_radio').change(function(){
    var element = $(this);
    var text = element.attr("text");
    $('#paynote').css({height:"200px",backgroundColor:"#FFDDAA"}).html(text);
  });

 })
