﻿// adding notch to mainNav hover

$('#mainNavBar a').hover(
    function() {
        $(this).append('<img src="http://www.activeevents.com/images/global/mainNavNotch.png" class="mainNavNotch" border="0" />');
        $(this).find("img:last").animate({ bottom: "-5px" }, 250);
    },
    function() {
        $(this).find("img:last").animate({ bottom: "0px" }, 250, "", function() {
            $(this).find("img:last").remove();
        });
    }
)

    // add notch to active link
    // $('#mainNavBar a.active').find("img:last").animate({ bottom: "-5px" }, 250);
    