$(document).ready(function(){

	$.ajax({url:'http://www.dawsoncreekeventscentre.com/xml/banners.xml',dataType:"xml",success:function(xml){
	
		var html_banners='';
		
		
		$("item",xml).each(function(i){
			
			if($(this).find("active").text()=="1"){
		
				html_banners+="<p><a target='_blank' href='"+$(this).find("link").text()+"' ><img src='"+$(this).find("image").text()+"' alt='' title='' /></a></p>";
			
			}
			
		});
		
		$("#news").html(html_banners);
		
		html_banners=null;
		
		
	
	}});

});
