function wechsel (nm) {
if(document.images[nm].src.indexOf("_") == -1) {
document.images[nm].src='webbilder/'+ nm + '_.gif'
} else {
document.images[nm].src='webbilder/'+ nm + '.gif'
}
return
}
/*2te Variante für streetbeat, bigdrums hat fassmännchen*/
function wechsel_sb (nm) {
if(document.images[nm].src.indexOf("_") == -1) {
document.images[nm].src='../webbilder/'+ nm + '_.gif'
} else {
document.images[nm].src='../webbilder/'+ nm + '.gif'
}
return
}


function overbild (bild) {
document.images.glas.src='fotos/'+ bild
document.images.glas.style.border= '15px solid #000';
return
}

function glasbild () {
document.images.glas.src='fotos/glas.gif';
document.images.glas.style.border= 'none';
return
}
