/*$(function(){
	$('#quotes div:gt(0)').hide();
	setInterval(function(){$('#quotes div:gt(0)').fadeOut().next('div').fadeIn().end().appendTo('#quotes');}, 3000);
});*/
/*
$(function(){
    $('#quotes div:gt(0)').hide();
    setInterval(function(){
      $('#quotes :first-child').fadeOut()
         .next('div').fadeIn()
         .end().appendTo('#quotes');}, 
      3000);
});*/
$(document).ready(function() {
    $('#quote div').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});


