jQuery(document).ready(function(){
	jQuery.ajax({
	 type: "GET",
	 url: "index.xml",
	 dataType: "xml",
	 success: function(xml) {
		 var slides = jQuery(xml).find('slide');
		 var slideNo = slides.size();
		 slides.each(function(index){
							 var slide = jQuery(this);
							 jQuery('<img src="' + slide.attr('src') +  '"' + ' width="' + slide.attr('width') + '" height="' + slide.attr('height') + '" />')
								.appendTo(jQuery('.Content_3Cols .col1 h2'))
								 .load(function(){
											if(index == slideNo -1)
											{
												jQuery('.Content_3Cols .col1 h2').cycle({ 
													fx:    'fade', // one of: fade, shuffle, zoom, slideX, slideY, scrollUp/Down/Left/Right 
													timeout:  5000,
													speed:  1000,
													
													pause: 1,
													random: false,
													sync: true,
													
													before: function(){
																jQuery('.Content_3Cols .col1 h2').css({
																										'width': jQuery(this).width() + 'px',
																									  	'height': jQuery(this).height() + 'px'
																									  });
															}
												 });
											}																													
										});
						  }); //close each
		 
	 }
	}); //close jQuery.ajax(
})