	function myCarousel(){
		$(".carousel").jCarouselLite({
			auto: 2000,
	        speed: 1000,
			vertical: true,
			visible: 4
		});
		
       }

	function sticker() {												
			$.ajax({
				type: "GET",
				
				url: "/parsexml.php", //Requesting simple.xml
				
				dataType: "xml", //Make sure that you specify the type of file you expecting (XML)
				success:function(xml){
					$(xml).find('item').each(
						function(){
	                        // var id_text = $(this).attr('id');
							 var id_text = $(this).find('pubDate').text();
	                         var name_text = $(this).find('title').text()
							 var link_text = $(this).find('link').text()
	
	                         $('<li></li>')
	                             .html('<a href="'+link_text+'" class="cld">'+id_text.substring(5,11)+'</a> <a href="'+link_text+'" target="_blank" class="blki">' + name_text + '</a>')
	                             .appendTo('#update-target ul');
	                     }); //close each(
					myCarousel();
				}
			});
	}
	
	$(function () {
		sticker();
	});
