<!-- hide script from old browsers
 				
  // GET QUOTES ***********************************************************************************************
jQuery.noConflict();
(function($) { 
	
	$(document).ready(function() {		

		 $.ajaxSetup({
			cache: false
		 });
  
		
		$.ajax({
			url: 'xml/quotes.xml',
			type: 'GET',
			dataType: 'xml', 
			error: function(){
				alert('Error loading Quotes XML document');
			},
			success: xmlParser
		});
		
		
		function xmlParser(xml)
		{
			var quotehtml = ""; 					
			$(xml).find("item").each(function() {
				var myquote = $(this).text();
				quotehtml = quotehtml + "<p>" + myquote + "</p>";																							
			});	 
			$("#quotes").html(quotehtml);	
			$('#quotes').cycle({
				fx: 'fade', 
				timeout: 11000, 
				delay:  -2000 
			});
		
		}


// END JQUERY **************************************************************** 
});
})(jQuery);	
 
// END QUOTES ***********************************************************************************************
	 
  // end hiding script from old browsers -->
   
