// JavaScript Document
  $(document).ready(function(){
  
  			$("#news_headlines").html("<p><center><img src='images/ajax-loader.gif' alt='loading' /><br>Loading News..</center></p>");
		  
  			$.ajax({
			type: "GET",
			url: "news_headlines.asp",
			dataType: "html",
			success: function(html) {
				$("#news_headlines").html(html);
			},//end success
			error: function(XMLHttpRequest, textStatus, errorThrown){
				$("#news_headlines").html("<p>Could not retrieve news at this time.</p>");
			}//end error
			
			});//end ajax 		
  	
  });