function error_rss(){}

$.ajax({url:"Rss.aspx?type=4&cat=0",success:parse_cal,error:error_rss});
function parse_cal(d){
var h='';
			$(d).find('item').each(function(i){var l=$(this).find('link').text().replace("http://localhost/ttx/","");h+='<a href="'+l+'">'+pubDate($(this).find('pubDate').text())+" - "+$(this).find('title').text()+'</a>';});
			$('#keyevents').html(h);
			
			
$('#keyevents').cycle({ fx:'scrollUp', timeout: 4000});

}

function pubDate(s){
		var shortMonths = [];
		shortMonths["Jan"] = "January";
		shortMonths["Feb"] = "February";
		shortMonths["Mar"] = "March";
		shortMonths["Apr"] = "April";
		shortMonths["May"] = "May";
		shortMonths["Jun"] = "June";
		shortMonths["Jul"] = "July";
		shortMonths["Aug"] = "August";
		shortMonths["Sep"] = "September";
		shortMonths["Oct"] = "October";
		shortMonths["Nov"] = "November";
		shortMonths["Dec"] = "December";
		

	 var values = s.split(/ /);
                        year = values[3];
                        month = values[2];
                        dayOfMonth = values[1];
	return  shortMonths[month]+' '+dayOfMonth+', '+year;
														
}



