var home_normal = Array();
var home_hover = Array();
home_normal[1] = new Image;
home_normal[2] = new Image;
home_normal[3] = new Image;
home_hover[1] = new Image;
home_hover[2] = new Image;
home_hover[3] = new Image;
	
home_normal[1].src = "/img/home/motorboot.jpg";
home_normal[2].src = "/img/home/zeilboot.jpg";
home_normal[3].src = "/img/home/hardware.jpg";
home_hover[1].src = "/img/home/motorboot_hover.jpg";
home_hover[2].src = "/img/home/zeilboot_hover.jpg";
home_hover[3].src = "/img/home/hardware_hover.jpg";
	


function home_over(id, type) {
	img = document.getElementById("home_"+id);
	img.src = home_hover[id].src;
}

function home_out(id) {
	img = document.getElementById("home_"+id);
	img.src = home_normal[id].src;
}