$(function() {

    $('.leftmenu').hover(
            function() {
                $(this).find('.cbrand').show();
            },
            function() {
                $(this).find('.cbrand').hide();
            });

    $('#search').bind('submit', function(){
        return $(this).find(':text').val() != '';
    })
    
})
