// Load dynamic content for news page
$(document).ready(function() {
	$('#blog_entries').load("ajax_proxy_blog2.php5", "", function() {
		updateNews();
	});
});

// Load NEWS Feed
function updateNews() {
	var ajaxProxyURI = 'ajax_proxy.php';
	$.ajax({
		url:		ajaxProxyURI,
		data:		'url=http://www.globalmediaoutreachnews.com/inthenews.html',
		success:	function(data) {
			$('#temp').html(data.replace(/<head(.|\s)*?\/head>/g, "").replace(/<script(.|\s)*?\/script>/g, ""));
			var h = '';
			for (var i=1; i<=3; i++) {
				// Title
				var t = $('#temp ul.copy').children(':nth-child(' + i + ')').text();
				// Extra text between ""
				if (t.charAt(0) == '"') {
					t = t.substring(1, t.substring(1).indexOf('"') + 1);
				}
				// Stop at semicolon
				if (t.indexOf(':') > 0) {
					t = t.substring(0, t.indexOf(':'));
				}
				h += '<h5>' + t + '</h5><ul>';
				// Download link
				var dl = $.trim($('#temp ul.copy').children(':nth-child(' + i + ')').children('a:first').attr('href'));
				if (dl.substr(0, 7) != 'http://')
					dl = 'http://www.globalmediaoutreachnews.com/' + dl;
				
				h += '<li class="greyblue"><a href="' + dl + '" class="btn lightblue">Check it Out!</a></li>';
				// Author text
				h += '<li>' + $('#temp ul.copy').children(':nth-child(' + i + ')').children('span:first').text() + '</li>';
				// Date
				h += '<li>' + $('#temp ul.copy').children(':nth-child(' + i + ')').children('span:eq(1)').text() + '</li>';
				
				h += '</ul>';
			}
			h += '<a href="http://www.globalmediaoutreachnews.com/inthenews.html" class="btn red">View All</a>';
			$('#in_the_news').append(h);
			$('#temp').empty();
			updatePR();
		}
	});
}

// Load PRESS Releases
function updatePR() {
	var ajaxProxyURI = 'ajax_proxy.php';
	$.ajax({
		url:		ajaxProxyURI,
		data:		'url=http://www.globalmediaoutreachnews.com/releases.html',
		success:	function(data) {
			$('#temp').html(data.replace(/<head(.|\s)*?\/head>/g, "").replace(/<script(.|\s)*?\/script>/g, ""));
			var h = '';
			for (var i=1; i<=3; i++) {
				// Title
				var t = $('#temp .col_right ul').children(':nth-child(' + i + ')').text();
				// Extra text between ""
				if (t.charAt(0) == '"') {
					t = t.substring(1, t.substring(1).indexOf('"') + 1);
				}
				// Stop at semicolon
				if (t.indexOf(':') > 0) {
					t = t.substring(0, t.indexOf(':'));
				}
				h += '<h5>' + t + '</h5><ul>';
				// Download link
				var dl = $('#temp .col_right ul').children(':nth-child(' + i + ')').children('a:first').attr('href');
				if (dl.substr(0, 7) != 'http://')
					dl = 'http://www.globalmediaoutreachnews.com/' + dl;
				
				h += '<li class="greyblue"><a href="' + dl + '" class="btn lightblue">'
					+ $('#temp .col_right ul').children(':nth-child(' + i + ')').children('a:first').text()
					+ '</a></li>';
				// Date
				var d = $('#temp .col_right ul').children(':nth-child(' + i + ')').children('span:first').text();
				if (d.charAt(0) == '(')
					d = d.substring(1, d.substring(1).indexOf(')') + 1);
				h += '<li>' + d + '</li>';
				
				h += '</ul>';
			}
			h += '<a href="http://www.globalmediaoutreachnews.com/releases.html" class="btn red">View All</a>';
			$('#press_releases').append(h);
			$('#temp').empty();
			$('#loader').hide();
		}
	});
}