function PrAdsAgentObj(adnum) {
	this.adnum = adnum;
	this.dataFile = "CLASS_ALL_20100209";
	this.template = "default";
}

PrAdsAgentObj.prototype.getSrc = function() {
	return "http://ads.eagletribune.com/printads/thumbs/" + this.adnum + ".jpg";
}

PrAdsAgentObj.prototype.getUrl = function() {
	return "http://ads.eagletribune.com/cgi-bin/printad_viewer.pl?adnumber=" + this.adnum + "&datafilename=" +this.dataFile + "&templatename=" +this.template;
}

PrAdsAgentObj.prototype.getDataFile = function() {
	return this.dataFile;
}


var PrAds = [new PrAdsAgentObj("10276312")
,new PrAdsAgentObj("10323532")
,new PrAdsAgentObj("10334176")
,new PrAdsAgentObj("10372831")
,new PrAdsAgentObj("10375828")
];