// JavaScript Document

function onSumbitmssg() {
	alert("By clicking Continue, you are confirming that you have read, understand and agree to the Terms & Conditions");
}

//Variables for Function1
var swapImage = document.getElementById("headerImage");
var imageIndex = 2;


//Function 1
function imageSwap(){
	swapImage.setAttribute("src","images/NS_images/emco_SlideNavbetaIMG" + imageIndex + ".png");
	imageIndex++;
	if(imageIndex >= 4){
		imageIndex = 1;
		}
	}

//Interval timing in milliseconds
setInterval(imageSwap,3500);



var clickNav = document.getElementsByName(""); 
var links = ["order_digital.html","order_web.html","Contact.html"];
var linkIndex = 0;

function goToNav(){
	
	}
