// JavaScript Document
var h = 270;
var e = jQuery("#angebot .news-latest-item").length;
var stopAnim = false;
	
jQuery(document).ready(function(){

	setInterval("moveUp()", 5000);
	
	//Stop at Hover
	jQuery("#angebot").mouseenter(function(){ stopAnim = true; }).mouseleave(function(){ stopAnim = false; });

	jQuery("#angebot .arrow_up").click(function(){ moveUp(true); });
	jQuery("#angebot .arrow_down").click(function(){ moveDown(true); });
	
	});
	
	
function moveUp(c) {
	if(!stopAnim || c) {
		jQuery("#angebot .news-latest-item").not(".close").first().animate({ height:"0px" },500,function(){
			jQuery("#angebot .container").append('<div class="news-latest-item" >' + jQuery("#angebot .container .close").html() + '</div>');
			jQuery("#angebot .container .close").first().remove();
		}).addClass("close");
		
		
	}
}

function moveDown() {
	jQuery("#angebot .container").prepend('<div class="news-latest-item close" style="height:0px">' + jQuery("#angebot .container .news-latest-item").last().html() + '</div>');

	jQuery("#angebot .container .close").last().animate({ height:"270px" },500,function(){ jQuery("#angebot .container .news-latest-item").last().remove(); }).removeClass("close");
}

