function startAugustaLive() {
$.ajax({
url: '/en_US/xml/gen/live.xml',
type: 'GET',
dataType: 'xml',
error: function(){
//alert('Error loading document');
},
success: function(xmlResp){
onALResponse(xmlResp);
}
});
}
function loopALTimer() {
startAugustaLive();
setInterval('startAugustaLive',liveRefresh);
}
function isEven(value) {
return parseInt(value) % 2 == 0;
}
function onALResponse(xmlDoc) {
var xmlDocNode = xmlDoc.getElementsByTagName("augustaLive");
if (xmlDocNode.length > 0) {
var xmlPromoNode = xmlDoc.getElementsByTagName("promo");
var augustaLive = '<div style="float:left; width:251px; height:382px; overflow:hidden;" class="paleGreenBg">';
var augustaLive = ' <div style="float:left; width:251px; height:32px; overflow:hidden;"><img src="/images/headers/mas_he_00000h1.gif" width="251" height="32" border="0" alt="Augusta Live - Full Screen Video"/></div>';
for (i=0;i<xmlPromoNode.length;i++) {
//var j=i+1;
var image = xmlPromoNode.item(i).getAttribute('image');
var link = xmlPromoNode.item(i).getAttribute('link');
var status = xmlPromoNode.item(i).getAttribute('status');
var abstract = xmlDoc.getElementsByTagName("abstract").item(i).firstChild.data;
var headLine = xmlDoc.getElementsByTagName("headLine").item(i).firstChild.data;
if (isEven(i)) {
var rtMargin = "1px";
} else {
var rtMargin = "0px";
}
if (i > 1) {
var tpMargin = "1px;"
} else {
var tpMargin = "0px;"
}
if (link) {
augustaLive += '<div style="float:left; width:125px; width:108px !important; height:116px; height:112px !important; padding:4px 9px 0px 8px; margin-right:'+rtMargin+'; margin-top:'+tpMargin+'; background:url('+image+') no-repeat top left; overflow:hidden;">';
augustaLive += ' <div style="float:left; height:112px; overflow:hidden;"><a href="'+link+'" class="boldYellowLink2">'+headLine+'</a><br/><a href="'+link+'" class="white2">'+abstract+'</a></div>';
if (status == 'live') {
augustaLive += '<div style="float:right; width:116px; height:49px; margin-top:-49px; margin-right:9px;"><a href="'+link+'"><img style="float:right;" src="/images/misc/mas_ms_live.gif" width="36" height="49" border="0" alt="LIVE"></a></div>';
}
augustaLive += '</div>';
} else {
augustaLive += '<div style="float:left; width:125px; width:108px !important; height:116px; height:112px !important; padding:4px 9px 0px 8px; margin-right:'+rtMargin+'; margin-top:'+tpMargin+'; background:url('+image+') no-repeat top left; overflow:hidden;">';
augustaLive += ' <div style="float:left; height:112px; overflow:hidden;"><span class="boldYellowLink2">'+headLine+'</span><br/><span class="sTextW">'+abstract+'</span></div>';
if (status == 'live') {
augustaLive += '<div style="float:right; width:125px; height:49px; margin-top:-49px;"><img style="float:right;" src="/images/misc/mas_ms_live.gif" width="36" height="49" border="0" alt="LIVE"></div>';
}
augustaLive += '</div>';
}
}
augustaLive += '</div>';
document.getElementById("augustaLive").innerHTML = augustaLive;
}
}
loopALTimer();