Event.observe(window, 'load', function() {
	$$('div.advertposition').each(function(el) { 
    	new Ajax.Request('/banners/getAdvertData/'+el.id+'/',
			 { onSuccess: function(response) {
			   				el.update(response.responseText);
						  }
	   });	
	});
});
