// Cornerstone.js
window.onload = initiateFunctions;


//var homeImages = new Array("Images/GeneralCabinImage.jpg", "Images/HomeImageMountains.jpg", "Images/RotateFamily03.jpg", "Images/RotateCabin02.jpg", "Images/RotateMountainSide.jpg");
							
//var thisHomeImage = 0;
//var stylePrefix = "url(";
//var styleSuffix = ")";


function initiateFunctions() {

	openInNewWindow();

    //alert("rotateBoth: 1");

	//if (document.getElementById("imageHeader") != null)
	//{
	//    rotateImages();
	//}
	
}

// openInNewWindow() - to open the footer and other sites in a new window
function openInNewWindow() {

    var links = document.getElementsByTagName('a');
    for (var i=0;i < links.length;i++) {
        if (links[i].className == 'new-window') {
            links[i].onclick = function() {
                window.open(this.href);
                return false;
            };
        }
    }

}

// rotateImages - to rotate the images on the home page
function rotateImages() {

	if (thisHomeImage == homeImages.length) {
	
		thisHomeImage = 0;
		
	}
	document.getElementById("imageHeader").src = homeImages[thisHomeImage];
	//document.getElementById("headerTable").style.backgroundImage = stylePrefix + homeImages[thisHomeImage] + styleSuffix;
	
	setTimeout("rotateImages()", 10 * 1000);
	thisHomeImage++;
	
}


