if ('undefined' === typeof dataListingURL) var dataListingURL = '/weather/stormreports/smalltable.html';
var updateDataList = {};

$(document).ready(function() {

	/*-------- global vars --------*/

	/*-------- global functions --------*/




	/*-------- global processes --------*/

	var dataListTimeout = null;
	updateDataList = function () {
		$.ajax({
		    url: dataListingURL,
		    type: 'GET',
		    dataType: 'html',
		    timeout: 10000,
		    success: function(myData){
		        $('#dl-data').html(myData);
		        $('#dl-loading').hide();
		        $('#dl-data').show(500);

		        dataListTimeout = setTimeout("updateDataList()", 5 * 60000);
		    }
		});
	}


	if ($('#dl-data').is('*')) {
		updateDataList();

	}




});