/*http://tympanus.net/Tutorials/FixedNavigationTutorial/*/

// http://remysharp.com/2007/04/12/jquerys-this-demystified/
// http://drupal.org/node/171213#comment-4561598
(function ($) {
    $(document).ready(function () {
        var pathname = window.location.pathname;
        var menuIsVisible = true;
        var contactIsVisible = false;
        var contactHeight = $('div#zone-header-wrapper').height();
        var delta = (contactHeight - 58) * -1;
        if ($('div#messages div.error').length) {
            $('div#zone-header-wrapper').show();
        }
        $('div#contact-border').click(
            function (event) {
                $('div#zone-header-wrapper').slideToggle();
            }
        );
    });
})(jQuery);;

