  $(document).ready(function() {
    $('#op div').hover(
    function(){
      $(this).css({background: '#2FA136', color:'#FFF'});
    },
    function(){
      $(this).css({background: '#FFF', color: '#060'});
    }
    ).click(function(){
      $('#sel div').html('<img src="'+$(this).find('img').attr('src')+'"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + $(this).text());
      $('#op').hide();
      $('#id_val_stat').val($(this).find('input').val());
    });
    
    $('#sel').click(function(){
      $('#op').toggle();
    });
    
  });

