glow.ready(function() {
	glow.dom.get("a").each(function(i) {
		if (this.getAttribute("href")) {
			if (this.getAttribute("href").indexOf("/iplayer/console/") != -1 ) {
				if (this.className) { this.className = this.className + " listen"; }
				else                { this.className = "listen"; }
				this.onclick = function() {
					var URL = this.getAttribute("href");					
					window.open(URL,'aod','width=512,height=271,toolbar=no,personalbar=no,location=no,directories=no,statusbar=no,menubar=no,status=no,resizable=yes,left=60,screenX=60,top=100,screenY=100');
					return false;
				}
			}
		}
	});
});
