function createCarosel(startingIndex) {
var slideshow = new ImageFlow();
if(startingIndex == false){
  startingIndex = 1;
}

/* Eww....I dont like this, but I needed to dumb-down the design for IE 7 to avoid warping, actually make the clicking work, etc. */

if (jQuery.browser.msie && (parseInt(jQuery.browser.version) <= 7)) { 
        jQuery("#pasflow").css({position:'relative',top:'-220px'});
        slideshow.init({ ImageFlowID: 'pasflow',
        reflectPath: 'http://www.jccc.edu/files/scripts/imageflow/',
        imagePath:'../../../performing-arts-series/',
					  onClick: function() { var url = this.id;
                                            $url = jQuery(url.replace(/^img-/,'#link-')).attr('href');
                                            document.location = $url ; },   /* Onclick behaviour */
                      circular: true,
                      reflections: true,
                      slider: false,
                      captions: true,
                      xStep: 100,
                      imageFocusM: 1.1,
                      startID: startingIndex,
                      reflectionGET:     '&bgc=fff2e2&fade_start=10%',
                      imagesHeight: 0.55/*,
                      slideshow: true,
                      slideshowAutoplay: true,
                      slideshowSpeed: 5000 */ });
        jQuery("#pasflow_caption").css("color","#232323");

} else {
        jQuery("#pasflow").css({position:'relative',top:'-150px'});
        slideshow.init({ ImageFlowID: 'pasflow',
        reflectPath: 'http://www.jccc.edu/files/scripts/imageflow/',
        imagePath:'../../../performing-arts-series/',
                    circular: true,
                      reflections: true,
                      reflectionP: 0.8,
                      slider: false,
                      captions: true,
                      xStep: 100,
                      imageFocusM: 1.2,
                      startID: startingIndex,
                      reflectionGET:     '&bgc=fff2e2&fade_start=10%&height=15%',
                      aspectRatio: 3.1,
                      imagesHeight: 0.55/*,
                      slideshow: true,
                      slideshowAutoplay: true,
                      slideshowSpeed: 5000 */  });
        jQuery("#pasflow_caption").css("color","#232323");
        jQuery("#pasflow_navigation").css('margin-top','80px');
}

}
