// JavaScript Document
$(document).ready(function(){
						   
			$.ajax({
				type: "GET",
				url: "xml/quotes.xml",
				dataType: "xml",
				success: function(xml) {
					$(xml).find('quote').each(function(){
						var id = $(this).attr('id');
						var title = $(this).find('title').text();
						var url = $(this).find('url').text();
						if (url=="") {
						$('<div class="items" id="academics_'+id+'"></div>').html('<p>'+title+'</p>').wrap("<div></div>").appendTo('#quotecontainer');
						}
						else {
						$('<div class="items" id="academics_'+id+'"></div>').html('<a href="'+url+'">'+title+'</a>').wrap("<div></div>").appendTo('#quotecontainer');	
							}
					});
			$('#quotecontainer').cycle({ 
    		fx:    'fade', 
    		speed:  5000 
 			}); }
});

});
