jQuery(document).ready(function(){
	var current_estr = 1;
	$("#estr_back").click(function() {
		$('#estr_forw,#estr_back').css('visibility','visible');
		current_estr=Math.min(Math.max(1,current_estr+1),6);
		$.ajax({
			'url':'/inc/inc_estrazioni'+current_estr+'.html',
			'cache': false,
			'dataType': 'html',
			'type':'POST',
			success: function(msg)
			{
				$('#estrazioni_lotto').html(msg);
			}
		});
		if (current_estr==1) {$('#estr_forw').css('visibility','hidden');}
		if (current_estr==6) {$('#estr_back').css('visibility','hidden');}
	});
	$("#estr_forw").click(function() {
		$('#estr_forw,#estr_back').css('visibility','visible');
		current_estr=Math.min(Math.max(1,current_estr-1),6);
		$.ajax({
			'url':'/inc/inc_estrazioni'+current_estr+'.html',
			'cache': false,
			'dataType': 'html',
			'type':'POST',
			success: function(msg)
			{
				$('#estrazioni_lotto').html(msg);
			}
		});
		if (current_estr==1) {$('#estr_forw').css('visibility','hidden');}
		if (current_estr==6) {$('#estr_back').css('visibility','hidden');}
	});
});

