﻿function setUpDoormat() {
  
    jQuery('.doormat_navigation .tab').mouseover(function () {
        //show doormat, align doormat with tab
        var doormat = jQuery('#doormat');
        var tab = jQuery(this);

        jQuery('#doormat .doormat-content').css("display", "none");

        jQuery('#' + tab.attr('id') + '_content').css("display", "block");

        doormat.css('left', tab.position().left);
        doormat.show();
    })

    jQuery('#header').mouseleave(function () {
        //hide the doormat
        jQuery('#doormat').hide();
    })
}
