function metrixlab_onready(el, func){
	this.args = new Array(el, func);
	this.doTry = function(){
		try{
			var el = eval(this.args[0]);
			el.onloading = this.args[1];
			el.onloading();
			clearInterval(this.args[2]);
		}
		catch(e){}
	}
	this.doTry.bind = function(object){
		var method = this;
		return function(){
			method.apply(object);
		}
	}
	this.args[2] = setInterval(this.doTry.bind(this), 250);
	return this;
}

new metrixlab_onready("document.body", function(){
	var MLbody = document.getElementsByTagName('body').item(0);
	var MLiframe = document.createElement('iframe');
	MLiframe.id = 'metrixlab_iframe';
	MLiframe.src = 'http://metrixlab61.customers.luna.net/p08680/tag_script.php?project=p08680&sid=1a_uk_na_3dhomepage&pid=&cid=1001';
	MLiframe.scrolling='no';
	MLiframe.width='0';
	MLiframe.height='0';
	MLiframe.frameborder='0';
	MLiframe.style.zIndex = '0';
	MLiframe.style.position = 'absolute';
	MLiframe.style.top = "-2000px";
	MLiframe.style.left = "-2000px";
	MLiframe.style.display = 'none';
	MLbody.insertBefore(MLiframe, MLbody.childNodes[0]);
});