$(document).ready(function(){
// initialize scrollable 
        // initialize scrollable 
   //$("#flowpanes").scrollable({size: 1, loop: true});

	$("#flowpanes .items").cycle({ 
		fx:     'scrollLeft',
		delay:-2000,
		timeout: 15000, 
		next:   '#next', 
		prev:   '#prev',
		pause: 1
	
	});
// force IE7 to use the proper stacking order
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});

});

