$(document).ready(function(){
//$('#banner').cycle({ 
//    fx:    'fade', 
//    speed:  6500 
//});
function onAfter(curr, next, opts, fwd) {
 var $ht = $(this).height();

 //set the container's height to that of the current slide
 $(this).parent().animate({height: $ht}, 1000, function() {});
}
$('#test-inner').cycle({ 
    fx:    'fade', 
    speed:  1000,
	timeout: 12000,
	before: onAfter
 });
 
$('#contact-us').cycle({ 
    fx:    'fade', 
    speed:  1000,
	timeout: 10000,
	before: onAfter
 });

$('#mckenna').cycle({ 
    fx:    'fade', 
    speed:  1000,
	timeout: 10000,
});

$('#software-quotes').cycle({ 
    fx:    'fade', 
    speed:  1000,
	timeout: 10000,
	cleartypeNoBg: true
});
 
$('#software-statements').cycle({ 
    fx:    'fade', 
    speed:  1000,
	timeout: 5000,
	cleartypeNoBg: true
});				 

});
