YAHOO.namespace("VIT");

YAHOO.VIT.APNews = {
	articles: [
		{ "link": "01_06.html", "headline": "Brewer wants surplus at end of next Arizona budget" },
		{ "link": "01_05.html", "headline": "3 men in US terror ring get 15-45 years in prison" },
		{ "link": "01_04.html", "headline": "India marks milestone in fight against polio" },
		{ "link": "01_03.html", "headline": "S&P cuts credit ratings for France, Italy, Spain" },
		{ "link": "01_02.html", "headline": "From vets to moms, Iraq war leaves mark on town" },
		{ "link": "01_01.html", "headline": "2011: the year some pillars of world order shook" }
	
		
		
	
		

		
		
		
	],
	
	loadArticles: function() {
		var articleList = YAHOO.VIT.APNews.articles;
		var html = "";
		html += "<ul class='ap'>";
		for (var i = 0, j = articleList.length; i < j; i++) {
			html += "<li><a href='apnews/" + articleList[i].link + "' class='h2'>" + articleList[i].headline + "</a></li>";			
		}
		html += "</ul>";
		
		YAHOO.util.Dom.get("ap-news").innerHTML = html;
	}
}


