var productUrl = 'modules/product/product.engine.php';
function productFeatures(){
         $.get(productUrl,{action:'features'},
      function(data){
        $("#web-container").fadeTo(duration,'0.2');
        $("#web-container").html(data);
        $("#web-container").fadeTo(duration,'1.0');
      });
}