// JavaScript Document
function initall(){
		$menu = document.getElementById('menue').style;
		$bg = document.getElementById('bg').style;
		$menu.top = 100 + "px";
		$bg.top = 80 + "px";	
}
function menu_weiter(a){
	$menu_aktuell = document.getElementById('menue').style.top;
	a = parseInt(a) + 100;
	if(parseInt($menu_aktuell) > a){
		menu_up(a);
	}
	if(parseInt($menu_aktuell) < a){
		menu_down(a);
	}
}
function menu_down(a){
	if (document.getElementById) {
		if (parseInt($menu.top) < a) {
			$menu.top = parseInt($menu.top) + 5 + "px";
			$bg.top = parseInt($bg.top) + 5 + "px";
			setTimeout("menu_down("+a+")",5);
		}  
	}	
}
function menu_up(a){
	if (document.getElementById) {
		if (parseInt($menu.top) > a) {
			$menu.top = parseInt($menu.top) - 5 + "px";
			$bg.top = parseInt($bg.top) - 5 + "px";
			setTimeout("menu_up("+a+")",5);
		}  
	}	
}
