jQuery(document).ready(function() {
    var didLoad = false;
	$('#results-image img:first').fadeIn(2000, function() {
     $("#results-image").cycle({
            fx: 'scrollUp',
            speed: 2000,
            sync: 0,
            timeout: 10000,
			cleartype: 1,
			cleartypeNoBg: 1
        });
    });
	$('#testimonials-item p:first').fadeIn(2000, function() {
     $("#testimonials-item").cycle({
            fx: 'fade',
            speed: 2000,
            sync: 0,
            timeout: 10000,
			cleartype: 1,
			cleartypeNoBg: 1
        });
    });
	$('#homegraphic-image img:first').fadeIn(2000, function() {
     $("#homegraphic-image").cycle({
            fx: 'fade',
            speed: 4000,
            sync: 0,
            timeout: 10000,
			cleartype: 1,
			cleartypeNoBg: 1
        });
	 });
});	
