// JavaScript Document

      function viewProducts(html) {
        simpleAjax('#mainProductsDiv',null, html);
        $('#rightColumnHeader').html("VIEW MORE");
        updateRightColumn(id);
      }
      function viewProduct(html) {
        simpleAjax('#mainProductsDiv',null, html);
        $('#rightColumnHeader').html("VIEW MORE");
      }
      function updateRightColumn(category_id) {
        if(category_id != $('#currentCategoryId').html()) {
          simpleAjax('#rightColumnContent',{action:'listProducts',id:category_id});
        }
      }
      

