/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function toggle(e,img){
    /*if( document.getElementById(e).style.display != 'none' ){
    	document.getElementById(img).src=chemin+'/images/fleche1.jpg';
    }
    else{
        document.getElementById(img).src=chemin+'/images/fleche2.jpg';
    }*/
    $("#"+e).slideToggle("slow");
}
