/*var rand1 = 0;
var useRand = 0;

images = new Array;
images = new Array;
images[1]= "url(img/avion22.jpg)  no-repeat center 77px #313945 ";
images[2]= "url(img/pilote.jpg)   no-repeat center 77px #313945 ";
images[3]= "url(img/avion12.jpg)  no-repeat center 77px #313945 ";
images[4]= "url(img/p1.jpg)  no-repeat center 77px #313945 ";
images[5]= "url(img/p2.jpg)  no-repeat center 77px #313945 ";
images[6]= "url(img/p3.jpg)  no-repeat center 77px #313945 ";
images[7]= "url(img/p4.jpg)  no-repeat center 77px #313945 ";
images[8]= "url(img/p5.jpg)  no-repeat center 77px #313945 ";



function swapPic() {
window.setTimeout( "swapPic()", 10000); 
var imgnum = images.length - 1;
do {
var randnum = Math.random();
rand1 = Math.round((imgnum - 1) * randnum) + 1;
} while (rand1 == useRand);
useRand = rand1;
document.body.style.background= images[useRand];
}


*/
	$(document).ready(function(){
		//  Initialize Backgound Stretcher	   
		$(document).bgStretcher({
			images: [
										    'img/str1.png',
											'img/str2.png',
											 'img/str3.png',
											 'img/str4.png',
											 'img/str5.png',
											 'img/str6.png',
											 'img/str7.png',
													 
												],
			slideShow:true,
			nextSlideDelay:10000,
			slideShowSpeed:2000
		});
	});
