var allElemsHeight = 170;

$j(document).ready(function(){

	// Anzahl der Elemente innerhalb des Container DIVs auslesen
	$j('#veranstaltungen_container > div.news').each(function(){
		allElemsHeight -= 85;
	});
	
	$j("#veranstaltungen_container").attr("style", "top:0px;");

	$j("#arrow_top").click(function(){
		var top = $j("#veranstaltungen_container").css("top");
		top = top.replace('px', '');

		if(top < 0) {
			$j("#veranstaltungen_container").animate({"top": "+=85px"}, "slow");
		}
		return false;
	});

	$j("#arrow_down").click(function(){
		var top = $j("#veranstaltungen_container").css("top");
		top = top.replace('px', '');
		
		if(top > allElemsHeight) {
			$j("#veranstaltungen_container").animate({"top": "-=85px"}, "slow");
		}
		return false;
	});

});


