Safari 6.0.2 issue

Safari 6.0.2 issue

I am trying to troubleshoot why a simple slide down div isn't working in Safari 6.0.2; Chrome, it works fine.

  1. jQuery(document).ready(function() {
    jQuery("#contact-btn").click(function() {
      if (jQuery("#contact").is(":hidden")) {
    jQuery("#contact").slideDown("slow");
    } else {
    jQuery("#contact").slideUp("slow");
    }
      });
    });
The div is default display:none and slides down when the user clicks #contact-btn.

It's on a wordpress installation running off the Bootstrap framework.  All other jQuery works fine, it's just this little bit, and only on Safari.  The $ is replaced with jQuery since it's a wordpress installation.

You can see it in action at http://www.imaginocracy.com.

Any help is appreciated!

Thanks,

Bill