/* NEWS FUNCTIONS
-----------------------------------------------------*/

window.addEvent('domready', function() {
	var g = $E('form input[type=submit]');	
	g.style.display = 'none';
	
	var list = $$('#list a');
	list.each(function(el) {
		el.onclick = function(e) {
			var u = getCleanUrl(el.href);
			var myAjax = new Ajax( '/ajax-get-data.php', { postBody:'article='+u, onComplete:addPopUp }).request();
			return false;	
		}
	});
});
