$(window).load(function(){
    if(jQuery.browser.msie){
        $(".button_grn_dynamic").css({
                'border': '0'
        }).liquidCanvas("[gradient{from:#59bc0f; to:#0e8617;}] => roundedRect{radius:"+parseInt($(".button_grn_dynamic").css("border-radius"))+"}");

        $(".score").css({
                'border': '0'
        }).liquidCanvas("[gradient{from:#93b739; to:#39710b;}] => roundedRect{radius:"+parseInt($(".score").css("border-radius"))+"}");

        $(".score_red").css({
                'border': '0'
        }).liquidCanvas("[gradient{from:#e20000; to:#b00203;}] => roundedRect{radius:"+parseInt($(".score").css("border-radius"))+"}");
        
        $(".button_violet").css({
                'border': '0'
        }).liquidCanvas("[gradient{from:#e51656; to:#8c041f;}] => roundedRect{radius:"+parseInt($(".button_violet").css("border-radius"))+"}");
    }
    if(jQuery.browser.opera){
        $(".button_grn_dynamic").liquidCanvas("[gradient{from:#59bc0f; to:#0e8617;}] => roundedRect{radius:5}");
        $(".score").liquidCanvas("[gradient{from:#93b739; to:#39710b;}] => roundedRect{radius:5}");
        $(".score_red").liquidCanvas("[gradient{from:#e20000; to:#b00203;}] => roundedRect{radius:5}");
        $(".button_violet").liquidCanvas("[gradient{from:#e51656; to:#8c041f;}] => roundedRect{radius:3}");        
    }
});

