$j = jQuery.noConflict();

$j(document).ready(function(){
  $j(".appArea td[width='78%']").attr("width","100%");
  //$(".appArea tr:eq(1) td:not(:first)").remove();
  
  // set default quantity to 1
  $j("input[name='quantity']").val("1");
});

