
		function publicationList_js_init(){
			//var itemCount = 1;
			//AJAX call to RSS feed
			//feedURL, feedFormat (RSS2.0 or Atom) and containerID must be defined in CustomScript element
			
			$.ajax({
				type: "GET",
				url: feedURL,
				dataType: "xml",
				success: function(xml) {
					$(xml).find("item").each(function(){
						var description = $(this).find("description").text();
						var href = $(this).find("link").text();
						var title = $(this).find("title").text();
						var thumbURL = $(this).find("gva\\:thumbURL").text();
						var pubDate = $(this).find("pubDate").text();
						var itemString = "<div class='publicationItem' id='publicationItem_" + itemCount + "'>";
						itemString += "<a href='" + href + "'><div class='publicationThumb' id='publicationThumb_" + itemCount + "' ";
						itemString += "style='background-image: url(" + thumbURL + ");'></div></a>";
						itemString += "<div class='bodytext' id='publicationText_'" + itemCount + "'>";
						itemString += "<p class='summaryText' style='width:290px; float: left;'><a class='summaryText' href='" + href + "'>" + title + "</a></p><p style='float: left; text-align: right; width: 100px;'>" + pubDate + "</p>";
						itemString += "<p style='width: 390px;'>" + description + "</p>";
						itemString += "</div>"; //close publicationText
						itemString += "</div>"; //close publicationItem
						
						
						$(containerID).append(itemString);													  
						itemCount++;
					});

				},
				error: function (XMLHttpRequest, textStatus, errorThrown) {
					$(containerID).append("<p>An error occurred retrieving the RSS feed " + feedURL + "</p>");
				}				
			});
		}
