/* slide.js
controls the slide show on the personal pages
Inergy Design
*/


$(document).ready(function() {
    $('#slideshow1').cycle({
		speed:    1200,
		timeout:  5400,
		shuffle:  {left:-300, top:30},
		clip:     'zoom',
		fx:       'wipe',
		before:   function(c,n,o) {$(o.caption).html(o.currFx);},
		caption:  '#caption1'
    });

    $('#slideshow2').cycle({
		speed:    1200,
		timeout:  5400,
		easing:  'easeInBack',
		fx: 	'wipe',
		randomizeEffects: false,
		before:  function(c,n,o) {$(o.caption).html(o.currFx);},
		caption: '#caption2'
    });
});
