/**
 * 
 */

jQuery(function() {
 	jQuery('.slideshow').cycle({ 
	    fx:     'fade',
	    speed:  1500,
	    cleartypeNoBg: true
	});
	
	jQuery('#postItGroup').cycle({ 
	    fx:     'shuffle',
	    speed:  1500,
	    next:   '.next',
	    cleartypeNoBg: true,
	    animOut: { opacity: 0 },
	    animIn: { opacity: 0 }
	}).cycle('pause');
});

