
function Initialize() {
	PreloadImages();
	readCookie();
}


function Toggle(ImageName) {
	if(document.images[ImageName].src.indexOf("_i.gif") > -1) {
		var NewImage = document.images[ImageName].src.substring(document.images[ImageName].src.indexOf("images/") + 7,document.images[ImageName].src.indexOf("_i.gif")) + "_a.gif";
		document.images[ImageName].src = "images/" + NewImage;
	}
	else {
		var NewImage = document.images[ImageName].src.substring(document.images[ImageName].src.indexOf("images/") + 7,document.images[ImageName].src.indexOf("_a.gif")) + "_i.gif";
		document.images[ImageName].src = "images/" + NewImage;
	}
}



// Preload Rollover Images
function PreloadImages() {
	for (var i=0; i<document.images.length; i++) {
		if(document.images[i].src.indexOf("_i.gif") > -1) {
			var RolloverName = document.images[i].src.substring(document.images[i].src.indexOf("images/") + 7,document.images[i].src.indexOf("_i.gif")) + "_a.gif";
			var ThisImage = new Image;
			ThisImage.src = "images/" + RolloverName;
		}
	}
}




//////////////////////////////////////////////////////////////////
// Calendar Popup Window Function.


function popupWindow (url,winName,details) {
	var showWindow = window.open(url,winName,details);
}

///////////////////////////////////////////////////////////////////



function toggleLanguage() {
		var english = document.getElementById('english').style;
		var spanish = document.getElementById('spanish').style;
		

		if (document.getElementById) {
			if (english.display != "none") {		
				english.display = "none"
				spanish.display = "block"
				
				var the_name = "spanish";
   				var the_cookie = "language=" + the_name + ";";
    			var the_cookie = the_cookie + "path=/;";
    			var the_cookie = the_cookie + "domain=chachoramirez.com;";

				document.cookie = the_cookie;
	
			} else {
				english.display = "block"
				spanish.display = "none"
				
				var the_name = "english";
   				var the_cookie = "language=" + the_name + ";";
    			var the_cookie = the_cookie + "path=/;";
    			var the_cookie = the_cookie + "domain=chachoramirez.com;";

				document.cookie = the_cookie;
			}
		
		}
		
}

		


function readCookie() {
	var english = document.getElementById('english').style;
	var spanish = document.getElementById('spanish').style;
	var the_cookie = document.cookie;
	var broken_cookie = the_cookie.split("=");
	var the_value = broken_cookie[1];

	
	if (!the_cookie) {
		var the_value = "english";
	}
	
	if (document.getElementById) {
		if (the_value == "english") {
			english.display = "block"
			spanish.display = "none"
		} else {
			english.display = "none"
			spanish.display = "block"
		}
		
	}


}
