  $(document).ready(function() {    
	//Get Latest Strongwell News Headlines:
	var showHeadlines = 4;
	$.ajax({
        type: "GET",
		url: "news/feed/",
		dataType: "xml",
		success: function(xml) {			
			var headlineCount = 0;			
			$(xml).find('item').each(function(index, domEle){				
				var title = $(this).find('title').text();
				var link = $(this).find('link').text();
				var pubDate = $(this).find('pubDate').text();
				var categories = $(this).find('category').text();
				pubDate = pubDate.slice(0, (pubDate.length - 14));
				if(categories.search("HideOnHomePage") == -1)
				{
					var listItem = '<li><span class="dateline">'+ pubDate + '</span><br /><a href="' +  link + '" class="newsheadline">' + title + '</a></li>';
					$('#newsHeadlineList').append(listItem);							
					headlineCount++;
				}
				if(headlineCount >= showHeadlines){return false;}				
			});//end $(xml).find			
		}//end success
	});//end ajax call	
});//end document ready function
