	$(document).ready(function(){
		$.ajax({
			method: 'GET',
			url: 'get_videos.php?page=prog',
			success: function (xml){
				var $videos = $('video',xml);
				var j = 1;
				var aux;
				$videos.each(function(i){
					
					if($('id',this).text()){
						if(j==1){
							aux = i;	
							$('#contenitore').append('<div id="wrapper_'+aux+'" class="wrapper"></div>');
						}
						$('#contenitore').children("#wrapper_"+aux).append("<div class=\"item fl \"><p class=\"titolo_video\"><span class=\"titolo\">"+$('tit_cat',this).text()+"</span><br><a href=\"programma.php?id_video="+$('id',this).text()+"\">"+$('titolo',this).text()+"</a></p><div class=\"div_foto\" style=\"background-image:url("+$('foto',this).text()+")\"><a href=\"programma.php?cat="+$('id_cat',this).text()+"&id_video="+$('id',this).text()+"\"></a></div></div>");
					
						if(j==3){
							$('#contenitore').children("#wrapper_"+aux).append('<div id="clearer"></div>');
						}
						if(j==6){
							j=0;	
						}
					}
					j++;					
				})
				
				$(".top_stories").slideNews();
				$(".news_slider").css('visibility', 'visible');
			}
		});
	});	

