//mouse Over Effekt für den Service-Platzhalter
function changePlatzhalter(direction) {
	
	if(direction == '1') {
		//graues bild einbinden
		document.getElementById('platzhalter-img').src = '/fileadmin/images/layout/serviceanimation2.gif';
	} else {
		//weisses bild einbinden
		document.getElementById('platzhalter-img').src = '/fileadmin/images/layout/serviceanimation.gif';
	}
}