<!--
var gelb;
var gruen;
var rot;
var blau;
var out;

	function preload()
	{
		gelb=new Image();
		gruen=new Image();
		rot=new Image();
		blau=new Image();
		out=new Image();
		footer_on=new Image();
		footer=new Image();
		
		gelb.src='/img/buttons/hauptm_rechteck_gelb.gif';
		gruen.src='/img/buttons/hauptm_rechteck_gruen.gif';
		rot.src='/img/buttons/hauptm_rechteck_rot.gif';
		blau.src='/img/buttons/hauptm_rechteck_blau.gif';
		out.src='/img/buttons/hauptm_rechteck.gif';
		footer_on.src='/img/buttons/footer_button_on.gif';
		footer.src='/img/buttons/footer_button.gif';
	}

	function changePics(name,address)	
	{		
		//alert(address.src);
		window.document.images[name].src=address.src;
		return true;
	}
	
	preload();
//-->
