//////////////////////////////////////////////////////////
/* Appear/Disappear-Effect-Tool created by webdrache.ch */
//////////////////////////////////////////////////////////

Event.observe(window, 'load', function() {
	$$(".anweisung").each(function(element) {
		Event.observe(element, 'mouseover', function() {
			//$("ebene7").setAttribute('style','visibility: visible'); funktioniert nicht im IE!
			$("draganddrop").style.visibility = 'visible';
			//if (opera) {
				//$("draganddrop").innerHTML = 'Drag and drop funktioniert <span class="unterstrichen">nicht</span> in Opera!';				
			//}
			//else {
				$("draganddrop").innerHTML = '<span class="unterstrichen">Drag and drop</span><br />Maus gedr&#252;ckt halten, ziehen und loslassen.';
			//}
		});
		Event.observe(element, 'mouseout', function() {
			//$("ebene7").setAttribute('style','visibility: hidden'); funktioniert nicht im IE!
			$("draganddrop").style.visibility = 'hidden';
    	});
	});
});

///////////////////////////////////////
/* Ende Appear/Disappear-Effect-Tool */
///////////////////////////////////////
