$(document).ready(function(){
	
	$('#verify_stock').click(function() {

		$.ajax({
			url: '/ajax/shops_remains.php',
			data: "id_item=" + $(this).attr('item') + "&id_town=" + $(this).attr('town'),
			dataType: 'json',
			type: 'POST',
			timeout: '25000',
			
			beforeSend: function() {
				$('#preloader').html(  $('#waiting').html() );
				$('#preloader').dialog('open');
			},
			success: function(data, textStatus, req) {
				$('#preloader').dialog('close');

				if (data.err != 1) {
					stock_info(data);
				} else {
					;
				}
			  },
			 error: function(data, status, exp) {
				 $('#preloader').html(  $('#error_load').html() );
			} 
		});
	}); 
	
	function stock_info(data) {
		
		$("#stock_data").html(data.html);
		$("#stock_data").dialog('open');
		$("#stock_data").dialog('option', 'title', data.title);
	}
	
	$("#preloader").dialog({
		autoOpen: false,
		modal:true,
		closeOnEscape: true,
		maxWidth: 100,
		width: 200,
		height: 200,
		maxHeight: 200,
		minHeight: 200,
		resizable: false,
		close: function() { $('#preloader').html(  $('#waiting').html() ); }

	});

	$("#stock_data").dialog({
		autoOpen: false,
		modal:true,
		closeOnEscape: true,
		hide: 'slide',
		maxWidth: 500,
		width: 500,
		minHeight: 50,
		maxHeight: 500,
		resizable: false,
		show: 'slide',
		modal: true
	});

});
