// JavaScript Document
//creates the featured videos list
function createVideoList(){
	$('<div id="vl-loading" class="loading"><img src="/images/loader.gif" /></div>').appendTo('#featured-videos');
	$.ajax({
				type: "GET",
				url: "/xml/FeaturedVideos.xml",
				dataType: "xml",
				success: function(xml) {
					var vidList = $("<ul></ul>");
					$(xml).find('item').each(function(){
						var title = $(this).find('title').text();
						var url = $(this).find('link').text();
						var img = $(this).find('thumb').text();
						$('<li></li>').html('<a href="'+url+'"><img src="'+img+'" alt="'+title+'" title="'+title+'" /><span>'+title+'</span></a>').appendTo(vidList);
					});
					$("#featured-videos h3").after(vidList);
				}
	});	
	$("#vl-loading").remove();
}

