﻿$(document).ready(function() {

$(".tooltip a").hover(function() {
        $(this).next("em").stop(true, true).animate({ opacity: "show", top: "-90" }, "fast");
    }, function() {
        $(this).next("em").animate({ opacity: "hide", top: "-70" }, "fast");
    });
    $('#q').focus(function() {
            if (this.value == 'Search...')
        {
            this.value=''
        }
    });
    $('#q').blur(function() {
        if (this.value == '') {
            this.value = 'Search...'
        }
    });
});

        function Anthem_PreCallBack() { Before(); }
        function Anthem_PostCallBack() { After(); }
        
        function Before() {
            $("#backgroundPopup").css({"opacity": "0.7"});
            $("#backgroundPopup").fadeIn("slow");
        }

        function After() {
            $("#backgroundPopup").css({"opacity": "0.7"});
            $("#backgroundPopup").fadeOut("slow");
        }

