'JCMS.plugin.jcutil'.namespace({
	showHideListCustomers : function (listId, linkId){
			if(!$(linkId).hasClassName('expanded')){
				new Effect.BlindDown(listId, {duration:1});
				$(linkId).addClassName('expanded');
			}
			else{
				new Effect.BlindUp(listId, {duration:1});
				$(linkId).removeClassName('expanded');
			}
		}
});
/*
'JCMS.plugin.jcutil'.namespace({
  toggleListCustomer: function(pubId) {
  
    var customerAbstract = $("abstract_"+pubId);
    var customerContent = $("content_"+pubId);
    
    if (customerContent.style.display == "none") {
      Effect.BlindUp(customerAbstract, {afterFinish: function(){ Effect.BlindDown(customerContent); $("hideContent_"+pubId).show(); $("showContent_"+pubId).hide();}});
      //$("hideContent_"+pubId).show();
      //$("showContent_"+pubId).hide();
      //$("hideContent_"+pubId).toggle();
      //$("showContent_"+pubId).toggle();
    } else {
      Effect.BlindUp(customerContent, {afterFinish: function(){ Effect.BlindDown(customerAbstract); $("showContent_"+pubId).show(); $("hideContent_"+pubId).hide();}});
      //$("showContent_"+pubId).show();
      //$("hideContent_"+pubId).hide();
      //$("showContent_"+pubId).toggle();
     // $("hideContent_"+pubId).toggle();
    }
    return false;    
  }
});
*/
