
function get_new_products(){
   jQuery.get( '/', { action: "new_products", p : 47 },refresh_products, "html" );
}

function refresh_products(data, textStatus){
   jQuery('#horizon_horticulture .products').html(data);
}

jQuery(document).ready(
    function(){
    jQuery('.refresh').click(get_new_products);
    jQuery('#nav .page-item-47').css('display', 'none');
    jQuery('.pages .page-item-47').css('display', 'none');
});
