function spy() {

	//See if the ID has changed
	GDownloadUrl("_spycheck.php", function(data, responseCode) {
			
		 if (responseCode == 200 && data != "") {
		 	if (data == last_id) {
		 		last_id = last_id;
		 	}
		 	else {
		 		
		 		GDownloadUrl("_spy.php", function(d, responseCode) {
			
		 			if (responseCode == 200) {
		 			
		 				var last_id = $('#breaking-news-list li:last-child span:first-child').attr('id');
		 				
		 				var l_ids = last_id.split('-');
		 				var rm_id = l_ids[1];
		 				
		 				if (markers[rm_id]) {
		 					map.removeOverlay(markers[rm_id]);
		 				}
		 				
		 				$('.content-element-wrapper:last-child').remove();
		 			
		 				$('#breaking-news-list').prepend(d);
		 				
		 				$('#breaking-news-list li:first-child').fadeIn("slow");
				
						var point = new GLatLng(lat,lng);
		 				
		 				var m_length = markers.length;
		 				var i = 1;
						
						var sel_id = $('#breaking-news-list li:first-child').attr('id');
		 				
		 				var ids = sel_id.split('_');
		 				var id = ids[1];
		 				var lat = ids[2];
		 				var lng = ids[3];
		 				
		 				new_id = id;
		 				
		 				var title = $('#orig-title-'+id).html();
						var desc = $('#excerpt-'+id).html();
						
						var point = new GLatLng(lat,lng);
						
						var marker = createMarker(point,title,desc,id,base_icon);
		
						markers[id] = marker;
						
						map.addOverlay(marker);
						marker.setImage('images/library/icons/mapdango-new.png');
						
						setTimeout(function() {markers[new_id].setImage('images/library/icons/mapdango.png');$('#headline-link-'+new_id).css({'background':'#F3F9F6','color':'#444444'});}, 2000);
		 				
		 			}
		 		},"id="+last_id);
		 		
		 		last_id = data;
		 		
		 	}
		 }
		 
	},"id="+last_id);

setTimeout(function() {spy();}, 15000);

}