var max_y = 1;
var direction = 1;
var offset = 310;
var delay = 7500;
var speed = 1800;

$(document).ready(function() {
	max_y = (($('#top-container .top-item').length -1)*offset)*-1;
	//alert("höhe letztes element: "+$('#top-container :nth-child('+$('.top-item').length+')'));
	if($('#top-container .top-item').length > 1){
		move(310);
	}
/* 	move_submenu_for_opera();	 */
});

function move_aktuell(){
	var cur_margin = $('#top-container').css('marginTop').replace("px", "");
	if( cur_margin > max_y && cur_margin != 0){		
		var y = offset*direction;
		//$('#debug').html('move UP: '+direction);
		move(y);
	}else{
		//direction = direction*-1;
		var y = max_y+0.1;
		//$('#debug').html('move DOWN: '+direction);
		move(y);
	}
}



function move(y){
	$('#top-container').delay(delay).animate({"marginTop":"-="+y},speed,"easeInOutExpo",function(){move_aktuell()});
}


/*
function move_submenu_for_opera(){
	var submenu = $('body').find(".submenu_container").outerHTML();
	$('body').find(".submenu_container").remove();

	$('#submenu_opera').html(submenu);
}
*/
