$(document).ready(function()
{
	// rounded corners //
	$(".rounded").corner("round 8px").parent().css("padding", "2px").corner("round 10px");
	
	// vertical slider //
	var visible_height = $("#event-schedule-body" ).height();
	var total_height = $("#dyncontent-schedule" ).height();
	var interval = 30;
	var offset = 0;
	$("#event-schedule-buttons .nextPage" ).click(function(){
		if(total_height > visible_height)
		{
			if((0-offset) < (total_height-(interval*2)))
			{
				offset -= interval;
				$("#dyncontent-schedule").animate({"marginTop": offset+"px"});
			}
		}
	})
	$("#event-schedule-buttons .prevPage" ).click(function(){
		if(total_height > visible_height)
		{
			if(offset < 0)
			{
				offset += interval;
				$("#dyncontent-schedule").animate({"marginTop": offset+"px"});
			}
		}
	})

});