// JavaScript Document

/*Event.observe(window, 'load', init);

function init() {
	Event.observe('ima','mouseover',wechsel);	
	Event.observe('ima','mouseover',move1);
	Event.observe('ima','mouseout',wechsel2);
	Event.observe('ima','click',wechsel3);
} 
function wechsel(e){
	$('ima').className="hover";
	}

function wechsel2(e){
	$('ima').className="normal";
	}

function wechsel3(e){
	$('ima').className="out";
	}


move1=function (e){
		$('arrow').className="arrow2";
	}*/