//Script by Eric Zuidema
var available = 1;

//0 = not available (under construction)
//1 = available

//Change this value to toggle the availability of the website.
if(available == 0){
	window.location = "index2.html";
}
else{
	//The website is open, stay on the current page
}
