/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    * Filename: ida.js
    * Website: http://www.groupe-ida.com
    * Author: Conseil.Net
    * Description: javascript 

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


/* Activation rollover bouton homepage
___________________________________________________ */
function rollover(father,src){
	var img=father.getElementsByTagName('img');
	if(img.length>0){
		img=img[0];
		if(src==''){
			img.style.display='none';
		}else{
			img.style.display='inline';
			img.src=src;
		}
	}
}