/**
 * @author Jean
 */
function actButton(id){
	document.getElementById(id).src = "img/"+id+"-02.jpg";
}
function deactButton(id){
	document.getElementById(id).src = "img/"+id+"-01.jpg";
}
function changeArrow(id){
	if(document.getElementById(id).src.indexOf("unten")>=0){
		document.getElementById(id).src = "img/pfeil-oben.jpg";
	}
	else{
		document.getElementById(id).src = "img/pfeil-unten.jpg";
	}
}
function makeColor(id){
	document.getElementById(id).src = "img/referenzen/"+id+".jpg";
}
function makeBlackWhite(id){
	document.getElementById(id).src = "img/referenzen/"+id+"-s.jpg";
}
function makeColorL(id){
	var noL = id.substring(1);
	document.getElementById(id).src = "img/referenzen/"+noL+".jpg";
}
function makeBlackWhiteL(id){
	var noL = id.substring(1);
	document.getElementById(id).src = "img/referenzen/"+noL+"-s.jpg";
}
function makeColorLogo(id){
	document.getElementById(id).src = "img/kunden/"+id+".jpg";
}
function makeBlackWhiteLogo(id){
	document.getElementById(id).src = "img/kunden/"+id+"-2.jpg";
}
function changeLink(id){
	document.getElementById(id).firstChild.nodeValue = "Projekte ansehen";
}
function changeLinkBack(id, text){
	document.getElementById(id).firstChild.nodeValue = text;
}

