function categories_ShowAll() {
    $('#most_popular_categories').hide();
    $('#featured_vendors').hide();
    $('#all_categories').show(400);
}
function categories_ShowMostPopular() {
    $('#all_categories').hide();
    $('#most_popular_categories').show(400);
    $('#featured_vendors').show(400);
}
