$(document).ready(function() {
		
		$(".portfolio").each(function(index) {
		    
			var c = $(this).find('.caption');
			$(this).slides({
			    preload: true,
			    preloadImage: 'img/loading.gif',
				generateNextPrev: true,
				generatePagination: false,
				animationStart: function(current){ c.animate({ bottom:-35 },100) },
				animationComplete: function(current){ c.animate({ bottom:0 },200) },
				slidesLoaded: function() { c.animate({ bottom:0 },200) }
			  });
			
			$(this).bind( 'swipeleft', function( e ) {
			    e.stopImmediatePropagation();
				$(this).find(".next").click();
			    return false;
			});

			$(this).bind( 'swiperight', function( e ) {
				e.stopImmediatePropagation();
				$(this).find(".prev").click();
			    return false;
			});
		 
		
		});
	
	
});
