// OPTIONS - http://malsup.com/jquery/cycle/options.html

$(document).ready(function() {
    $('.imageCarousel').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000,
		speed:   500,
		delay: 500,
		cleartype:  1 // enable cleartype corrections 		
	}).delay(1000).fadeIn('slow');
    $('.imageCarousel img:first-child').addClass("first");
			
});
