function clickout_layer_class (){
	this.isReady = false; //Ist die Seite vollständig geladen?
    
	this._showLayer = function(link) {
		tb_show('Der richtige DSL-Anbieter ... wir beraten Sie gern!', link+'?keepThis=true&TB_iframe=true&height=475&width=440&modal=true', '');
	}
    
	this.show = function(link) {        
		if (false == this.isReady) {
			window.setTimeout("clickout_layer.show( '"+link+"' )", 2000);
			return false;
        }

		this._showLayer(link);
		return true;
	}
    
	this.setReady = function() {
		this.isReady = true;
	}
}
var clickout_layer = new clickout_layer_class();