﻿$(function()	{
    $( ".carousel_showing > ul > li" ).each(
        function( intIndex )
        {        
            if (this.firstChild.id=="loading")
            {
               // Call AJAX
               var storycode=$(this.firstChild).val();               
               $(this).html($.ajax({
                   type: "GET",
                   url: "AJAX/pub_carousel_ajax.aspx",
                   async: false,
                   data: "storycode="+storycode+"&ShortName=myTES"
                 }).responseText);
            }		
        }
    );
            
});
