function boneOv(id) {
	var bmap;
	var did;
	var idB = id + '-bubble';
	if (document.all){
		bmap = document.all.bmap;
		did = document.all[id];
		didB = document.all[idB];
	}else{
		bmap = document.getElementById('bmap');
		did = document.getElementById(id);
		didB = document.getElementById(idB);
	}
	bmap.style.backgroundImage= 'url(images/img_boners_greyscale-trans.png)';
	bmap.style.backgroundRepeat= 'no-repeat';
	did.style.backgroundImage= 'url(images/img_'+ id + '-color-trans.png)';
	did.style.backgroundRepeat= 'no-repeat';
	didB.style.display= 'block';
//	document.getElementById('bmap').style.backgroundImage = 'url(images/img_boners_greyscale-trans.png);';
//	document.getElementById(id).style.backgroundImage = 'url(images/img_'+ id + '-color-trans.png);';
}

function boneOu(id) {
	var bmap;
	var did;
	var idB = id + '-bubble';
	if (document.all){
		bmap = document.all.bmap;
		did = document.all[id];
		didB = document.all[idB];
	}else{
		bmap = document.getElementById('bmap');
		did = document.getElementById(id);
		didB = document.getElementById(idB);
	}
	bmap.style.backgroundImage= 'url(images/img_boners_color-trans.png)';
	bmap.style.backgroundRepeat= 'no-repeat';
	did.style.backgroundImage= '';
	did.style.backgroundColor= 'transparent';
	didB.style.display= 'none';
	//
	// document.getElementById(id).style.backgroundImage = 'url(images/img_'+ id + '-greyscale-trans.png);';
}
