$(document).ready(function() {
	$('HTML').addClass('JS');
	$('tbody tr:even').addClass('even');
	
	$('.sheduler_bottom .prw').click(function(){
		if($('#sheduler_pages').val() > 1 && $(this).not('.off')){
			$('.sheduler_bottom .next').removeClass('off');
			
			$('#sheduler_' + $('#sheduler_page').val()).hide();
			$('#sheduler_page').val(parseInt($('#sheduler_page').val()) - 1);
			$('#sheduler_' + $('#sheduler_page').val()).show();
			
			if($('#sheduler_page').val() <= 1) $(this).addClass('off');
		}
		return false;
	});
	$('.sheduler_bottom .next').click(function(){
		
		if($('#sheduler_pages').val() > 1 && $(this).not('.off')){
			$('.sheduler_bottom .prw').removeClass('off');
			
			$('#sheduler_' + $('#sheduler_page').val()).hide();
			$('#sheduler_page').val(parseInt($('#sheduler_page').val()) + 1);
			$('#sheduler_' + $('#sheduler_page').val()).show();
			
			if($('#sheduler_pages').val() >= $('#sheduler_page').val()) $(this).addClass('off');
		}
		
		return false;
	});
	
});
