// JavaScript Document

$(document).ready(function() {
$('.slideshow').cycle({
   	//cleartype: !$.support.opacity,
	cleartypeNoBg: true,
	fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    speed: 1500, // defines the number of milliseconds it will take to transition from one slide to the next.
    timeout: 4000, // specifies how many milliseconds will elapse between the start of each transition
    pause: 1 // so that pauses when user hovers over a slide
});
});
