/*
Title:      CBGM News Feed
Copyright:  Mark Croxton, mcroxton@hallmark-design.co.uk, 0845 450 8865
Created:    June 23 2010
*/

/* JSONP feeds */
feed = 'http://pipes.yahoo.com/pipes/pipe.run?_id=48c9e729b6894387bf1ef84303caab7b&_render=json&_callback=?';

$(document).ready(function(){
	
	//news stories on homepage
	if ($("#newsfeed").length > 0){
		$.getJSON(feed, function(data){
			var newslist = $("<ul></ul>");
			$('#newsfeed').html(newslist);
			$.each(data.value.items, function(i,item){
				item.title = item.title.replace(new RegExp(/\\/g),""); // trim and remove backslashes
				$('#newsfeed ul').html(
					$('#newsfeed ul').html() + 
					'<li><strong><a target="_blank" title="View news story (opens in new window)" href="'+item.link+'">'+item.title+'</a></strong></li>'
				);
				if (i==5) return false; //limit to top 3 stories
			});
		});
	}
	
	//news stories on business new page
	if ($("#businessnews").length > 0){
		$.getJSON(feed, function(data){
			$.each(data.value.items, function(i,item){
				//alert(item.toSource());
				item.title = item.title.replace(new RegExp(/\\/g),""); // trim and remove backslashes
				rowCSS = '';
				if (i == 0) rowCSS = ' class="r-first"';
				$('#businessnews tbody').html(
					$('#businessnews tbody').html() + 
					'<tr'+rowCSS+'><td scope="row" class="c-first"><strong><a href="'+item.link+'" target="_blank" title="View news story (opens in new window)">'+item.title+'</strong></td><td class="c-last">'+item.source+'</td></tr>'
				);
				if (i==12) return false; //limit to top 3 stories
			});
		});
	}
});