I'm currently working on a web application that displays a slideshow of images using the Cycle plug-in for jQuery. For ease of use, I'm making the application configurable, allowing someone to change the path for which the slide images can be found for displaying. I've found the necessary code to create all of the image filenames into one String array, but I'm not entirely sure how I can pass the whole array back to my jQuery for processing. I'm already using a Java Servlet as a proxy to get access to some RSS feeds, and so I decided to use the "$.get()" method to make an HTTP request with a tagged parameter to determine which functionality to carry out.I'm currently working on a web application that