window.onload = function() {
	if (!document.getElementById) return false;
	if (!document.getElementById("english_button")) return false;
	if (!document.getElementById("french_button")) return false;
	
	document.getElementById("english_button").onmouseover = function() {
		buttonimages = this.getElementsByTagName("img");
		buttonimages[0].src = "/images/splash/button_on_e.gif";
		return true;
	}
	document.getElementById("english_button").onmouseout = function() {
		buttonimages = this.getElementsByTagName("img");
		buttonimages[0].src = "/images/splash/button_off_e.gif";
		return true;
	}

	document.getElementById("french_button").onmouseover = function() {
		buttonimages = this.getElementsByTagName("img");
		buttonimages[0].src = "/images/splash/button_on_f.gif";
		return true;
	}
	document.getElementById("french_button").onmouseout = function() {
		buttonimages = this.getElementsByTagName("img");
		buttonimages[0].src = "/images/splash/button_off_f.gif";
		return true;
	}
}
