connect(window, "onload", function () {
	/**
	 * we setup the ibox
	 */
	forEach(getElementsByTagAndClassName('img', 'dailyad'), function(ad){
		connect(ad, "onclick", partial(function(self){
		if (showIbox("/ad/" + self.id, self.name, {'type': '3','width': 720, 'height': 600})) {
			showBG();
			window.onscroll = maintPos;
			window.onresize = maintPos;
			return false
		}
	}, ad))
	})
})

