$(function() {
	$.ajax({
		type:'get',
		url:'/admin/content/alerts.html',
		dataType:'html',
		cache:false,
		success:function(x) {

			var parts = x.split("[/header]");
			var c = parts[1];
			
			//alert(c.length);
			
			if (c.length > 150) {
				$("div#alert_container").empty().append('<div style="float: left; width: 50px; margin-left: 20px;"><a href="/alerts/"><img width="50%" src="/images/red-phone.jpg"></a></div><div style="float: left; margin-left: 0pt; width: 200px;"><a style="text-decoration: none;" href="/alerts/"><b style="color: rgb(2255, 0, 0); font-size: 120%;">Service Status: Issues Please Click Here for Details</b></a></div></div>');
			} else {
				$("div#alert_container").empty().append("<div style='float: left; width: 50px; margin-left: 20px;'><a href='/alerts/'><img width='50%' src='/images/green-phone.jpg'></a></div><div style='float: left; margin-left: 0pt; width: 120px; padding-top: 5px;'><a style='text-decoration: none;' href='/alerts/'><b style='color: rgb(0, 153, 0); font-size: 120%;'>Service Status: OK</b></a></div></div>");
			}

		}
	});
});
//green


	
//red


