// updates to support opacity challenged browers
   $(document).ready(function(){
    //IE8 doesn't support opacity like any other browser :-(
    if (jQuery.support.opacity) {
        $("body").fadeTo("normal", 0.1);
     } else {
        //alternative hide
        $("body").css({ 
        display: "none"
        });
    }
    setTimeout('do_age_confirm()', 500);
   });

  function do_age_confirm() {
         var age_confirm = confirm("The use of the Green Goblin Cider website requires that you are over the legal drinking age for your country of residence.\n\nPlease confirm that you are over the legal drinking age by clicking OK. If you are under age please click Cancel. Thanks.");
         if (age_confirm === true) {
            if (jQuery.support.opacity) {
                //unfade screen
                $("body").fadeTo("slow",1);
            } else {
                $("body").css({ 
                display: "block" 
                });
            }
         } else {
            window.location="http://www.greengoblincider.com/sorry.htm";
         }
    }
