$(function(){
			$('#feature').slides({
				preload: true,
				preloadImage: 'images/loading.gif',
				play: 4000,
				pause: 2500,
				hoverPause: true,
				randomize: false,
				animationStart: function(){
					$('.caption').animate({
						bottom:-35
					},100);
				},
				animationComplete: function(current){
					$('.caption').animate({
						bottom:0
					},200);
					if (window.console && console.log) {
						// example return of current slide number
						console.log(current);
					};
				}
			});
		});

$(document).ready(
	function(){
		$('#imageSlideShow').cycle({
			fx: 'fade',					   
			speed: 1000,
			timeout: 3000
		});
});
