
$(document).ready(function() {
			
	
	$(function(){
		
		$.ajax({
			type: "GET",
			url: "ticker.xml",
		  	//url: "http://www.hanskollner.com/ca/asr/ticker.xml",
			dataType: "xml",
			success: function(xml)
			{
				
				$(xml).find('item').each(function(){
					var title = $(this).find('title').text();
					$('<p></p>').html(title).appendTo("#tickercontainer #mask");
				});
			},
			error: function(){
	        	alert('Error loading headlines!');
	    	},
	    	complete: function(){
	    		$('#mask').cycle({
					fx:     'fade', 
					speed:   800, 
					timeout: 6000
				});
	    	
	    	}
	    	
		});

		
	});


	
	
	
	
	
	
 });

