// JavaScript Document
	var divs = '';
	
	$(document).ready(function() {
	  	$.ajax({
			type: "GET",
			url: "headlines.xml",
			dataType: "xml",
			success: parseXml
	  	});
//  	  	$('#headlines').cycle({
//			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
//		});
	});
	
	function parseXml(xml) {
	  	//find every Tutorial and print the author
	  	$(xml).find("Headline").each(function(){
			divs+= "<div class='headline'><a href='" + $(this).find("URL").text() + "'>" + $(this).find("Title").text() + "</a></div>";
	  	});
	  
	  	// insert 'divs' into the headlines div
	  	$('#headlines_replace').replaceWith(divs);
	  	// start the slide show!
		doCycle();
	}
	
	function doCycle() {
	  $('#headlines').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		sync: 0
		});
	}
