pfeil_n = new Image();
pfeil_n.src = "bilder/pfeil_n.gif";
pfeil_h = new Image();
pfeil_h.src = "bilder/pfeil_h.gif";

function hoverLink(link){
	targ = "pfeil_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).src = pfeil_h.src;
}

function resumeLink(link){
	targ = "pfeil_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).src = pfeil_n.src;
}

function hoverTopCell(link){
	targ = "topcell_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).style.backgroundColor = "#96bedb";
}

function resumeTopCell(link){
	targ = "topcell_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).style.backgroundColor = "#0e6bac";
}

function hoverSideCell(link){
	targ = "sidecell_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).style.backgroundColor = "#0e6bac";
}

function resumeSideCell(link){
	targ = "sidecell_" + link.split("id=")[1];
	targ = targ.split("&")[0];
	document.getElementById(targ).style.backgroundColor = "#78B2D8";
}

