
/*
Thanks to Mike Alsup for the code and instructions
http://malsup.com/jquery/cycle/
+ jquery.cycle.min.js (fade only version)
*/


$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
