$(document).ready(function(){
	$.ajax({  
		url: './slides.xml',  
		type: 'GET',  
		dataType: 'xml',  
		cache : false, 
		timeout: 1500,
		error: function(){  
				$('#not').css('display','block');
		},  
        success:parseXml
	})
});

function parseXml(xml, status){
	if(status!='success')return;
		$('#not').fadeOut(0);
		if ($.browser.webkit) {$('#not').css('display','none');}
		$(xml).find("slide").each(function(){
			var imgSrc = $(this).find('image').text();
			var imgHref = $(this).find('href').text();
			var imgList = '<li class="CLi01"><a href="' + imgHref + '"><img src="' + imgSrc + '" width="960" height="350" /></a></li>'
			var imgAlt = '<li><a href="#">●</a></li>'
			$(imgList).appendTo('#slides');
			$(imgAlt).appendTo('#nav');
	});
	Cycle();
}

function Cycle() {
	$('#slides').cycle({
		fx: "fade", 
		speed:    1000, 
		timeout: 4250,
		pager:  '#nav',
		pagerAnchorBuilder: function(idx, slide) {
			return '#nav li:eq(' + (idx) + ') a';
		}
	});
}
