//Jquery Document 

$(document).ready(function() {

		autoUpdate();		


		$('span.notice').ajaxError(function() {
			 $(this).text('Triggered ajaxError handler.');
		});


		  
	function autoUpdate() {

		$.ajax({
			type: "POST",
			url: "php/get_image_set.php",
			cache: false,
			dataType: "xml",
			success: function(xml) {

					var picture = $(xml).find('picture').text();
					var alt = $(xml).find('alt').text();
					var tagline = $(xml).find('tagline').text();
					var longtext = $(xml).find('longtext').text();
					var pageLink = $(xml).find('link').text();

					
				$('#image_rotation > div').empty().remove();
				

				$('<div><h2>Attorney Spotlight</h2><br /><br /><h4>Jacksonville Attorney</h4><h4>'+alt+'</h4><img src="'+picture+'" alt="'+alt+'" height="93px" /><p>'+alt+', a <a href="'+pageLink+'" title="'+alt+'">'+tagline+'</a> attorney,&nbsp;&nbsp;'+longtext+'</p><a href="'+pageLink+'" title="'+alt+'" class="yellow">Learn More about '+alt+'</a></div>').appendTo('#image_rotation');	

				

				setTimeout(autoUpdate, 5000);

			}
		});	
	}		
});
