var ROW_SPACER='\u00A0\u00A0\u00A0\u00A0';updateRequired=false;queueProcessing=false;currentSearchId=0;textInput=null;rowCount=35;menuTable=null;menuTableRows=new Array();previousQuery=null;var targetDoc=null;var targetWin=null;function setupSearchField(win)
{targetWin=win;targetDoc=win.document;textInput=targetDoc.getElementById('gaSearch');textInput.onkeydown=keydown;textInput.onkeyup=keyup;textInput.onfocus=processFocus;textInput.onblur=processBlur;try
{}catch(e)
{}menuTable=targetDoc.createElement('table');menuTable.className='gaMenu';menuTable.style.display='none';menuTable.cellSpacing=0;menuTable.cellPadding=0;menuTable.border=0;menuTable.style.position='absolute';menuTable.style.zIndex=100;for(var i=0;i<rowCount;i++)
{var row=menuTable.insertRow(i);var td=targetDoc.createElement('td');td.align='left';td.idx=i;td.onmousedown=goToResource;row.appendChild(td);td.appendChild(targetDoc.createTextNode('\u00A0'));menuTableRows[i]=td;}targetDoc.body.appendChild(menuTable);}function gotapi_prepareData(data)
{for(var i=0;i<data.length-1;i++)
{var offset=data[i].p;data[i].p=data[i-offset];}}function removeAllChilds(argNode)
{while(argNode.firstChild)
{argNode.removeChild(argNode.firstChild);}}function processFocus(evt)
{var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(updateRequired) {update();}setMenuVisible(true);}function processBlur(evt)
{setMenuVisible(false);}function Module(id,path,title,url,popup)
{this.id=id;this.path=path;this.title=title;this.data=null;this.url=url;this.popup=popup;}function keyup(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key !=13 && key !=255 && key !=40 && key !=38)
{update();return false;}}function keydown(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key==13)
{showRow(selectedRow,false);var isNetscape=navigator.appName.toLowerCase().indexOf('netscape') >=0;if(isNetscape)
{if (evt.preventDefault) evt.preventDefault();if (evt.returnValue) evt.returnValue=false;if (evt.stopPropagation) evt.stopPropagation();}return false;}else if(key==40)
{selectRow(selectedRow+1,+1);setMenuVisible(true);}else if(key==38)
{selectRow(selectedRow-1,-1);setMenuVisible(true);}else if(key !=255)
{setMenuVisible(true);return true;}return false;}function selectRow(argRow,argDirection)
{var row=argRow;for(;;)
{if(row >=rowCount||row < 0||menuTableRows[row].style.display=='none')
{return;}if(menuTableRows[row].n)
{break;}row+=argDirection;}if(selectedRow >=0)
{var activeRow=menuTableRows[selectedRow];activeRow.className='gaRegularRow';}selectedRow=row;var activeRow=menuTableRows[selectedRow];activeRow.className='gaSelectedRow';}function search(argSearchId)
{if(currentSearchId !=argSearchId)
{return;}if(updateRequired)
previousQuery=null;var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(value==previousQuery)
{return;}var extendPrevious=value.indexOf(previousQuery)==0;previousQuery=value;var keywords=value.split(/[ \t\.=<>\/\\\*_\(\):]+/);var res=new Array();for(var i=0;i<keywords.length;i++)
{res.push(new RegExp(keywords[i],"i"));}var startTime=new Date();var result=searchModules(argSearchId,res,keywords[0].toLowerCase());if(!result)
{return;}displayedRows=result;var endTime=new Date();var queryExecutionTime=endTime.getTime()-startTime.getTime();var startTime=new Date();var proceed=showResults(argSearchId,displayedRows);var endTime=new Date();var resultsRenderingTime=endTime.getTime()-startTime.getTime();if(! proceed)
{return;}selectedRow=-1;setMenuVisible(true);selectRow(0,+1);addStats('s',value+':'+queryExecutionTime+":"+resultsRenderingTime);}function searchModules(argSearchId,argRegList,argPriorityKey)
{var results=new Array();var klen=argRegList.length;for(var m=0;m<allModules.length;m++)
{var module=allModules[m];var moduleResults=new Array();var exactMatchEnd=0;var startsWithEnd=0;results.push(moduleResults);if(!module.data||!module.active) continue;var dx=module.data;if(! dx)
{continue;}var len=dx.length-1;for(var i=0;i<len;i++)
{if(exactMatchEnd+startsWithEnd > rowCount)
{break;}if(currentSearchId !=argSearchId)
{return null;}var item=dx[i];var n=dx[i].n;var matched=false;var re=null;for(var k=0;k<klen;k++)
{re=argRegList[k];if(re.test(n))
{matched=true;break;}}if(!matched)
{continue;}if(klen==1||matchItemParents(item,argRegList,re))
{if(n)
{var ln=n.toLowerCase();if(ln==argPriorityKey)
{moduleResults.splice(exactMatchEnd++,0,item);}else if(ln.indexOf(argPriorityKey)==0)
{moduleResults.splice(exactMatchEnd+startsWithEnd++,0,item);}else
{moduleResults.push(item);}}else
{moduleResults.push(item);}}}}return results;}function matchItemParents(argItem,argRes,argExcludingRe)
{var klen=argRes.length;var failed=false;for(var k=0;k<klen;k++)
{var re=argRes[k];if(re==argExcludingRe)
{continue;}var matched=false;var current=argItem;while(current)
{if(re.test(current.n))
{matched=true;break;}current=current.p;}if(!matched)
{failed=true;break;}}return !failed;}function showResults(argSearchId,argResults)
{var nonemptyModuleCount=0;for(var i=0;i<argResults.length;i++)
{if(argResults[i].length > 0) nonemptyModuleCount++;}var row=0;if(nonemptyModuleCount > 0)
{var fairCount=(rowCount - nonemptyModuleCount*2)/ nonemptyModuleCount;fairCount=Math.floor(fairCount);var leftoverCount=0;for(var i=0;i<argResults.length;i++)
{var r=argResults[i];var module=allModules[i];if(module.active && module.data && r.length > 0 && r.length < fairCount)
{leftoverCount+=fairCount - r.length;}}for(var m=0;m<allModules.length;m++)
{var module=allModules[m];if(!module.data||!module.active) continue;var moduleResults=argResults[m];if(! module.data||moduleResults.length <=0)
{continue;}if(row+1 >=rowCount) break;updateResultRow(row++,module.title,'gaHeaderRow',null);var i=0;for(;i<moduleResults.length;i++)
{if(i >=fairCount)
{if(leftoverCount==0) break;leftoverCount--;}var n=moduleResults[i];updateResultRow(row++,getResourceTitle(n),'gaRegularRow',n);}if(i < moduleResults.length)
{updateResultRow(row++,ROW_SPACER+'...','gaFooterRow',null);}}}if(row==0)
{updateResultRow(row++,'... No Matches Found ...','gaHeaderRow',null);addStats('s','-');}while(row < rowCount)
{var tableRow=menuTableRows[row++];tableRow.style.display='none';}return true;}function updateResultRow(argRowId,argTitle,argStyle,argNode)
{var row=menuTableRows[argRowId];row.firstChild.nodeValue=argTitle;row.className=argStyle;row.n=argNode;row.style.display='';}function getResourceTitle(argItem)
{var result='';var item=argItem;while(item && (item.p||item==argItem))
{name=getResourceLabel(item);result=name+(result==''?'':' \u00A0\u2192\u00A0 '+result);item=item.p;}return ROW_SPACER+result;}function getResourceLabel(argItem)
{var name=argItem.n;var type=argItem.t;if(type=='T') name='<'+name+' ... >';else if(type=='M') name=name+' (...)';else if(type=='C') name='class '+name;else if(type=='P');else if(type=='I') name='interface '+name;else if(type=='O');else if(type=='D') name=/*'\u00A7\u00A7 '+*/name;else if(type=='S') name='{'+name+':... }';else if(type=='V');return name;}function setMenuVisible(argVisible)
{if(queueProcessing) return;var visibleNow=menuTable.style.display=='';if(visibleNow==argVisible)
{return;}if(argVisible)
{showPopupNode(menuTable,textInput,3,0);}else
{menuTable.style.display='none';}if(window.opera)
{siteFrame.style.display=argVisible?'none':'';}}function showPopupNode(showNode,relativeNode,offsetX,offsetY)
{var nodeX=relativeNode.offsetLeft;var nodeY=relativeNode.offsetTop+relativeNode.offsetHeight;var node=relativeNode;while(node.offsetParent)
{node=node.offsetParent;nodeX+=node.offsetLeft;nodeY+=node.offsetTop;}showNode.style.left=(nodeX+offsetX)+'px';showNode.style.top=(nodeY+offsetY)+'px';showNode.style.display='';}function getResourceContext(argNode)
{var context=argNode.p
?getResourceContext(argNode.p)
:'';var c=argNode.c;if(c)
{c=uncompressValue(c,argNode);context=c.indexOf('http://')==0
?c:context+c;}return context;}function getResourceUrl(argNode)
{if(argNode.u||argNode.c)
{var ctx=getResourceContext(argNode);var u=argNode.u;if(! u)
{return ctx;}u=uncompressValue(u,argNode);return u.indexOf('http://')==0
?u
:ctx+u;}else
{return argNode.p?getResourceUrl(argNode.p):null;}}function uncompressValue(argValue,argNode)
{var idx=argValue.indexOf('`');if(idx < 0)
{return argValue;}var name=argNode.n;return argValue.substr(0,idx)+name+argValue.substr(idx+1);}function goToResource()
{showRow(this.idx,false)
}function showRow(argRow,argMenuVisible)
{if(argRow < 0)
{return;}setMenuVisible(argMenuVisible);var row=menuTableRows[argRow];showItem(row.n);}function update()
{if(queueProcessing) {if(textInput.value=='') {return;}updateWhenLoaded=true;var lbl=$('loading')
if(lbl) lbl.style.color='black';return;}++currentSearchId;setTimeout('search('+currentSearchId+')',1);}function showItem(argItem)
{var url=getResourceUrl(argItem);targetWin.location.href=url;}allModules=[new Module(0,gaMod,gaTitle,null,null)];function startModuleProcessing(name)
{setupSearchField(window);queueProcessing=true;}function finishModuleProcessing(name,data)
{gotapi_prepareData(data);allModules[0].data=data;allModules[0].active=true;queueProcessing=false;if(updateWhenLoaded) update();document.getElementById('gaWait').style.display='none';document.getElementById('gaInfo').style.display='';}function addStats(argType,argMsg)
{}function sendStats()
{}startModuleProcessing('module_jquery.js');var P = 'P';
var C = 'C';
var I = 'I';
var M = 'M';
var O = 'O';
var T = 'T';
var D = 'D';
var S = 'S';
var V = 'V';
var tmp = new Array(
{t:D,p:1},
{t:P,n:'AJAX',p:1},
{t:M,n:'$.ajax(Hash prop)',u:'http://manalang.com/jquery/docs/index.html#$.ajax-prop',p:1},
{t:M,n:'ajaxComplete(Function callback)',u:'http://manalang.com/jquery/docs/index.html#ajaxComplete-callback',p:2},
{t:M,n:'ajaxError(Function callback)',u:'http://manalang.com/jquery/docs/index.html#ajaxError-callback',p:3},
{t:M,n:'ajaxStart(Function callback)',u:'http://manalang.com/jquery/docs/index.html#ajaxStart-callback',p:4},
{t:M,n:'ajaxStop(Function callback)',u:'http://manalang.com/jquery/docs/index.html#ajaxStop-callback',p:5},
{t:M,n:'ajaxSuccess(Function callback)',u:'http://manalang.com/jquery/docs/index.html#ajaxSuccess-callback',p:6},
{t:M,n:'$.ajaxTimeout(Number time)',u:'http://manalang.com/jquery/docs/index.html#$.ajaxTimeout-time',p:7},
{t:M,n:'$.get(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#$.get-url-params-callback',p:8},
{t:M,n:'$.getIfModified(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#$.getIfModified-url-params-callback',p:9},
{t:M,n:'$.getJSON(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#$.getJSON-url-params-callback',p:10},
{t:M,n:'$.getScript(String url, Function callback)',u:'http://manalang.com/jquery/docs/index.html#$.getScript-url-callback',p:11},
{t:M,n:'load(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#load-url-params-callback',p:12},
{t:M,n:'loadIfModified(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#loadIfModified-url-params-callback',p:13},
{t:M,n:'$.post(String url, Hash params, Function callback)',u:'http://manalang.com/jquery/docs/index.html#$.post-url-params-callback',p:14},
{t:M,n:'serialize()',u:'http://manalang.com/jquery/docs/index.html#serialize',p:15},
{t:P,n:'Core',p:17},
{t:M,n:'$(String expr)',u:'http://manalang.com/jquery/docs/index.html#$-expr',p:1},
{t:M,n:'$(Element elem)',u:'http://manalang.com/jquery/docs/index.html#$-elem',p:2},
{t:M,n:'$(Array<Element> elems)',u:'http://manalang.com/jquery/docs/index.html#$-elems',p:3},
{t:M,n:'$(Function fn)',u:'http://manalang.com/jquery/docs/index.html#$-fn',p:4},
{t:M,n:'$(jQuery obj)',u:'http://manalang.com/jquery/docs/index.html#$-obj',p:5},
{t:M,n:'$(String expr, Element context)',u:'http://manalang.com/jquery/docs/index.html#$-expr-context',p:6},
{t:M,n:'each(Function fn)',u:'http://manalang.com/jquery/docs/index.html#each-fn',p:7},
{t:M,n:'eq(Number pos)',u:'http://manalang.com/jquery/docs/index.html#eq-pos',p:8},
{t:M,n:'get()',u:'http://manalang.com/jquery/docs/index.html#get',p:9},
{t:M,n:'get(Number num)',u:'http://manalang.com/jquery/docs/index.html#get-num',p:10},
{t:M,n:'gt(Number pos)',u:'http://manalang.com/jquery/docs/index.html#gt-pos',p:11},
{t:M,n:'index(Object obj)',u:'http://manalang.com/jquery/docs/index.html#index-obj',p:12},
{t:M,n:'length()',u:'http://manalang.com/jquery/docs/index.html#length',p:13},
{t:M,n:'lt(Number pos)',u:'http://manalang.com/jquery/docs/index.html#lt-pos',p:14},
{t:M,n:'size()',u:'http://manalang.com/jquery/docs/index.html#size',p:15},
{t:P,n:'CSS',p:33},
{t:M,n:'background()',u:'http://manalang.com/jquery/docs/index.html#background',p:1},
{t:M,n:'background(String val)',u:'http://manalang.com/jquery/docs/index.html#background-val',p:2},
{t:M,n:'color()',u:'http://manalang.com/jquery/docs/index.html#color',p:3},
{t:M,n:'color(String val)',u:'http://manalang.com/jquery/docs/index.html#color-val',p:4},
{t:M,n:'css(String name)',u:'http://manalang.com/jquery/docs/index.html#css-name',p:5},
{t:M,n:'css(Hash prop)',u:'http://manalang.com/jquery/docs/index.html#css-prop',p:6},
{t:M,n:'css(String key, Object value)',u:'http://manalang.com/jquery/docs/index.html#css-key-value',p:7},
{t:M,n:'float()',u:'http://manalang.com/jquery/docs/index.html#float',p:8},
{t:M,n:'float(String val)',u:'http://manalang.com/jquery/docs/index.html#float-val',p:9},
{t:M,n:'height()',u:'http://manalang.com/jquery/docs/index.html#height',p:10},
{t:M,n:'height(String val)',u:'http://manalang.com/jquery/docs/index.html#height-val',p:11},
{t:M,n:'left()',u:'http://manalang.com/jquery/docs/index.html#left',p:12},
{t:M,n:'left(String val)',u:'http://manalang.com/jquery/docs/index.html#left-val',p:13},
{t:M,n:'overflow()',u:'http://manalang.com/jquery/docs/index.html#overflow',p:14},
{t:M,n:'overflow(String val)',u:'http://manalang.com/jquery/docs/index.html#overflow-val',p:15},
{t:M,n:'position()',u:'http://manalang.com/jquery/docs/index.html#position',p:16},
{t:M,n:'position(String val)',u:'http://manalang.com/jquery/docs/index.html#position-val',p:17},
{t:M,n:'top()',u:'http://manalang.com/jquery/docs/index.html#top',p:18},
{t:M,n:'top(String val)',u:'http://manalang.com/jquery/docs/index.html#top-val',p:19},
{t:M,n:'width()',u:'http://manalang.com/jquery/docs/index.html#width',p:20},
{t:M,n:'width(String val)',u:'http://manalang.com/jquery/docs/index.html#width-val',p:21},
{t:P,n:'DOM',p:55},
{t:M,n:'addClass(String class)',u:'http://manalang.com/jquery/docs/index.html#addClass-class',p:1},
{t:M,n:'attr(String name)',u:'http://manalang.com/jquery/docs/index.html#attr-name',p:2},
{t:M,n:'attr(Hash prop)',u:'http://manalang.com/jquery/docs/index.html#attr-prop',p:3},
{t:M,n:'attr(String key, Object value)',u:'http://manalang.com/jquery/docs/index.html#attr-key-value',p:4},
{t:M,n:'removeAttr(String name)',u:'http://manalang.com/jquery/docs/index.html#removeAttr-name',p:5},
{t:M,n:'removeClass(String class)',u:'http://manalang.com/jquery/docs/index.html#removeClass-class',p:6},
{t:M,n:'text()',u:'http://manalang.com/jquery/docs/index.html#text',p:7},
{t:M,n:'toggleClass(String class)',u:'http://manalang.com/jquery/docs/index.html#toggleClass-class',p:8},
{t:P,n:'DOM/Attributes',p:64},
{t:M,n:'href()',u:'http://manalang.com/jquery/docs/index.html#href',p:1},
{t:M,n:'href(String val)',u:'http://manalang.com/jquery/docs/index.html#href-val',p:2},
{t:M,n:'html()',u:'http://manalang.com/jquery/docs/index.html#html',p:3},
{t:M,n:'html(String val)',u:'http://manalang.com/jquery/docs/index.html#html-val',p:4},
{t:M,n:'id()',u:'http://manalang.com/jquery/docs/index.html#id',p:5},
{t:M,n:'id(String val)',u:'http://manalang.com/jquery/docs/index.html#id-val',p:6},
{t:M,n:'name()',u:'http://manalang.com/jquery/docs/index.html#name',p:7},
{t:M,n:'name(String val)',u:'http://manalang.com/jquery/docs/index.html#name-val',p:8},
{t:M,n:'rel()',u:'http://manalang.com/jquery/docs/index.html#rel',p:9},
{t:M,n:'rel(String val)',u:'http://manalang.com/jquery/docs/index.html#rel-val',p:10},
{t:M,n:'src()',u:'http://manalang.com/jquery/docs/index.html#src',p:11},
{t:M,n:'src(String val)',u:'http://manalang.com/jquery/docs/index.html#src-val',p:12},
{t:M,n:'title()',u:'http://manalang.com/jquery/docs/index.html#title',p:13},
{t:M,n:'title(String val)',u:'http://manalang.com/jquery/docs/index.html#title-val',p:14},
{t:M,n:'val()',u:'http://manalang.com/jquery/docs/index.html#val',p:15},
{t:M,n:'val(String val)',u:'http://manalang.com/jquery/docs/index.html#val-val',p:16},
{t:P,n:'DOM/Manipulation',p:81},
{t:M,n:'after(String html)',u:'http://manalang.com/jquery/docs/index.html#after-html',p:1},
{t:M,n:'after(Element elem)',u:'http://manalang.com/jquery/docs/index.html#after-elem',p:2},
{t:M,n:'after(Array<Element> elems)',u:'http://manalang.com/jquery/docs/index.html#after-elems',p:3},
{t:M,n:'append(String html)',u:'http://manalang.com/jquery/docs/index.html#append-html',p:4},
{t:M,n:'append(Element elem)',u:'http://manalang.com/jquery/docs/index.html#append-elem',p:5},
{t:M,n:'append(Array<Element> elems)',u:'http://manalang.com/jquery/docs/index.html#append-elems',p:6},
{t:M,n:'appendTo(String expr)',u:'http://manalang.com/jquery/docs/index.html#appendTo-expr',p:7},
{t:M,n:'before(String html)',u:'http://manalang.com/jquery/docs/index.html#before-html',p:8},
{t:M,n:'before(Element elem)',u:'http://manalang.com/jquery/docs/index.html#before-elem',p:9},
{t:M,n:'before(Array<Element> elems)',u:'http://manalang.com/jquery/docs/index.html#before-elems',p:10},
{t:M,n:'clone()',u:'http://manalang.com/jquery/docs/index.html#clone',p:11},
{t:M,n:'empty()',u:'http://manalang.com/jquery/docs/index.html#empty',p:12},
{t:M,n:'insertAfter(String expr)',u:'http://manalang.com/jquery/docs/index.html#insertAfter-expr',p:13},
{t:M,n:'insertBefore(String expr)',u:'http://manalang.com/jquery/docs/index.html#insertBefore-expr',p:14},
{t:M,n:'prepend(String html)',u:'http://manalang.com/jquery/docs/index.html#prepend-html',p:15},
{t:M,n:'prepend(Element elem)',u:'http://manalang.com/jquery/docs/index.html#prepend-elem',p:16},
{t:M,n:'prepend(Array<Element> elems)',u:'http://manalang.com/jquery/docs/index.html#prepend-elems',p:17},
{t:M,n:'prependTo(String expr)',u:'http://manalang.com/jquery/docs/index.html#prependTo-expr',p:18},
{t:M,n:'remove()',u:'http://manalang.com/jquery/docs/index.html#remove',p:19},
{t:M,n:'remove(String expr)',u:'http://manalang.com/jquery/docs/index.html#remove-expr',p:20},
{t:M,n:'wrap(String html)',u:'http://manalang.com/jquery/docs/index.html#wrap-html',p:21},
{t:M,n:'wrap(Element elem)',u:'http://manalang.com/jquery/docs/index.html#wrap-elem',p:22},
{t:P,n:'DOM/Traversing',p:104},
{t:M,n:'add(String expr)',u:'http://manalang.com/jquery/docs/index.html#add-expr',p:1},
{t:M,n:'add(Array<Element> els)',u:'http://manalang.com/jquery/docs/index.html#add-els',p:2},
{t:M,n:'add(Element el)',u:'http://manalang.com/jquery/docs/index.html#add-el',p:3},
{t:M,n:'ancestors()',u:'http://manalang.com/jquery/docs/index.html#ancestors',p:4},
{t:M,n:'ancestors(String expr)',u:'http://manalang.com/jquery/docs/index.html#ancestors-expr',p:5},
{t:M,n:'children()',u:'http://manalang.com/jquery/docs/index.html#children',p:6},
{t:M,n:'children(String expr)',u:'http://manalang.com/jquery/docs/index.html#children-expr',p:7},
{t:M,n:'contains(String str)',u:'http://manalang.com/jquery/docs/index.html#contains-str',p:8},
{t:M,n:'end()',u:'http://manalang.com/jquery/docs/index.html#end',p:9},
{t:M,n:'filter(String expr)',u:'http://manalang.com/jquery/docs/index.html#filter-expr',p:10},
{t:M,n:'filter(Array<String> exprs)',u:'http://manalang.com/jquery/docs/index.html#filter-exprs',p:11},
{t:M,n:'find(String expr)',u:'http://manalang.com/jquery/docs/index.html#find-expr',p:12},
{t:M,n:'is(String expr)',u:'http://manalang.com/jquery/docs/index.html#is-expr',p:13},
{t:M,n:'next()',u:'http://manalang.com/jquery/docs/index.html#next',p:14},
{t:M,n:'next(String expr)',u:'http://manalang.com/jquery/docs/index.html#next-expr',p:15},
{t:M,n:'not(Element el)',u:'http://manalang.com/jquery/docs/index.html#not-el',p:16},
{t:M,n:'not(String expr)',u:'http://manalang.com/jquery/docs/index.html#not-expr',p:17},
{t:M,n:'parent()',u:'http://manalang.com/jquery/docs/index.html#parent',p:18},
{t:M,n:'parent(String expr)',u:'http://manalang.com/jquery/docs/index.html#parent-expr',p:19},
{t:M,n:'parents()',u:'http://manalang.com/jquery/docs/index.html#parents',p:20},
{t:M,n:'parents(String expr)',u:'http://manalang.com/jquery/docs/index.html#parents-expr',p:21},
{t:M,n:'prev()',u:'http://manalang.com/jquery/docs/index.html#prev',p:22},
{t:M,n:'prev(String expr)',u:'http://manalang.com/jquery/docs/index.html#prev-expr',p:23},
{t:M,n:'siblings()',u:'http://manalang.com/jquery/docs/index.html#siblings',p:24},
{t:M,n:'siblings(String expr)',u:'http://manalang.com/jquery/docs/index.html#siblings-expr',p:25},
{t:P,n:'Effects',p:130},
{t:M,n:'hide()',u:'http://manalang.com/jquery/docs/index.html#hide',p:1},
{t:M,n:'show()',u:'http://manalang.com/jquery/docs/index.html#show',p:2},
{t:M,n:'toggle()',u:'http://manalang.com/jquery/docs/index.html#toggle',p:3},
{t:P,n:'Effects/Animations',p:134},
{t:M,n:'animate(Hash params, Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#animate-params-speed-callback',p:1},
{t:M,n:'fadeIn(Object speed)',u:'http://manalang.com/jquery/docs/index.html#fadeIn-speed',p:2},
{t:M,n:'fadeIn(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#fadeIn-speed-callback',p:3},
{t:M,n:'fadeOut(Object speed)',u:'http://manalang.com/jquery/docs/index.html#fadeOut-speed',p:4},
{t:M,n:'fadeOut(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#fadeOut-speed-callback',p:5},
{t:M,n:'fadeTo(Object speed, Number opacity)',u:'http://manalang.com/jquery/docs/index.html#fadeTo-speed-opacity',p:6},
{t:M,n:'fadeTo(Object speed, Number opacity, Function callback)',u:'http://manalang.com/jquery/docs/index.html#fadeTo-speed-opacity-callback',p:7},
{t:M,n:'hide(Object speed)',u:'http://manalang.com/jquery/docs/index.html#hide-speed',p:8},
{t:M,n:'hide(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#hide-speed-callback',p:9},
{t:M,n:'show(Object speed)',u:'http://manalang.com/jquery/docs/index.html#show-speed',p:10},
{t:M,n:'show(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#show-speed-callback',p:11},
{t:M,n:'slideDown(Object speed)',u:'http://manalang.com/jquery/docs/index.html#slideDown-speed',p:12},
{t:M,n:'slideDown(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#slideDown-speed-callback',p:13},
{t:M,n:'slideToggle(Object speed)',u:'http://manalang.com/jquery/docs/index.html#slideToggle-speed',p:14},
{t:M,n:'slideToggle(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#slideToggle-speed-callback',p:15},
{t:M,n:'slideUp(Object speed)',u:'http://manalang.com/jquery/docs/index.html#slideUp-speed',p:16},
{t:M,n:'slideUp(Object speed, Function callback)',u:'http://manalang.com/jquery/docs/index.html#slideUp-speed-callback',p:17},
{t:P,n:'Events',p:152},
{t:M,n:'bind(String type, Function fn)',u:'http://manalang.com/jquery/docs/index.html#bind-type-fn',p:1},
{t:M,n:'hover(Function over, Function out)',u:'http://manalang.com/jquery/docs/index.html#hover-over-out',p:2},
{t:M,n:'ready(Function fn)',u:'http://manalang.com/jquery/docs/index.html#ready-fn',p:3},
{t:M,n:'toggle(Function even, Function odd)',u:'http://manalang.com/jquery/docs/index.html#toggle-even-odd',p:4},
{t:M,n:'trigger(String type)',u:'http://manalang.com/jquery/docs/index.html#trigger-type',p:5},
{t:M,n:'unbind()',u:'http://manalang.com/jquery/docs/index.html#unbind',p:6},
{t:M,n:'unbind(String type)',u:'http://manalang.com/jquery/docs/index.html#unbind-type',p:7},
{t:M,n:'unbind(String type, Function fn)',u:'http://manalang.com/jquery/docs/index.html#unbind-type-fn',p:8},
{t:P,n:'Events/Browser',p:161},
{t:M,n:'error()',u:'http://manalang.com/jquery/docs/index.html#error',p:1},
{t:M,n:'error(Function fn)',u:'http://manalang.com/jquery/docs/index.html#error-fn',p:2},
{t:M,n:'load(Function fn)',u:'http://manalang.com/jquery/docs/index.html#load-fn',p:3},
{t:M,n:'oneerror(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneerror-fn',p:4},
{t:M,n:'oneload(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneload-fn',p:5},
{t:M,n:'oneresize(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneresize-fn',p:6},
{t:M,n:'onescroll(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onescroll-fn',p:7},
{t:M,n:'oneunload(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneunload-fn',p:8},
{t:M,n:'resize()',u:'http://manalang.com/jquery/docs/index.html#resize',p:9},
{t:M,n:'resize(Function fn)',u:'http://manalang.com/jquery/docs/index.html#resize-fn',p:10},
{t:M,n:'scroll()',u:'http://manalang.com/jquery/docs/index.html#scroll',p:11},
{t:M,n:'scroll(Function fn)',u:'http://manalang.com/jquery/docs/index.html#scroll-fn',p:12},
{t:M,n:'unerror()',u:'http://manalang.com/jquery/docs/index.html#unerror',p:13},
{t:M,n:'unerror(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unerror-fn',p:14},
{t:M,n:'unload()',u:'http://manalang.com/jquery/docs/index.html#unload',p:15},
{t:M,n:'unload()',u:'http://manalang.com/jquery/docs/index.html#unload',p:16},
{t:M,n:'unload(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unload-fn',p:17},
{t:M,n:'unload(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unload-fn',p:18},
{t:M,n:'unresize()',u:'http://manalang.com/jquery/docs/index.html#unresize',p:19},
{t:M,n:'unresize(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unresize-fn',p:20},
{t:M,n:'unscroll()',u:'http://manalang.com/jquery/docs/index.html#unscroll',p:21},
{t:M,n:'unscroll(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unscroll-fn',p:22},
{t:M,n:'ununload()',u:'http://manalang.com/jquery/docs/index.html#ununload',p:23},
{t:M,n:'ununload(Function fn)',u:'http://manalang.com/jquery/docs/index.html#ununload-fn',p:24},
{t:P,n:'Events/Form',p:186},
{t:M,n:'change()',u:'http://manalang.com/jquery/docs/index.html#change',p:1},
{t:M,n:'change(Function fn)',u:'http://manalang.com/jquery/docs/index.html#change-fn',p:2},
{t:M,n:'onechange(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onechange-fn',p:3},
{t:M,n:'oneselect(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneselect-fn',p:4},
{t:M,n:'onesubmit(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onesubmit-fn',p:5},
{t:M,n:'select()',u:'http://manalang.com/jquery/docs/index.html#select',p:6},
{t:M,n:'select(Function fn)',u:'http://manalang.com/jquery/docs/index.html#select-fn',p:7},
{t:M,n:'submit()',u:'http://manalang.com/jquery/docs/index.html#submit',p:8},
{t:M,n:'submit(Function fn)',u:'http://manalang.com/jquery/docs/index.html#submit-fn',p:9},
{t:M,n:'unchange()',u:'http://manalang.com/jquery/docs/index.html#unchange',p:10},
{t:M,n:'unchange(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unchange-fn',p:11},
{t:M,n:'unselect()',u:'http://manalang.com/jquery/docs/index.html#unselect',p:12},
{t:M,n:'unselect(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unselect-fn',p:13},
{t:M,n:'unsubmit()',u:'http://manalang.com/jquery/docs/index.html#unsubmit',p:14},
{t:M,n:'unsubmit(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unsubmit-fn',p:15},
{t:P,n:'Events/Keyboard',p:202},
{t:M,n:'keydown()',u:'http://manalang.com/jquery/docs/index.html#keydown',p:1},
{t:M,n:'keydown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#keydown-fn',p:2},
{t:M,n:'keypress()',u:'http://manalang.com/jquery/docs/index.html#keypress',p:3},
{t:M,n:'keypress(Function fn)',u:'http://manalang.com/jquery/docs/index.html#keypress-fn',p:4},
{t:M,n:'keyup()',u:'http://manalang.com/jquery/docs/index.html#keyup',p:5},
{t:M,n:'keyup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#keyup-fn',p:6},
{t:M,n:'onekeydown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onekeydown-fn',p:7},
{t:M,n:'onekeypress(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onekeypress-fn',p:8},
{t:M,n:'onekeyup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onekeyup-fn',p:9},
{t:M,n:'unkeydown()',u:'http://manalang.com/jquery/docs/index.html#unkeydown',p:10},
{t:M,n:'unkeydown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unkeydown-fn',p:11},
{t:M,n:'unkeypress()',u:'http://manalang.com/jquery/docs/index.html#unkeypress',p:12},
{t:M,n:'unkeypress(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unkeypress-fn',p:13},
{t:M,n:'unkeyup()',u:'http://manalang.com/jquery/docs/index.html#unkeyup',p:14},
{t:M,n:'unkeyup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unkeyup-fn',p:15},
{t:P,n:'Events/Mouse',p:218},
{t:M,n:'click()',u:'http://manalang.com/jquery/docs/index.html#click',p:1},
{t:M,n:'click(Function fn)',u:'http://manalang.com/jquery/docs/index.html#click-fn',p:2},
{t:M,n:'dblclick()',u:'http://manalang.com/jquery/docs/index.html#dblclick',p:3},
{t:M,n:'dblclick(Function fn)',u:'http://manalang.com/jquery/docs/index.html#dblclick-fn',p:4},
{t:M,n:'mousedown()',u:'http://manalang.com/jquery/docs/index.html#mousedown',p:5},
{t:M,n:'mousedown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#mousedown-fn',p:6},
{t:M,n:'mousemove()',u:'http://manalang.com/jquery/docs/index.html#mousemove',p:7},
{t:M,n:'mousemove(Function fn)',u:'http://manalang.com/jquery/docs/index.html#mousemove-fn',p:8},
{t:M,n:'mouseout()',u:'http://manalang.com/jquery/docs/index.html#mouseout',p:9},
{t:M,n:'mouseout(Function fn)',u:'http://manalang.com/jquery/docs/index.html#mouseout-fn',p:10},
{t:M,n:'mouseover()',u:'http://manalang.com/jquery/docs/index.html#mouseover',p:11},
{t:M,n:'mouseover(Function fn)',u:'http://manalang.com/jquery/docs/index.html#mouseover-fn',p:12},
{t:M,n:'mouseup()',u:'http://manalang.com/jquery/docs/index.html#mouseup',p:13},
{t:M,n:'mouseup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#mouseup-fn',p:14},
{t:M,n:'oneclick(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneclick-fn',p:15},
{t:M,n:'onedblclick(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onedblclick-fn',p:16},
{t:M,n:'onemousedown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onemousedown-fn',p:17},
{t:M,n:'onemousemove(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onemousemove-fn',p:18},
{t:M,n:'onemouseout(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onemouseout-fn',p:19},
{t:M,n:'onemouseover(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onemouseover-fn',p:20},
{t:M,n:'onemouseup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onemouseup-fn',p:21},
{t:M,n:'unclick()',u:'http://manalang.com/jquery/docs/index.html#unclick',p:22},
{t:M,n:'unclick(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unclick-fn',p:23},
{t:M,n:'undblclick()',u:'http://manalang.com/jquery/docs/index.html#undblclick',p:24},
{t:M,n:'undblclick(Function fn)',u:'http://manalang.com/jquery/docs/index.html#undblclick-fn',p:25},
{t:M,n:'unmousedown()',u:'http://manalang.com/jquery/docs/index.html#unmousedown',p:26},
{t:M,n:'unmousedown(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unmousedown-fn',p:27},
{t:M,n:'unmousemove()',u:'http://manalang.com/jquery/docs/index.html#unmousemove',p:28},
{t:M,n:'unmousemove(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unmousemove-fn',p:29},
{t:M,n:'unmouseout()',u:'http://manalang.com/jquery/docs/index.html#unmouseout',p:30},
{t:M,n:'unmouseout(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unmouseout-fn',p:31},
{t:M,n:'unmouseover()',u:'http://manalang.com/jquery/docs/index.html#unmouseover',p:32},
{t:M,n:'unmouseover(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unmouseover-fn',p:33},
{t:M,n:'unmouseup()',u:'http://manalang.com/jquery/docs/index.html#unmouseup',p:34},
{t:M,n:'unmouseup(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unmouseup-fn',p:35},
{t:P,n:'Events/UI',p:254},
{t:M,n:'blur()',u:'http://manalang.com/jquery/docs/index.html#blur',p:1},
{t:M,n:'blur(Function fn)',u:'http://manalang.com/jquery/docs/index.html#blur-fn',p:2},
{t:M,n:'focus()',u:'http://manalang.com/jquery/docs/index.html#focus',p:3},
{t:M,n:'focus(Function fn)',u:'http://manalang.com/jquery/docs/index.html#focus-fn',p:4},
{t:M,n:'oneblur(Function fn)',u:'http://manalang.com/jquery/docs/index.html#oneblur-fn',p:5},
{t:M,n:'onefocus(Function fn)',u:'http://manalang.com/jquery/docs/index.html#onefocus-fn',p:6},
{t:M,n:'unblur()',u:'http://manalang.com/jquery/docs/index.html#unblur',p:7},
{t:M,n:'unblur(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unblur-fn',p:8},
{t:M,n:'unfocus()',u:'http://manalang.com/jquery/docs/index.html#unfocus',p:9},
{t:M,n:'unfocus(Function fn)',u:'http://manalang.com/jquery/docs/index.html#unfocus-fn',p:10},
{t:P,n:'Javascript',p:265},
{t:M,n:'$.browser()',u:'http://manalang.com/jquery/docs/index.html#$.browser',p:1},
{t:M,n:'$.each(Object obj, Function fn)',u:'http://manalang.com/jquery/docs/index.html#$.each-obj-fn',p:2},
{t:M,n:'$.extend(Object obj, Object prop)',u:'http://manalang.com/jquery/docs/index.html#$.extend-obj-prop',p:3},
{t:M,n:'$.grep(Array array, Function fn, Boolean inv)',u:'http://manalang.com/jquery/docs/index.html#$.grep-array-fn-inv',p:4},
{t:M,n:'$.map(Array array, Function fn)',u:'http://manalang.com/jquery/docs/index.html#$.map-array-fn',p:5},
{t:M,n:'$.merge(Array first, Array second)',u:'http://manalang.com/jquery/docs/index.html#$.merge-first-second',p:6},
{t:M,n:'$.trim(String str)',u:'http://manalang.com/jquery/docs/index.html#$.trim-str',p:7},
null);
finishModuleProcessing('module_jquery.js',tmp);