﻿//<![CDATA[
$(document).ready(function() {
    function addMega()
    { 
        $(this).addClass("hovering"); 
        $(this).data("hoverClass", $(this).children("a").attr("class") + "Selected");
        $(this).children("a").addClass($(this).data("hoverClass"));
    }
    
    function removeMega()
    { 
        $(this).removeClass("hovering"); 
        $(this).children("a").removeClass($(this).data("hoverClass"));
    }

    var megaConfig = {
         interval: 0,
         sensitivity: 6,
         over: addMega,
         timeout: 0,
         out: removeMega
    };

    $("li.menuItem").hoverIntent(megaConfig)          
});

function searchBox(obj)
{
    if (obj.value == 'City, State or Zip')
    {
        obj.value = '';
    } 
    else if (obj.value == '')
    {
        obj.value = 'City, State or Zip';
    }
}
//]]>
