function checkAC(){
	if(YAHOO==undefined) { setTimeout(checkAC, 10); return; }
	if(YAHOO.widget==undefined) { setTimeout(checkAC, 10); return; }
	if(YAHOO.widget.AutoComplete==undefined) { setTimeout(checkAC, 10); return; }
	YAHOO.widget.AutoComplete.prototype.queryDelay=0;
	YAHOO.widget.AutoComplete.prototype.useIFrame=true;
	YAHOO.widget.AutoComplete.prototype._initContainerHelpers=function(){
		if(this.useShadow&&!this._oContainer._oShadow){
		var _74=document.createElement("div");
		_74.className="yui-ac-shadow";
		this._oContainer._oShadow=this._oContainer.appendChild(_74);
		}
		if(this.useIFrame&&!this._oContainer._oIFrame){
		var _75=document.createElement("iframe");
		_75.src=this._iFrameSrc;
		_75.frameBorder=0;
		_75.scrolling="no";
		_75.style.filter="progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
		_75.style.position="absolute";
		_75.style.width="0px";
		_75.style.height="0px";
		_75.tabIndex=-1;
		this._oContainer._oIFrame=this._oContainer.appendChild(_75);
		}
	};
}
if(document.all&&document.all.tags&&!window.opera&&navigator!=undefined&&navigator.appVersion.indexOf("MSIE")>-1)
	setTimeout(checkAC,10);
