$(document).ready(function() {
	$('a[href^=http]').click( function() {
	    window.open(this.href);
	    return false;
	});
	$.post("news.php", {
			tickerfeed: true
		}, function(data) {
			$('#bannerholder ul').html(data);
	});
});
