jQuery.ajax({
	url:'_xml/'+xmlFile,
	type:'GET',
	datatype:'xml',
	error:function(){
		alert('Error loading XML document');
	},
	success:function(xml){
		var txt='';
		jQuery(xml).find('column').each(function(){
				txt+='<div class="'+jQuery(this).find('>class').text()+'">';
				jQuery(this).find('movie').each(function(){
						if(jQuery(this).find('link').text()){
							txt+='<a href="'+jQuery(this).find('link>path').text()+
							'" rel="'+jQuery(this).find('link>rel').text()+
							'" id="'+jQuery(this).find('link>id').text()+
							'" class="'+jQuery(this).find('link>class').text()+
							'" title="'+jQuery(this).find('link>title').text()+
							'">';
						}
						txt+='<img src="'+jQuery(this).find('image>path').text()+
						'" width="'+jQuery(this).find('image>width').text()+
						'" height="'+jQuery(this).find('image>height').text()+
						'" alt="'+jQuery(this).find('image>alt').text()+
						'" />';
						txt+='<span>'+jQuery(this).find('info>title').text()+'</span>';
						if(jQuery(this).find('link')){
							txt+='</a>';
						}
						if(jQuery(this).find('info').text()){
							txt+='<div class="'+jQuery(this).find('info>class').text()+
							'">';
							txt+='Agency: '+jQuery(this).find('info>agency').text()+
							'<br />Director: '+jQuery(this).find('info>director').text();
							txt+='</div>';
						}
				});
				txt+='</div>';
		});
		jQuery('div.content').append(txt);
		var box = {};
		box = new MultiBox('mb', {descClassName: 'multiBoxDesc', useOverlay: true});
	}
});