if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
    var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number

    if (ieversion>9) {
        $(document).ready(function(){
            $("#banner").corner();
            $(".mainNavLink").corner("bottom");
            $(".mainNavLinkSelected").corner("bottom");
            $("#claimFormOuterDiv").corner();
            $("#claimFormDiv").corner();
            $("#homeFormSubmitStart").corner();
            $(".homeFormSubmitEnd").corner();
            $("#homeFormSubmitSend").corner();
            $("#homeFormSubmitSendNarrow").corner();
            $("#searchInput").corner();	
            $(".homeClaimBottomButton").corner();
            $("#twitter").corner();
            $("#narrowOuterFormDiv").corner();
            $(".narrowFormDiv").corner();
            $("#narrowFormSubmit").corner();
            $("#trackerFormOuter").corner();
            $("#trackerForm").corner();
            $("#claimTrackerSubmit").corner();
            $("#contactFormSubmit").corner();
            $("#contactFormOuter").corner();
            $("#contactForm").corner();
            $(".comments").corner();
            $("#commentSubmit").corner();
        });
    }
}
else {
    $(document).ready(function(){
        $("#banner").corner();
        $(".mainNavLink").corner("bottom");
        $(".mainNavLinkSelected").corner("bottom");
        $(".claimFormOuterDiv").corner();
        $(".claimFormDiv").corner();
        $("#homeFormSubmitStart").corner();
        $(".homeFormSubmitEnd").corner();
        $("#homeFormSubmitSend").corner();
        $("#homeFormSubmitSendNarrow").corner();
        $("#searchInput").corner();	
        $(".homeClaimBottomButton").corner();
        $("#twitter").corner();
        $("#narrowOuterFormDiv").corner();
        $(".narrowFormDiv").corner();
        $("#narrowFormSubmit").corner();
        $("#trackerFormOuter").corner();
        $("#trackerForm").corner();        
        $("#claimTrackerSubmit").corner();
        $("#contactFormSubmit").corner();            
        $("#contactFormOuter").corner();
        $("#contactForm").corner();
        $(".comments").corner();
        $("#commentSubmit").corner();
    });
}

