$(document).ready(function(){
	

	$('#quote-items').cycle({ 
		fx:     'fade', 
		timeout: 8000
	});
	
	if ($(window).height() > $(document).height()) {
        $('#footer').css({
            height: $('#footer').height() +
                ($(window).height() -
                $(document).height()) + 'px'
        });
    };
});