$(document).ready(function() {
    var div = $('<div />');
    div.load('ads.shtml #ads', function() {
	var number = Math.floor(Math.random() * (div.find('#ads > *').length));
	var quote = div.find('#ads > *').eq(number).html();

	$("#adarea").html(quote);
    });
});
