//PUSH-HANDLE: Michael Curry, ADDITION for BLOGGERYAddition to jQuery gallery slider - this finds all galleries in a certain page and sends the bind code to make them work without you needing to add it in manually

var gallString = new String(); 
 $(function() {
    //~stuff when DOM is ready


 $("div.svw").each(function(i) {
    gallString += "div#" + this.id + ", ";
   });


   //end
 });

/* slideViewer galleries */
$(window).bind("load", function() {
// chili syntax highlighter
$(gallString).slideView(); 
}); //ends bind("load")