Behaviour.register({
    '#startVideo' : {
        onclick : function() {
            var element = document.getElementById("Video");
            element.innerHTML = '<p align="left" style="text-align: center;"><object width="515" height="330" data="assets/Video/PresMVG150.swf" type="application/x-shockwave-flash"><param name="src" value="assets/Video/PresMVG150.swf" /><param name="wmode" value="transparent" >; </object></p><h6>T&eacute;l&eacute;phone: 450-467-1710</h6>';
        }
    }
});


function printMe() {
    window.print();
    return false;
}
/*


*/

function start_alt_photos() {
    setTimeout("altPhoto();",1000);

}

function altPhoto() {
    getNextPhoto();
    setTimeout("altPhoto();",1000);
}



var photoArray = new Array(
    new Array("assets/Splash_Album/splash1.jpg", "Image de MVG"),
    new Array("assets/Splash_Album/splash2.jpg", "Image de MVG"),
    new Array("assets/Splash_Album/splash3.jpg", "Image de MVG"),
    new Array("assets/Splash_Album/splash4.jpg", "Image de MVG"),
    new Array("assets/Splash_Album/splash5.jpg", "Image de MVG"),
    new Array("assets/Splash_Album/splash6.jpg", "Image de MVG")
);


function calculNextPhoto(photoActuel) {
    nbrePhoto = photoArray.length;
    if(photoActuel >= nbrePhoto-1) {
        photoActuel=0;
    }
    else {
        photoActuel++;
    }
    return photoActuel;
}

function getNextPhoto() {
    if ( typeof getNextPhoto.currentPhoto == 'undefined' ) {
        // It has not... perform the initilization
        getNextPhoto.currentPhoto = 0;
    }
    getNextPhoto.currentPhoto = calculNextPhoto(getNextPhoto.currentPhoto);
    document.getElementById("imgSplash").src = photoArray[getNextPhoto.currentPhoto][0];
    document.getElementById("imgSplash").alt = photoArray[getNextPhoto.currentPhoto][1];

}