jQuery(document).ready(function(){



     $("#product-list").hide();

      jQuery("#product-view").bind("click", function() {
                     jQuery('#product-list').show('slow');
                      return false;
     });
     
     
     });

