/*debug de lien - image index*/

function cheque()
{
window.location.href=('http://www.cheque-ethique.blogspot.com');
}

/*bannière dynamique, affichage via Jquery*/

//onload
$(document).ready(function(){

			/*liste des images à afficher, chaque image doit être sous la forme<li><img /></li>*/
			
			//$("#banniere_liste").append('<li><img	src="./images/ban2.jpg" width="" height="" /></li>');
			
			var listes = new Array(		
'<li><img src="./images/index_02_1.jpg" width="800px" height="140" /></li>',
'<li><img src="./images/index_02_2.jpg" width="800px" height="140" /></li>'

			/*'<li><img src="./images/image_/DH000037 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000040 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000054 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000064 (Small).jpg" width="200px" height="140" /></li>',

			'<li><img src="./images/image_/DH000054 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000055 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000094 (Small).jpg" width="200px" height="140" /><img src="./images/image_/DH000099 (Small).jpg" width="200px" height="140" /></li>'
*/
			)
	
			$("#banniere_liste").append(listes[0],listes[1]);


			$("#banniere_liste").innerfade({
				speed: 2500,//2500
				timeout: 5000,//5000
				type: "random"
			});
		});
		
