$(document).ready(function(){	
	//~~sche sche sche sche~~
	var scheBox = $("#sche");

	//-225px is just there because it's where in sche that different shows start coming up	
	$(scheBox).css({top: "-225px"});

	$("#sche li:even").addClass("sche_even");

	var pageCount = 3;

	$("#schebut").click(function(){
	//up
		if(pageCount > 0)
		{
			$(scheBox).animate({top: "+=75px"}, 250);
			pageCount--;
		}
		return false;
	});
	
	
	//down
	$("#schebut2").click(function(){
		if(pageCount < 6)
		{
			$(scheBox).animate({top: "-=75px"}, 250);
			pageCount++;
		}
		return false;
	});
});
