// Global JavaScript for Sendal UK

function initCatDesc() {
    $("#categories ul li a").hoverIntent({
    timeout: 150, 
    over: function() {if( $(this).parents("li").find("p").html().length > 0 )
                            $(this).parents("li").find("p").fadeIn(200);
                     },
    out: function() {$(this).parents("li").find("p").fadeOut(200);}
    
    });
}

function initProdSearch() {
    $("#searchForm .productSearch").focus(function() {
        $(this).val("");
    });
}
