(function($) {
  Drupal.behaviors.addScroll = { 
    attach: function (context, settings) {
      if ( $(".view-product-catalog").length ) { 
	$(".view-product-catalog .views-field-field-description .invizz p").hide();
	$(".view-product-catalog .views-field-field-description .views-label").click(function() {
		$(this).next().children("p").slideToggle(); });
      }
    }
  }
      
})(jQuery);;

