/* cycle_presets.js */
/*   
	blindX		growX			shuffle		uncover
	blindY		growY			slideX		wipe
	blindZ		scrollUp			slideY		zoom
	cover		scrollDown		toss
	curtainX		scrollLeft		turnUp
	curtainY		scrollRight		turnDown
	fade			scrollHorz		turnLeft
	fadeZoom		scrollVert		turnRight
*/
/*
///////

delay:

The delay option lets you set the number of milliseconds to add to the 
timeout value for the first slide. This setting is useful when you have
 several slideshows on the same page because it provides a way to offset 
 the transitions so they are not competing for the CPU. Because these demo 
 pages contain numerous slideshows, the delay will be used frequently on 
 these pages. 

///////

sync:

The sync option controls whether the slide transitions occur simultaneously. 
The default is true which means that the current slide transitions out as the
 next slide transitions in. By setting the sync option to false you can get 
 some interesting twists on your transitions. 

///////
*/

////////////////////////////////////////////////////////
//
//	CUSTOM
//
////////////////////////////////////////////////////////
function cycle_custom1(object, time_out){
	$(object).cycle({ 
		fx:     'custom', 
		//speed:   4500, 
	   
		//delay:  -2000, 
		clip:   'l2r',
		random: 1,
		//sync: 0,
		//easing:  'easeinout',
		easeIn:  'easeInOutExpo', 
		easeOut: 'easeout',
		speedIn:  1500, 
		speedOut:  1000,
		
    //fx: 'custom', 
   cssBefore: { 
        left: 0,  
        top:  0,  
        width: 10,  
        height: 403,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        //opacity: 0,
	   //width: 4440,  
       opacity:0
    }, 
    animIn: { 
    //opacity: 0,
       // left: 0,  
        //top: 0,  
        width: 540,  
        height: 404  
    }, 
    cssAfter: {  
    
	   opacity:0,
        zIndex: 0 
	   
	   
    }, 		
		
		//timeout: time_out
		timeout: 4000
	}); 

}
function cycle_custom2(object, time_out){
	$(object).cycle({ 
		fx:     'custom', 
		
		//timeout: time_out
		timeout: time_out,
		//speed:   4500, 
	   
		delay:  500, 
		clip:   'l2r',
		//random: 1,
		//sync: 0,
		//easing:  'easeinout',
		easeIn:  'easeInOutExpo', 
		//easeIn:  'easeInOutQuad',
		
		//easeIn:  'easeOutCirc',
		//easeIn:  'easeInOutQuad',
		
		easeOut: 'easeout',
		speedIn:  1500, 
		speedOut:  1000,
		
		cssBefore: { 
		   left: 0,  
		   top:  0,  
		   width: 10,  
		   height: 403,  
		   opacity: 1, 
		   zIndex: 1 
		}, 
		animOut: {  
		   //opacity: 0,
		   //width: 4440,  
		  opacity:0
		}, 
		animIn: { 
		//opacity: 0,
		  // left: 0,  
		   //top: 0,  
		   width: 540,  
		   height: 403  
		}, 
		cssAfter: {  
		
		   opacity:0,
		   zIndex: 0 
		   
		   
		} 		
	}); 

}
function cycle_custom_null(object, time_out){
	$(object).cycle({ 
		fx:     'custom', 
		
		//timeout: time_out
		timeout: 5000000,
		//speed:   4500, 
	   
		delay:  500, 
		clip:   'l2r',
		random: 1,
		cssBefore: {   
		   opacity: 1, 
		   zIndex: 1 
		}, 
		animOut: {  

		}, 
		animIn: { 
 
		}, 
		cssAfter: {  
		
		   opacity:1,
		   zIndex: 1 
		   
		   
		} 		
	}); 

}

////////////////////////////////////////////////////////
//
//	fades
//
////////////////////////////////////////////////////////
/* index.htm page */
function cycle_fade1(object, time_out){
	$(object).cycle({ //good
		fx:    'fade', 
		sync:   0, 
		//delay: '-1000',
		timeout: time_out,
		easeIn:  'easein',
		easeOut: 'easeout',
		speedIn:  '9000', 
		speedOut: '1000'
	});
};
function cycle_fade2(object, time_out){
	$(object).cycle({ //good
		fx:    'fade', 
		sync:   0, 
		//delay: '-1000',
		timeout: time_out,
		easeIn:  'easein',
		easeOut: 'easeout',
		speedIn:  '9000', 
		speedOut: '1000'
	});
};
function cycle_fade3(object, time_out){
	$(object).cycle({ //good
		fx:    'fade', 
		sync:   0, 
		//delay: '-1000',
		timeout: time_out,
		easeIn:  'easein',
		easeOut: 'easeout',
		speedIn:  '3000', 
		speedOut: '3000'
	});
};
////////////////////////////////////////////////////////
//
//	scrollRights
//
////////////////////////////////////////////////////////
function cycle_scrollRight1(object, time_out){
	$(object).cycle({
		fx: 'scrollRight', 
		delay: null,
		timeout: time_out,	
		pause:  '1',
		easeIn:  'easein',
		easeOut: 'easeout'
	});
};
////////////////////////////////////////////////////////
//
//	scrollDowns
//
////////////////////////////////////////////////////////
function cycle_scrollDown1(object, time_out){
	$(object).cycle({ 
	    fx:      'scrollDown', 
	    speedIn:  2000, 
	    speedOut: 500, 
	    timeout: time_out,
	    easeIn:  'bounceout', 
	    easeOut: 'backin', 
	    delay:   -2000 
	});
};
function cycle_scrollDown2(object, time_out){
	$(object).cycle({ 		 
		fx:    'scrollDown', 
		sync:   0, 
		//delay: '-1000',
		timeout: time_out,
		//speed:'5000',
		easeIn:  'easein',
		easeOut: 'easeout',
		speedIn:  '9000', 
		speedOut: '90000'
	});
};
////////////////////////////////////////////////////////
//
//	scrollUps
//
////////////////////////////////////////////////////////
function cycle_scrollUp1(object, time_out){
	$(object).cycle({ 
		//fx: 'scrollLeft',
		//fx: 'turnDown',
		fx: 'scrollUp',
		//fx: 'turnUp',
		speed: 'slow',
		timeout: time_out,
		/*delay: '-1000',*/
		pause:  '1',
		easeIn:  'easein', 
		//easeOut: 'easeout',
		easeOut: 'backin',
		speedIn:  '90000', 
		speedOut: '1000'
		
	});
};
////////////////////////////////////////////////////////
//
//	Wipes
//
////////////////////////////////////////////////////////
function cycle_wipe1(object, time_out){

	$(object).cycle({ 
	   fx:     'wipe', 
	   speed:   1000, 
	   timeout: time_out, 
	   clip:   'zoom' 
	}); 
}
/*   
	blindX		growX			shuffle		uncover
	blindY		growY			slideX		wipe
	blindZ		scrollUp			slideY		zoom
	cover		scrollDown		toss
	curtainX		scrollLeft		turnUp
	curtainY		scrollRight		turnDown
	fade			scrollHorz		turnLeft
	fadeZoom		scrollVert		turnRight
*/

/*function cycle_wipe2(object, time_out){
	$(object).cycle({ 
		fx:     'custom', 
		//speed:   4500, 
	   
		//delay:  -2000, 
		clip:   'l2r',
		//random: 1,
		//sync: 0,
		//easing:  'easeinout',
		easeIn:  'easeInOutExpo', 
		easeOut: 'easeout',
		speedIn:  2000, 
		speedIn:  2000,
		
    //fx: 'custom', 
   cssBefore: { 
        left: 0,  
        top:  0,  
        width: 10,  
        height: 403,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        //opacity: 0,
	   //width: 4440,  
        top:  0
    }, 
    animIn: { 
    //opacity: 0,
        left: 0,  
        top: 0,  
        width: 540,  
        height: 404  
    }, 
    cssAfter: {  
    
	   opacity:0,
        zIndex: 0 
	   
	   
    }, 
    delay: -3000  ,
		
		
		timeout: time_out
		
	}); 

}*/

function cycle_wipe3(object, time_out){
	$(object).cycle({ 
		fx:     'wipe', 
		speed:   1000, 
		timeout: 6000, 
		delay:  -4000, 
		clip:   'l2r' 
	}); 
}




/*  end cycle_presets.js  */