$(function() {
	$.get(photos_xml_file, {}, function(xml) {
		img_path = $('album:first', xml).attr('lgPath');
		$('img', xml).each(function(i) {
			$('.photos').append('<img src = "'+img_path+$(this).attr('src')+'" alt="" width="477" />');
		});	
		$('.photos').cycle();	
	});
});