$(function(){    
    $('#search_item').focus(function(){
        $('#search_item').val('');
    });
    $('#search_item').blur(function(){
        $('#search_item').val('busca');
    });

//     $('.dropdown').each(function () {
//        $(this).parent().eq(0).hover(
//            function () {
//                var current = $('.dropdown:eq(0)', this);
//                current.fadeIn(300);
//            },
//            function () {
//                var current = $('.dropdown:eq(0)', this);
//                current.fadeOut(200);
//            }
//        );
//    });
    function addMega(){
        $(this).addClass("hovering");
    }

    function removeMega(){
        $(this).removeClass("hovering");
    }

    var megaConfig = {
        interval: 50,
        sensitivity: 4,
        over: addMega,
        timeout: 50,
        out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig)



});

