jQuery.noConflict();

jQuery(document).ready(function() {
    jQuery('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: '2500',  // speed of the transition (any valid fx speed value) 
		timeout: '4000'  // milliseconds between slide transitions (0 to disable auto advance) 
	});
});

// Transition Values and Effects
//
// blindX
// blindY
// blindZ
// cover
// curtainX
// curtainY
// fade
// fadeZoom
// growX
// growY
// none
// scrollUp 
// scrollDown
// scrollLeft
// scrollRight
// scrollHorz
// scrollVert
// shuffle
// slideX
// slideY
// toss
// turnUp
// turnDown
// turnLeft
// turnRight
// uncover
// wipe
// zoom
//
//
// Above effects are sensitive to capitals
// Duration of slide is set in jquery.cycle.min.js
//
