﻿$(document).ready(function() {
 
    $(":button[name$='support_trade_search']").click(function() {
        window.location.href = "/kundendienst/" + $.URLEncode($(":text[name$='tb_trade_id']").val());
    });
        
    $(":radio[name$='rb_support']").click(function() { 
        $("div[name*='_s"+($(this).val())+"_']").show(); 
        $("div[name*='_h"+($(this).val())+"_']").hide();
        // IE CSS BUGFIX
        $(this).attr("checked", "checked");
     });
     
    $(":radio[name$='rb_trade_support']").click(function() { 
        $("div[name*='_st"+($(this).val())+"_']").show(); 
        $("div[name*='_ht"+($(this).val())+"_']").hide();
        // IE CSS BUGFIX
        $(this).attr("checked", "checked");
     });

     //$(":radio[name$='rb_support']:checked").trigger("click");
          
});
