/*

Acco (Accordion) for SimpleJS

------------------------------

Acco is developed by Christophe "Dyo" Lefevre (http://bleebot.com/)

*/

var AccoCache = new Array();

function $AccoInit(str) {

   accomax = str.match(/[;]/g).length;

   for (var i = 0; i < accomax; i++) {

      pos = str.indexOf(";");

      AccoCache.push(str.substring(0, pos));

      str = str.substring(pos + 1, str.length);

      }

   }

function $accopushp(accobjnum, elastic) {

   for (var i = 0; i < AccoCache.length; i++) {

      if (i != accobjnum) {

          //if(document.getElementById("p"+i).src=='http://localhost/@bsite/images/up.png')

          //{

          //alert(document.getElementById("p"+i).src);

          $blindup(AccoCache[i], 200);

           document.getElementById("extrait"+i).style.display="block";

          //} 

         // else alert('else');

        

         }

      else {

         if (elastic == true) STO("$toggle('" + AccoCache[i] + "', 200)", 400);

         else

          $toggle(AccoCache[i], 200);

         }

      }

   }

   /////////////////////////

   function $accopush(accobjnum, elastic) {

   for (var i = 0; i < AccoCache.length; i++) {

      if (i != accobjnum) {

         $blindup(AccoCache[i], 200);

         }

      else {

         if (elastic == true) STO("$toggle('" + AccoCache[i] + "', 200)", 400);

         else

          $toggle(AccoCache[i], 200);

         }

      }

   }

    function $plusmoinstest(str,ext) {

    var obj = document.getElementById(str);

    alert(obj.src);

    if (obj.src=='http://www.business-development-center.com/images/up.png') alert('up');//obj.src='http://localhost/@bsite/images/down.png';

    if (obj.src=='http://www.business-development-center.com/images/down.png') alert('down'); //obj.src='http://localhost/@bsite/images/up.png';

     //obj.src='http://localhost/@bsite/images/down.png';

  

     

     

    

    }

    /////////////////////////////////////

    function $plusmoins(str,ext) {

    var obj = document.getElementById(str);

     if(obj.src=="http://www.business-development-center.com/images/down.png") 

     {

     for(var i=0; i<21; i++)

     {

     if(str!="p"+i)

     {

     if(document.getElementById("p"+i).src=='http://www.business-development-center.com/images/up.png')

     {

     document.getElementById("p"+i).src='http://www.business-development-center.com/images/down.png';

     }

     } 

     else

     var nb=i;

     }

     document.getElementById(str).src='http://www.business-development-center.com/images/up.png';

     document.getElementById(ext).style.display="none";

     

     }

     

     

     else 

     {

     document.getElementById(str).src='http://www.business-development-center.com/images/down.png';

     document.getElementById(ext).style.display="block";

     }

     

    }