this.document.title = "Flugträumer - Homepage.";

// tableau des images à précharger
images = new Array();
images[0]="../homepage/img/homepage2.jpg";
images[1]="../homepage/img/galaxie.gif";
images[2]="../homepage/img/home_start.gif";
images[3]="../homepage/img/home_contacts.gif";
images[4]="../homepage/img/home_news.gif";
images[5]="../homepage/img/home_start_mouse.gif";
images[6]="../homepage/img/home_contacts_mouse.gif";
images[7]="../homepage/img/home_news_mouse.gif";
preload(images);

function start_home_on() {	
	if (document.getElementById){
		document.getElementById("start").src = "../homepage/img/home_start_mouse.gif";
	}else if (document.all){
		document.all.start.src =  "../homepage/img/home_start_mouse.gif";
	}
}
function start_home_off() {	
	if (document.getElementById){
		document.getElementById("start").src =  "../homepage/img/home_start.gif";
	}else if (document.all){
		document.all.start.src = "../homepage/img/home_start.gif";
	}
}
function contact_home_on() {	
	if (document.getElementById){
		document.getElementById("contact").src = "../homepage/img/home_contacts_mouse.gif";
	}else if (document.all){
		document.all.contact.src = "../homepage/img/home_contacts_mouse.gif";
	}
}
function contact_home_off() {	
	if (document.getElementById){
		document.getElementById("contact").src = "../homepage/img/home_contacts.gif";
	}else if (document.all){
		document.all.contact.src = "../homepage/img/home_contacts.gif";
	}
}

function news_home_on() {	
	if (document.getElementById){
		document.getElementById("news").src = "../homepage/img/home_news_mouse.gif";
	}else if (document.all){
		document.all.news.src = "../homepage/img/home_news_mouse.gif";
	}
}
function news_home_off() {	
	if (document.getElementById){
		document.getElementById("news").src = "../homepage/img/home_news.gif";
	}else if (document.all){
		document.all.news.src = "../homepage/img/home_news.gif";
	}
}