/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008/02/28 $
 * $Rev: 4663 $
 */
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();
if(window.jstiming)window.jstiming.report=function(h,a){var c="";if(window.jstiming.pt){c+="&srt="+window.jstiming.pt;delete window.jstiming.pt}if(window.external&&window.external.tran)c+="&tran="+window.external.tran;var e=h.t,b=e.start;delete e.start;var l=[];for(var f in e)l.push(f+"."+(e[f]-b));if(a)for(var j in a)c+="&"+j+"="+a[j];(new Image).src=["http://csi.gstatic.com/csi?v=3","&s=codesite&action=",h.name,c,"&rt=",l.join(",")].join("")};(function(){window.CODESITE_CSITimer={};CODESITE_CSITimer.load=window.jstiming.load;window.CODESITE_CSIReportDelay=500;window.CODESITE_reportedToCSI=false;function h(){if(jQuery('body[@class~="gc-documentation"]').length>0)return"product_doc";if(window._homepageGadgetData_)return"codesite_home";if(jQuery('div[@id="gc-home"]').length>0)return"product_home";return"other"}function a(){var e=["codesite","sc"],b=h(),l=CODESITE_getProduct();if(l)if(l=="more")e.push("site_directory");else if(l=="search")e.push("cse");
else if(l=="support")e.push(l);else if(l=="events")e.push(l);else if(b=="product_doc"){e.push(b);e.push(l+"_doc")}else{if(b=="product_home"){e.push(b);e.push(l+"_home")}}else b=="codesite_home"&&e.push(b);e.push("intl_"+CODESITE_langLoc);CODESITE_CSITimer.load.name=e.join(",")}function c(){if(CODESITE_reportedToCSI)return;window.setTimeout(function(){for(var e in CODESITE_CSITimer)window.jstiming.report(CODESITE_CSITimer[e])},CODESITE_CSIReportDelay);window.CODESITE_reportedToCSI=true}jQuery(document).ready(function(){CODESITE_CSITimer.load.tick("dom")});
jQuery(window).load(function(){CODESITE_CSITimer.load.tick("plt");a();c()})})(jQuery);window.CODESITE_msgs={imagebar:{POSTED_ON:"\u6295\u7a3f\u65e5"},treelist:{EXPAND:"@1 \u3092\u62e1\u5f35",EXPAND_DEFAULT:"\u30d6\u30e9\u30f3\u30c1\u3092\u62e1\u5f35",COLLAPSE:"@1 \u3092\u5c55\u958b",COLLAPSE_DEFAULT:"\u30d6\u30e9\u30f3\u30c1\u3092\u5c55\u958b"},search:{SUGGESTIONS:"\u691c\u7d22\u306e\u30d2\u30f3\u30c8",MORE:"\u8a73\u7d30",NO_RESULTS_FOUND:"\u4e00\u81f4\u3059\u308b\u60c5\u5831\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 \u691c\u7d22\u30af\u30a8\u30ea: ",
SUGGESTIONS_TITLE:"\u691c\u7d22\u306e\u30d2\u30f3\u30c8",SUGGESTIONS_ITEMS:["\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u8aa4\u5b57\u3084\u8131\u5b57\u304c\u306a\u3044\u304b\u3069\u3046\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002","\u5225\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u8a66\u3057\u3066\u307f\u307e\u3059\u3002","\u3082\u3063\u3068\u4e00\u822c\u7684\u306a\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u5909\u3048\u3066\u307f\u307e\u3059\u3002"],TRY_WEBSEARCH:"\u30a6\u30a7\u30d6\u691c\u7d22\u3082\u304a\u8a66\u3057\u304f\u3060\u3055\u3044",
SEARCH_URL:"http://www.google.co.jp/search?q="}};window.CODESITE_langCode={en:"English",de:"Deutsch",es:"Espa\u00f1ol",ja:"\u65e5\u672c\u8a9e",ko:"\ud55c\uad6d\uc5b4","pt-BR":"Portugu\u00eas (Brasil)",ru:"P\u0443\u0441\u0441\u043a\u0438\u0439",vi:"Ti\u1ebfng Vi\u1ec7t","zh-CN":"\u4e2d\u6587 (\u7b80\u4f53)"};
window.CODESITE_prodLang=[{url:"/android/adc.html",langloc:[{innerHTML:window.CODESITE_langCode["zh-CN"],value:"zh-CN"},{innerHTML:window.CODESITE_langCode.en,value:"en"},{innerHTML:window.CODESITE_langCode["pt-BR"],value:"pt-BR"},{innerHTML:window.CODESITE_langCode.ru,value:"ru"},{innerHTML:window.CODESITE_langCode.ja,value:"ja"},{innerHTML:window.CODESITE_langCode.ko,value:"ko"}]},{url:"/android/adc_faq.html",langloc:[{innerHTML:window.CODESITE_langCode["zh-CN"],value:"zh-CN"},{innerHTML:window.CODESITE_langCode.en,
value:"en"},{innerHTML:window.CODESITE_langCode["pt-BR"],value:"pt-BR"},{innerHTML:window.CODESITE_langCode.ru,value:"ru"},{innerHTML:window.CODESITE_langCode.ja,value:"ja"},{innerHTML:window.CODESITE_langCode.ko,value:"ko"}]},{url:"/apis/orkut/",langloc:[{innerHTML:window.CODESITE_langCode["zh-CN"],value:"zh-CN"},{innerHTML:window.CODESITE_langCode.en,value:"en"},{innerHTML:window.CODESITE_langCode["pt-BR"],value:"pt-BR"},{innerHTML:window.CODESITE_langCode.ru,value:"ru"},{innerHTML:window.CODESITE_langCode.es,
value:"es"},{innerHTML:window.CODESITE_langCode.vi,value:"vi"},{innerHTML:window.CODESITE_langCode.ja,value:"ja"}]},{url:"/apis/maps/",langloc:[{innerHTML:window.CODESITE_langCode["zh-CN"],value:"zh-CN"},{innerHTML:window.CODESITE_langCode.en,value:"en"},{innerHTML:window.CODESITE_langCode.de,value:"de"},{innerHTML:window.CODESITE_langCode["pt-BR"],value:"pt-BR"},{innerHTML:window.CODESITE_langCode.ru,value:"ru"},{innerHTML:window.CODESITE_langCode.es,value:"es"},{innerHTML:window.CODESITE_langCode.ja,
value:"ja"}]}];(function(){window.URL_FILTER=/\/\/([^\/]*)?(\/intl\/[^\/]*)?(\/.*)?/;window.URL_ARRAY=URL_FILTER.exec(location.href);var h=/\/intl\/(([a-zA-Z]+)(-[a-zA-Z]+)?)(_[a-zA-Z]+)?/.exec(window.location.href);if(h==null){window.CODESITE_langLoc="en";window.CODESITE_langUrl=""}else{window.CODESITE_langLoc=h[1];window.CODESITE_langUrl=h[0].replace(/_ALL/,"")}jQuery(document).ready(window.CODESITE_langSelectInit=function(){var c=null;for(var e=0;e<window.CODESITE_prodLang.length;e++)if(URL_ARRAY[3].indexOf(window.CODESITE_prodLang[e].url)>=
0){c=window.CODESITE_prodLang[e].langloc;break}c||(c=[{innerHTML:window.CODESITE_langCode["zh-CN"],value:"zh-CN"},{innerHTML:window.CODESITE_langCode.en,value:"en"},{innerHTML:window.CODESITE_langCode["pt-BR"],value:"pt-BR"},{innerHTML:window.CODESITE_langCode.ru,value:"ru"},{innerHTML:window.CODESITE_langCode.es,value:"es"},{innerHTML:window.CODESITE_langCode.ja,value:"ja"}]);for(var b in c)if(c[b].value==CODESITE_langLoc){c[b].selected=true;break}CODESITE_fauxSelect({attachTo:".dropdown",data:c,
opt_icon:"/images/globe2_small.png",opt_onSelect:function(l,f,j){f.html(j.text);a(j.value)}})});function a(c){var e=null;if(URL_ARRAY){URL_ARRAY[1]||(URL_ARRAY[1]="code.google.com");e=URL_ARRAY[3]?"http://"+URL_ARRAY[1]+"/intl/"+c+URL_ARRAY[3]:"http://"+URL_ARRAY[1]+"/intl/"+c+"/";window.location.href=e}}})(jQuery);(function(){window.CODESITE_fauxSelect=function(h,a,c,e,b,l){if(arguments.length==1&&"attachTo"in arguments[0]){var f=arguments[0];h=f.attachTo;a=f.data;c=f.opt_onSelect;e=f.opt_size;b=f.opt_align;l=f.opt_icon}var j=jQuery(h);if(j.length==0)return;var m=jQuery('<select class="fauxSelect">');b=b?jQuery.trim(b.toString().toLowerCase()):"right";var y=jQuery("<span/>").addClass("fauxSelectIcon");if(l)y=jQuery("<img/>").css({verticalAlign:"middle",border:"none"}).attr("src",l).addClass("fauxSelectIcon");
var p=jQuery("<span>&nbsp;&#9660;</span>").css({verticalAlign:"middle",textDecoration:"none",fontFamily:"arial, sans-serif",fontSize:"11px"}).addClass("fauxSelectArrow"),z="title"+(new Date).getTime(),t=jQuery("<span/>").css({textDecoration:j.css("textDecoration"),verticalAlign:"middle"}).addClass(z).addClass("fauxSelectTitle");t.html(j.text());j.empty();var u=[y,t,p];b=="left"&&u.reverse();jQuery(u).appendTo(j);j.is("a")&&j.bind("click",function(){return false});j.css({textDecoration:"none",cursor:"pointer"});
m.css({position:"absolute",zIndex:"99"});m.attr({size:a.length<=6?a.length:e||6});c&&m.bind("optionSelected",c);if("length"in a)for(var x=0;x<a.length;x++)if("innerHTML"in a[x]){var A=jQuery("<option>").attr(a[x]).appendTo(m);"selected"in a[x]&&m.one("onShow",(function(B){return function(){B[0].selected=true}})(A))}var v=function(){var B=0,C=0;if(window.innerWidth){B=window.innerWidth;C=window.innerHeight}else if(document.documentElement.clientWidth==0){B=document.body.clientWidth;C=document.body.clientHeight}else{B=
document.documentElement.clientWidth;C=document.documentElement.clientHeight}return{width:B,height:C}},s=function(){m.hide();m.trigger("onHide",[m])},G=function(){var B=j.offset();m.css({visibility:"hidden",display:""});var C=B.left,K=B.left+j.get(0).offsetWidth-m.get(0).offsetWidth,N=B.top+j.get(0).offsetHeight,P=v();if(b=="right"&&K<0)b="left";else if(b=="left"&&C+m.get(0).offsetWidth>P.width)b="right";m.css({left:b=="right"?K+"px":C+"px",top:N+"px"});m.css("visibility","").show();m.trigger("onShow",
[m])},I=function(B,C){C||(C="mouseover");B||(B=400);return function(){var K=-1;K=setTimeout(function(){s();K=-1},B);m.one(C,function(){K!=-1&&clearTimeout(K)})}};j.bind("click",function(){m.is(":visible")?s():G()});m.bind("onShow",function(B,C){C.find("option").unbind("click");C.find("option:selected").one("click",s);C.get(0).focus()});m.bind("mouseout",I.call(null));m.one("mouseover",function(){m.one("blur",I.call(null,0))});m.bind("change",function(){s();if(c){var B=m.get(0).options[m.get(0).selectedIndex];
m.trigger("optionSelected",[t,B])}});return m.css("display","none").appendTo(document.body)}})(jQuery);(function(){try{document.execCommand("BackgroundImageCache",false,true)}catch(h){}function a(b){return window.encodeURIComponent?encodeURIComponent(b):escape(b)}function c(b){return window.decodeURIComponent?decodeURIComponent(b):unescape(b)}RegExp.escape=(function(){var b=["/",".","*","+","?","|","(",")","[","]","{","}","\\"],l=new RegExp("(\\"+b.join("|\\")+")","g");return function(f){return f.replace(l,"\\$1")}})();window.CODESITE_minWidth=(function(){var b=[],l=function(){if(!CODESITE_minWidth)return;
for(var f=0,j=b[0]||null;f<b.length;++f,j=b[f])try{if(j.parent_.offsetWidth<=j.minWidth_){j.style.width=j.minWidth_+"px";j.style.overflow="hidden"}else{j.style.width="";j.style.overflow=""}}catch(m){}};if(jQuery.browser.msie){jQuery(window).resize(l);jQuery(l)}return function(f,j){if(!jQuery.browser.msie)return;var m=jQuery(f)[0];m.minWidth_=j-0;m.parent_=m.parentNode;b.push(m)}})();window.CODESITE_createImageBar=function(b,l){var f=new google.feeds.Feed(b);f.setResultFormat(google.feeds.Feed.XML_FORMAT);
f.setNumEntries(2);f.load(function(j){if(!j.error){var m=jQuery(l),y=jQuery("item",j.xmlDocument),p=0;if(y.length>=2)p=2;var z=['<div class="post techtalk">','<div class="screenshot">','<a href="@link">','<img alt="@origTitle" src="@thumb" height="80" width="90">',"</a>","</div>",'<div class="info">','<div class="name">','<a href="@link" title="@origTitle">@title</a>',"</div>",'<div class="author videodateformat">',CODESITE_msgs.imagebar.POSTED_ON," @date</div>","</div>","</div>"].join(""),t=jQuery(['<div class="g-section g-tpl-50-50 gc-techtalk">',
'<div class="g-unit g-first">&nbsp;</div>','<div class="g-unit">&nbsp;</div>',"</div>"].join(""));for(var u=0;u<p;u++){var x=jQuery("title:first",y[u]).text(),A=x,v=jQuery("link:first",y[u]).text(),s;if((s=y.eq(u).find("atom\\:updated, updated")).length){var G=s.eq(0).text().replace(/(\d{4})-(\d{2})-(\d{2})T.*/,"$2 $3 $1").split(" ");s=new Date;s.setFullYear(G[2],G[0]-1,G[1])}else if((s=y.eq(u).find("dc\\:date, date")).length)s=new Date(s.eq(0).text());var I=google.feeds.getElementsByTagNameNS(y[u],
"http://search.yahoo.com/mrss/","thumbnail")[0],B=I.getAttribute("url");I.getAttribute("width");I.getAttribute("height");s=s.getMonth()+1+"/"+s.getDate()+"/"+s.getFullYear();var C=jQuery(z.replace(/@link/g,v).replace(/@thumb/g,B).replace(/@origTitle/g,x).replace(/@title/g,A).replace(/@date/g,s));jQuery(".g-unit:eq("+u+")",t).prepend(C)}m.append(t)}})};window.CODESITE_loadFeedAPI=function(){google.load("feeds","1",{callback:CODESITE_initFeedAPI})};jQuery(function(){jQuery("#searchForm").show();jQuery("#searchForm2").hide()});
window.CODESITE_initFeedAPI=function(){if(CODESITE_codeVideoDiv.length){CODESITE_createImageBar(_homepageGadgetData_.homepageVideoFeedUrl,"#gc-codevideo");CODESITE_minWidth("#codesiteContent",1000)}if(CODESITE_macRecentChangesDiv.length){var b=new BlogPreview(document.getElementById("recentchanges"));b.show("http://googlemacplayground.blogspot.com/atom.xml","changes")}};function e(){var b=/\/intl\/(.*?)\//.exec(document.location);b=b?["&lang=",b[1],"#"].join(""):"#";function l(C){var K="",N;if(typeof C==
"string"){if(C!="")K="&"+a(C)}else for(N in C)K+=["&",N,"=",a(C[N])].join("");return K}if(CODESITE_codeBlogDiv.length){var f=[],j=window._apiGadgetData_||window._homepageGadgetData_,m=j.blogOptions,y=400,p="100%",z="__MSG_blogs__",t="";if(m){p=m.width||p;y=m.height||y;z=m.up_gadgetTitle||z;t=m.xtraFeeds||t}if(j.blogFeedUrl&&j.blogFeedUrl.length){if(!j.blogFeedName||j.blogFeedName.length==0)j.blogFeedName="__MSG_blogs__";f.push(a([j.blogFeedName,":",j.blogFeedUrl].join("")))}j.googleCodeBlogIntlFeedUrl&&
j.googleCodeBlogIntlFeedUrl.length&&f.push(a(["__MSG_blogs.local__:",j.googleCodeBlogIntlFeedUrl].join("")));j.googleCodeBlogFeedUrl&&j.googleCodeBlogFeedUrl.length&&f.push(a(["__MSG_blogs.googleCode__:",j.googleCodeBlogFeedUrl].join("")));j.relatedDeveloperBlogsFeedUrl&&j.relatedDeveloperBlogsFeedUrl.length&&f.push(a(["__MSG_blogs.related__:",j.relatedDeveloperBlogsFeedUrl].join("")));if(t.length){var u=c(t).split("|");for(var x=0;x<u.length;x++)f.push(a(u[x]))}if(f.length)jQuery('<iframe frameborder="0">').attr({src:["http://www.gmodules.com/ig/ifr?",
"url=http://code.google.com/gadgets/FeedGadget/gadget.xml",b,"up_showaddbutton=true&","up_random=true&","up_defer=true&","up_gadgetTitle=",a(z),"&","up_feeds=",f.join("|"),l(m||"")].join(""),frameborder:"0",width:p,height:y}).css({border:"none"}).appendTo(CODESITE_codeBlogDiv)}if(CODESITE_featuredDiv.length){var A=[],v=window._apiGadgetData_||window._homepageGadgetData_,s=v.groupOptions,G=400,I="100%",B="__MSG_groups.community__",t="";if(s){I=s.width||I;G=s.height||G;B=s.up_gadgetTitle||B;t=s.xtraFeeds||
t}v.featuredProjectsFeedUrl&&v.featuredProjectsFeedUrl.length&&A.push(a(["featured:__MSG_featured.projects__:",v.featuredProjectsFeedUrl].join("")));if(v.groupFeedUrl&&v.groupFeedUrl.length){if(!v.groupFeedName||v.groupFeedName.length==0)v.groupFeedName="__MSG_groups.community__";A.push(a([v.groupFeedName,":",v.groupFeedUrl].join("")))}v.featureFeedUrl&&v.featureFeedUrl.length&&A.push(a(["featured:__MSG_featured.projects__:",v.featureFeedUrl].join("")));v.articleFeedUrl&&v.articleFeedUrl.length&&
A.push(a(["__MSG_articles__:",v.articleFeedUrl].join("")));v.userGroupsFeedUrl&&v.userGroupsFeedUrl.length&&A.push(a(["__MSG_groups.user__:",v.userGroupsFeedUrl].join("")));if(t.length){var u=c(t).split("|");for(var x=0;x<u.length;x++)A.push(a(u[x]))}if(A.length)jQuery('<iframe frameborder="0">').attr({src:["http://www.gmodules.com/ig/ifr?","url=http://code.google.com/gadgets/FeedGadget/gadget.xml",b,"up_showaddbutton=true&","up_defer=true&","up_gadgetTitle=",a(B),"&","up_feeds=",A.join("|"),l(s||
"")].join(""),frameborder:"0",width:I,height:G}).css({border:"none"}).appendTo(CODESITE_featuredDiv)}}jQuery(function(){try{prettyPrint()}catch(b){}});jQuery(function(){var b=jQuery("#gc-pagecontent"),l=jQuery("#gc-toc");if(b.length){var f=jQuery('<div id="gc-collapsible-arrow">'),j=jQuery('<div id="gc-collapsible">'),m=function(y){var p=b.offset();f.css({left:p.left+"px",top:(y.pageY||y.clientY)+"px"})};b.css("position","relative").append(j);jQuery(document.body).append(f);jQuery.browser.msie&&jQuery.browser.version<
7&&b.css("left","-5px");b.is(".skip-collapsible")||j.mouseover(function(y){j.addClass("hover");if(l.is(":hidden")){j.css("left","-3px");f.addClass("collapsed")}else f.removeClass("collapsed");f.show();m(y)}).mousemove(function(y){m(y)}).mouseout(function(){j.removeClass("hover");j.css("left","");f.hide()}).click(function(){f.hide();j.removeClass("hover").css("left","");l.toggle();if(l.is(":visible")){b.css("margin-left","");jQuery.browser.msie&&jQuery.browser.version<7&&b.css("left","-5px")}else{b.css("margin-left",
"0px");jQuery.browser.msie&&jQuery.browser.version<7&&b.css("left","")}});j.height(b.height())}});jQuery(window.CODESITE_createVideoAndGadgets=function(){CODESITE_codeBlogDiv=jQuery("#gc-blog-gadget");CODESITE_featuredDiv=jQuery("#gc-community-gadget");CODESITE_codeVideoDiv=jQuery("#gc-codevideo");CODESITE_macRecentChangesDiv=jQuery("#recentchanges");if(CODESITE_codeVideoDiv.length||CODESITE_macRecentChangesDiv.length)if(window.google)CODESITE_loadFeedAPI();else{var b=document.createElement("script");
b.src="http://www.google.com/jsapi?key=internal-codesite&callback=CODESITE_loadFeedAPI";b.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(b)}if(CODESITE_codeBlogDiv.length||CODESITE_featuredDiv.length)e()});window.CODESITE_getIntlUrl=function(b){var l=["/intl/","/p/","/u/","/hosting/","/support/","/soc/","/codejam/","/apis/youtube/dashboard/"];if(b.indexOf("/")==0){for(var f in l)if(b.indexOf(l[f])>=0)return b;return CODESITE_langUrl+b}else return b};window.CODESITE_derivePath=
function(b){var l=window.ORIGINAL_PAGE_PATH;if(!l)return b;var f=window.location.href;f=f.substring(0,f.lastIndexOf("/"));var j=l.substring(0,l.lastIndexOf("/"));f=f.substring(0,f.length-j.length);return f+b};window.CODESITE_docEarlyProcessing=function(){CODESITE_buildTreelistWidget()};window.CODESITE_getProduct=function(b){var b=b||window.location.href,l=/https?:\/\/[^\/]*(\/intl\/[^\/]*)?(\/apis)?(\/([a-z0-9]*))?\//,f=l.exec(b);if(!f)return"";var j=f[4];return j?j:""}})(jQuery);(function(){var h={products:{sectionTitle:"Products",labels:["All","Featured","New","Ads","AJAX","APIs","Data APIs","Gadgets","Geo","Search","Tools"],labelsMapExternalToInternal:{All:"products",Featured:"featured",New:"new",Ads:"ads",AJAX:"ajax",APIs:"apis","Data APIs":"dataapis",Gadgets:"gadgets",Geo:"geo",Search:"search",Tools:"tools"},labelsMapInternalToExternal:{products:"All",featured:"Featured","new":"New",ads:"Ads",ajax:"AJAX",apis:"APIs",dataapis:"Data APIs",gadgets:"Gadgets",geo:"Geo",search:"Search",
tools:"Tools"},resourceKeys:["home","doc","group","blog","faq","samplecode","articles","terms","appgallery"],resourceKeysMap:{home:"Home",doc:"Documentation",group:"Group",blog:"Blog",faq:"FAQ",samplecode:"Sample Code",articles:"Articles & Tutorials",terms:"Terms",appgallery:"App Gallery"}},programs:{sectionTitle:"Programs",labels:["All","Educators","Developers","Open Source"],labelsMapExternalToInternal:{All:"programs",Educators:"educators",Developers:"developers","Open Source":"opensource"},labelsMapInternalToExternal:{programs:"All",
educators:"Educators",developers:"Developers",opensource:"Open Source"}},messages:{NEW:"New!",LONG_DESC_PANEL_TITLE:"Details",FOR_MORE:"For more information"}};window.CODESITE_siteDirectoryMetaData=h;var a={dictionariesList:["products","programs","searchSuggest","searchResultTabs"],products:{dictionaryType:"products",includeInSiteDirectory:true,includeInSearchSuggest:true,siteDirectoryMetaData:h.products,keys:["android","gdata","blogger","chromium","feedburner","gadgets","gmail","accounts","adsense",
"adsenseforaudio","adwords","ajax","ajaxfeeds","ajaxlanguage","ajaxsearch","analytics","appengine","apps","base","books","calendar","chart","checkout","csearch","codesearch","customsearch","contacts","coupons","gdgadgets","desktop","documents","earth","finance","friendconnect","gears","health","igoogle","kml","mapplets","maps","flashmaps","gme","notebook","opensocial","orkut","protocolbuffers","safebrowsing","enterprise","sitemaps","sketchup","socialgraph","spreadsheets","staticmaps","subscribedlinks",
"talk","themes","toolbar","transit","v8","visualization","webtoolkit","webmastertools","picasa","picasaweb","youtube","youtubeplayer"],entries:{android:{title:"Android",groupsTitle:"Android Groups",url:"/android/",productId:"android",labels:["products","apis","featured"],keywords:{mobile:10},shortDesc:"Build mobile apps for Android, a software stack for mobile devices.",longDesc:'Android is a software stack for mobile devices including an operating system, middleware and key applications. It is being developed by the <a href="http://www.openhandsetalliance.com/">Open Handset Alliance</a>, a group of more than 30 technology and mobile companies. Android was built from the ground-up to enable developers to create compelling mobile applications that take full advantage of all a handset has to offer.  Developers can create applications for the platform using the Android SDK.',
resources:{home:"/android/",doc:"/android/documentation.html",group:"http://groups.google.com/group/android-developers",blog:"http://android-developers.blogspot.com/",faq:"/android/kb/index.html",terms:"/android/terms.html"}},gdata:{title:"Google Data APIs",groupsTitle:"Google Data APIs Groups",url:"/apis/gdata/",productId:"gdata",labels:["products","apis","dataapis","featured"],keywords:{apis:1,feed:1,entries:6,gentries:10,"data apis":10,java:1},shortDesc:"A simple, standard protocol for reading and writing data on the web.",
longDesc:"The Google Data APIs provide a simple, standard protocol for reading and writing data on the web. Google Data API is a protocol based on the Atom 1.0 and RSS 2.0 syndication formats, plus the Atom Publishing Protocol. Several Google services provide a Google Data API, including Google Base, Blogger, Google Calendar, Google Spreadsheets and Picasa Web Albums.",resources:{home:"/apis/gdata/",doc:"/apis/gdata/overview.html",group:"http://groups.google.com/group/google-help-dataapi",blog:"http://googledataapis.blogspot.com/",
samplecode:"/apis/gdata/clientlibs.html",terms:"http://www.google.com/terms_of_service.html"}},blogger:{title:"Blogger Data API",groupsTitle:"Blogger Data API Groups",url:"/apis/blogger/",productId:"blogger",labels:["products","apis","dataapis"],keywords:{apis:1,feed:1,entries:2,gentries:1,"data apis":4},shortDesc:"Enable your apps to view and update Blogger content.",longDesc:"The Blogger Data API allows client applications to view and update Blogger content in the form of Google Data API feeds. Your client application can use the Google Data API to create new blog posts, edit or delete existing posts, and query for posts that match particular criteria.",
resources:{home:"/apis/blogger/",doc:"/apis/blogger/developers_guide_protocol.html",group:"http://groups.google.com/group/bloggerDev",blog:"http://googledataapis.blogspot.com/",samplecode:"/apis/blogger/code.html",articles:"/apis/blogger/articles/",terms:"http://www.blogger.com/terms.g"}},chromium:{title:"Chromium",groupsTitle:"Chromium Groups",url:"/chromium/",productId:"chromium",labels:["products","featured","new","tools"],keywords:{browser:1,chrome:1,chromium:1,v8:1},shortDesc:"Contribute to the open source project behind Google Chrome.",
longDesc:'Chromium is the open source browser project behind <a href="http://www.google.com/chrome">Google Chrome</a>. Built from components that include the Apple WebKit renderer and the new V8 JavaScript engine, Chromium provides all the elements of a functional web browser. The UI of Chromium is unobtrusive, providing more space for content. Chromium\'s multi-process architecture improves stability and security by isolating web pages in separate processes that run in a sandbox.',resources:{home:"/chromium/",
doc:"http://dev.chromium.org",group:"http://groups.google.com/group/chromium-discuss",blog:"http://blog.chromium.org",faq:"http://dev.chromium.org/developers/faq",terms:"/chromium/terms.html"}},feedburner:{title:"Feedburner APIs",groupsTitle:"FeedBurner Groups",url:"/apis/feedburner/",productId:"feedburner",labels:["products","apis","dataapis"],keywords:{feed:10},shortDesc:"Interact with FeedBurner's feed management and awareness-generating capabilities.",longDesc:"FeedBurner offers web services for interacting with their feed management and awareness-generating capabilities. Using the features this library provides, anyone with a FeedBurner account may perform some of the most common actions available on the FeedBurner service programmatically.",
resources:{home:"/apis/feedburner/",doc:"/apis/feedburner/developers_guide.html",group:"http://forums.feedburner.com",blog:"http://blogs.feedburner.com",terms:"http://www.feedburner.com/fb/a/tos"}},gmail:{title:"Gmail Atom Feeds",url:"http://gmail.google.com/support/bin/answer.py?answer=13465",productId:"gmail",labels:["products","dataapis"],keywords:{feed:1},shortDesc:"Offers a simple feed mechanism for reading your Gmail inbox or labels.",longDesc:"This feed mechanism lets you read your Gmail inbox or labels via any aggregator that supports the Atom XML feed format.",
resources:{home:"http://gmail.google.com/support/bin/answer.py?answer=13465",group:"http://groups.google.com/group/Gmail-Help-Discussion",terms:"http://mail.google.com/mail/help/terms_of_use.html"}},accounts:{title:"Google Account Authentication",groupsTitle:"Google Account Authentication Groups",url:"/apis/accounts/",productId:"accounts",labels:["products","apis"],keywords:{apis:1,feed:1,entries:1,gentries:1},shortDesc:"Get access into desktop or mobile applications.",longDesc:"Writing mashups or other applications that exchange data with your user's Google services? Use the Authentication service to simplify the  process of getting permission from your users. Libraries are available for desktop applications and web applications. The Authentication service now supports the OAuth open standard.",
resources:{home:"/apis/accounts/index.html",group:"http://groups.google.com/group/Google-Accounts-API",terms:"http://www.google.com/terms_of_service.html"}},adsense:{title:"Google AdSense API",groupsTitle:"Google AdSense API Groups",url:"/apis/adsense/",productId:"adsense",labels:["products","ads","apis"],keywords:{ads:1,apis:1},shortDesc:"Generate revenue for you and your users by placing ads on your website.",longDesc:"The AdSense API enables you to integrate AdSense signup, ad unit management, and reporting into your web or blog hosting platform. You and your users can generate revenue from your users' web content on your site by showing relevant ads and referring products.",
resources:{home:"/apis/adsense/",doc:"/apis/adsense/developer/index.html",group:"http://groups.google.com/group/adsense-api",blog:"http://adsense.blogspot.com/",faq:"/apis/adsense/faq/index.html",samplecode:"/apis/adsense/developer/adsense_api_samples.html",articles:"/apis/adsense/articles/index.html",terms:"/apis/adsense/terms.html"}},adsenseforaudio:{title:"Google AdSense for Audio API",groupsTitle:"Google AdSense for Audio API Groups",url:"/apis/adsenseforaudio/",productId:"adsenseforaudio",labels:["products",
"ads","apis"],keywords:{ads:1,apis:1},shortDesc:"Incorporate AdSense for Audio into your broadcast system.",longDesc:"The AdSense for Audio API enables you to integrate AdSense for Audio into a broadcast system, such as a radio automation system. By integrating AdSense for Audio into a broadcast system you give radio stations access to the AdSense for Audio network, which makes their unsold commercial inventory available to thousands of new advertisers through the Google Audio Ads program.",resources:{home:"/apis/adsenseforaudio/",
doc:"/apis/adsenseforaudio/docs/developer_guide.html",group:"http://groups.google.com/group/audioadsense-api-support",faq:"/apis/adsenseforaudio/docs/faq.html",terms:"/apis/adsenseforaudio/docs/terms_of_service.html"}},adwords:{title:"Google AdWords API",groupsTitle:"Google AdWords API Groups",url:"/apis/adwords/",productId:"adwords",labels:["products","ads","apis"],keywords:{ads:2,apis:1},shortDesc:"Automate and streamline your campaign management activities.",longDesc:"The AdWords API enables advertisers and third parties alike to integrate directly with the AdWords advertising platform. Armed with direct access, you can design a suite of applications that automate reporting, data integration, campaign and bid management.",
resources:{home:"/apis/adwords/",doc:"/apis/adwords/docs/developer/",group:"http://groups.google.com/group/adwords-api",blog:"http://adwordsapi.blogspot.com/",faq:"http://www.google.com/support/adwordsapi/",samplecode:"/apis/adwords/docs/samples.html",terms:"/apis/adwords/docs/terms.html"}},ajax:{title:"Google AJAX APIs",groupsTitle:"Google AJAX APIs Groups",url:"/apis/ajax/",productId:"ajax",labels:["products","ajax","apis","featured"],keywords:{ajax:10,apis:10},shortDesc:"Implement rich, dynamic web sites entirely in JavaScript and HTML.",
longDesc:"Google's AJAX APIs let you implement rich, dynamic web sites entirely in JavaScript and HTML. You can add a map to your site, a dynamic search box, or download feeds with just a few lines of JavaScript.",resources:{home:"/apis/ajax/",doc:"/apis/ajax/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021",terms:"/tos.html"}},ajaxfeeds:{title:"Google AJAX Feed API",groupsTitle:"Google AJAX Feed API Groups",
url:"/apis/ajaxfeeds/",productId:"ajaxfeeds",labels:["products","ajax","apis","dataapis"],keywords:{ajax:8,apis:5,feed:6},shortDesc:"Easily mash up public feeds using JavaScript.",longDesc:"The AJAX Feed API makes it easy to access and use data feeds in your JavaScript applications. You used to need a server to proxy feeds before you could read and manipulate them in mashups; now you can load RSS and Atom feeds from different sources with a few lines of JavaScript code.",resources:{home:"/apis/ajaxfeeds/",
doc:"/apis/ajaxfeeds/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021",samplecode:"/apis/ajaxfeeds/examples.html",terms:"/apis/ajaxfeeds/terms.html"}},ajaxlanguage:{title:"Google AJAX Language API",groupsTitle:"Google AJAX Language API Groups",url:"/apis/ajaxlanguage/",productId:"ajaxlanguage",labels:["products","ajax","apis"],keywords:{ajax:8,apis:5,language:10},shortDesc:"Easily translate and detect multiple languages using JavaScript.",
longDesc:"The AJAX Language API make it easy to translate and detect multiple languages in your JavaScript applications.",resources:{home:"/apis/ajaxlanguage/",doc:"/apis/ajaxlanguage/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021",samplecode:"/apis/ajaxlanguage/documentation#Examples",terms:"/apis/ajaxlanguage/terms.html"}},ajaxsearch:{title:"Google AJAX Search API",groupsTitle:"Google AJAX Search API Groups",
url:"/apis/ajaxsearch/",productId:"ajaxsearch",labels:["products","ajax","apis","search"],keywords:{ajax:9,apis:10,search:6,translate:5},shortDesc:"Put a Google Search box and results on your own site.",longDesc:"The Google AJAX Search API lets you use JavaScript to embed a simple, dynamic Google search box and display search results in your own web pages, or use search results programmatically in innovative ways. If you don't feel like coding, you can even use our code wizards to add custom AJAX search controls to your web page in just a few steps.",
resources:{home:"/apis/ajaxsearch/",doc:"/apis/ajaxsearch/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021",samplecode:"/apis/ajaxsearch/samples.html",articles:"/support/bin/topic.py?topic=11530",terms:"/apis/ajaxsearch/terms.html"}},analytics:{title:"Google Analytics",groupsTitle:"Google Analytics Groups",url:"/apis/analytics/",productId:"analytics",labels:["products","tools"],keywords:{tools:1},
shortDesc:"Track total page views, unique visitors, and AdWords conversions on your site.",longDesc:"Google Analytics allows you gather, view and analyze data about your website traffic, such as content popularity, aggregated visitor behavior, and much more. By embedding our basic JavaScript snippet into your website, you enable your site to send key information to Google Analytics for each pageview. Our powerful servers process your site's data and generate over 80 reports that you can use, interpret, and act upon. The simple administrative interface allows you to set up goals and filters so you can control what data goes into your reports based on your business needs. The best part: this sophisticated, full-featured web analytics package is free.",
resources:{home:"/apis/analytics/",doc:"/apis/analytics/docs/",group:"/apis/analytics/groups.html",blog:"http://analytics.blogspot.com/",terms:"http://www.google.com/analytics/tos.html"}},appengine:{title:"Google App Engine",groupsTitle:"Google App Engine Groups",url:"/appengine/",productId:"appengine",labels:["products","apis","featured"],keywords:{apis:5,tools:1},shortDesc:"Run your web applications on Google's infrastructure.",longDesc:"Google App Engine lets you run your web applications on Google's infrastructure.  App Engine applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow.  With App Engine, there are no servers to maintain: You just upload your application, and it's ready to serve your users.",
resources:{home:"/appengine/",doc:"/appengine/docs/",group:"/appengine/groups.html",faq:"/appengine/kb/",articles:"/appengine/articles/",terms:"/appengine/terms.html",appgallery:"http://appgallery.appspot.com/"}},apps:{title:"Google Apps APIs",groupsTitle:"Google Apps APIs Groups",url:"/apis/apps/",productId:"apps",labels:["products","apis"],keywords:{apis:1},shortDesc:"Provides domain administration for Premier and Education Edition customers.",longDesc:"Google Apps also universally supports individual service extensibility with Gadgets, Calendar, Spreadsheets, and Talk.",
resources:{home:"/apis/apps/",doc:"/apis/apps/gdata_provisioning_api_v2.0_reference.html",group:"http://groups.google.com/group/google-apps-apis",faq:"/support/bin/topic.py?topic=11279",samplecode:"/apis/apps/libraries_and_samples.html",articles:"/support/bin/topic.py?topic=12142",terms:"http://www.google.com/terms_of_service.html"}},base:{title:"Google Base Data API",groupsTitle:"Google Base Data API Groups",url:"/apis/base/",productId:"base",labels:["products","apis","dataapis"],keywords:{apis:1,
feed:1,entries:2,gentries:1,"data apis":2},shortDesc:"Manage Google Base content programmatically.",longDesc:"With the Google Base Data API, you can query Google Base data to create applications and mashups, as well as input and manage Google Base items programmatically. Your application can upload new data, update or delete existing items, and execute specialized queries to find matches for complex attribute criteria. For more information, please see the section on Google Data APIs.",resources:{home:"/apis/base/",
doc:"/apis/base/starting-out.html",group:"http://groups.google.com/group/Google-Base-data-API",blog:"http://googlebase.blogspot.com",faq:"/apis/base/faq.html",samplecode:"/apis/base/sample-apps.html",articles:"/support/bin/topic.py?topic=11983",terms:"http://www.google.com/terms_of_service.html"}},books:{title:"Google Book Search APIs",groupsTitle:"Google Book Search APIs Groups",url:"/apis/books/",productId:"books",labels:["products","ajax","apis","search"],keywords:{ajax:9,apis:10,search:5,feeds:1,
books:1},shortDesc:"Integrate Google Book Search content into your website or application.",longDesc:'Google <a href="http://books.google.com">Book Search</a> is our effort to make book content more discoverable on the Web. Using our APIs, you too can easily and reliably integrate with this respository from your own website or application.',resources:{home:"/apis/books/",doc:"/apis/books/docs/getting-started.html",group:"http://groups.google.com/group/booksearch-apis",blog:"http://booksearch.blogspot.com",
terms:"/apis/books/terms.html"}},calendar:{title:"Google Calendar APIs and Tools",groupsTitle:"Google Calendar APIs and Tools Groups",url:"/apis/calendar/",productId:"calendar",labels:["products","apis","dataapis","gadgets"],keywords:{apis:1,feed:5,entries:2,gadgets:3,gentries:1,"data apis":3,tools:1},shortDesc:"Create and manage events, calendars, and gadgets for Google Calendar.",longDesc:"The Google Calendar Data API and other tools enable you to do many things: create a web front end for your group's calendar, generate a public calendar based on your organization's event database, create Calendar Gadgets, and much more.",
resources:{home:"/apis/calendar/",doc:"/apis/calendar/developers_guide_protocol.html",group:"http://groups.google.com/group/google-calendar-help-dataapi",blog:"http://googledataapis.blogspot.com/",faq:"/apis/calendar/faq.html",samplecode:"/apis/calendar/code.html",articles:"/apis/calendar/articles/",terms:"/apis/calendar/terms.html"}},chart:{title:"Google Chart API",groupsTitle:"Google Chart API Groups",url:"/apis/chart/",productId:"chart",labels:["products","apis"],keywords:{apis:1,charts:1},shortDesc:"Dynamically embed charts in your webpage.",
longDesc:"The Google Chart API is a simple tool that lets you create many types of charts. Send an HTTP request that includes data and formatting parameters and the Chart API returns a PNG image of the chart. Embed in a webpage with an image tag and you're done!",resources:{home:"/apis/chart/",group:"http://groups.google.com/group/google-chart-api",faq:"/apis/chart/faq.html",terms:"/apis/chart/terms.html"}},checkout:{title:"Google Checkout API",groupsTitle:"Google Checkout API Groups",url:"/apis/checkout/",
productId:"checkout",labels:["products","apis"],keywords:{apis:5},shortDesc:"Start selling on your website.",longDesc:"Google Checkout provides a streamlined e-commerce checkout process that can be integrated with Google AdWords and Analytics to attract more leads and drive better conversion rates. The Checkout API allows you to integrate your site with Google Checkout, either by spending 5 minutes and dropping in simple \"Buy Now\" buttons, or by stepping through a complete integration of your order management system with Checkout. It's a message-based REST XML API involving synchronous and asynchronous interactions between Google and the merchant's server.",
resources:{home:"/apis/checkout/",doc:"/apis/checkout/developer/Google_Checkout_Basic_HTML_Overview.html",group:"http://groups.google.com/group/google-checkout-developers-forum",blog:"http://googlecheckoutapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10026",samplecode:"/apis/checkout/samplecode.html",articles:"http://checkout.google.com/support/sell/bin/topic.py?topic=11964",terms:"http://checkout.google.com/termsOfService"}},csearch:{title:"Google Code Search",url:"http://www.google.com/codesearch",
productId:"csearch",labels:["products","tools","search"],keywords:{search:1},shortDesc:"Search public source code.",longDesc:"Google Code Search helps you find function definitions and sample code by giving you one place to search publicly accessible source code hosted on the Internet. With Google Code Search, you can: <ul><li>Use regular expressions to search more precisely</li><li>Restrict your search by language, license or filename</li> <li>View the source file with links back to the entire package and the webpage where it came from</li></ul>",
resources:{home:"http://www.google.com/codesearch",group:"http://groups.google.com/group/Google-Code-Search",faq:"http://www.google.com/help/faq_codesearch.html",terms:"/tos.html"}},codesearch:{title:"Google Code Search Data API",groupsTitle:"Google Code Search Data API Groups",url:"/apis/codesearch/",productId:"codesearch",labels:["products","apis","dataapis","search"],keywords:{apis:1,feed:1,entries:1,gentries:1,search:1},shortDesc:"Enable your apps to view data from Code Search.",longDesc:"The Google Code Search Data API allows client applications to view data from Code Search in the form of Google Data API feeds. Your client application can use the Google Code Search Data API to query for public source code, function definitions, and sample code.",
resources:{home:"/apis/codesearch/",doc:"/apis/codesearch/gdata.html",group:"http://groups.google.com/group/Google-Code-Search",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10441",samplecode:"/apis/gdata/clientlibs.html",terms:"/tos.html"}},customsearch:{title:"Google Custom Search API",groupsTitle:"Google Custom Search API Groups",url:"/apis/customsearch/",productId:"customsearch",labels:["products","new","ads","apis","search"],keywords:{apis:1,ads:1,custom:1,search:1,
cse:1},shortDesc:"Create a custom search engine for your website or a collection of websites",longDesc:"Google Custom Search enables you to create a search engine for your website, your blog, or a collection of websites within minutes. You can harness the power of Google to create a search engine tailored to your needs and interests and present the results in your website. You can fine-tune the ranking, customize the look and feel of the search results, and invite your friends or trusted users to help you build your custom search engine. You can even make money from your search engine by using your Google AdSense account.",
resources:{home:"/apis/customsearch/",doc:"/apis/customsearch/docs/start.html",group:"http://groups.google.com/group/google-custom-search",blog:"http://googlecustomsearch.blogspot.com/",terms:"http://www.google.com/coop/docs/cse/tos.html"}},contacts:{title:"Google Contacts Data API",groupsTitle:"Google Contacts Data API Groups",url:"/apis/contacts/",productId:"contacts",labels:["products","apis","dataapis"],keywords:{apis:1,feed:1,entries:2,gentries:1,contacts:1,"data apis":4},shortDesc:"Allow your apps to view and update user contacts.",
longDesc:"The Google Contacts Data API allows client applications to view and update Contacts content in the form of Google Data API feeds. Your client application can request a list of a user's contacts, edit or delete content in an existing contact, and query the content in an existing contact. Here are some of the things you can do with the Contacts Data API:<li>Synchronize Google contacts with contacts on a mobile device</li><li>Maintain relationships between people in social applications</li><li>Give users the ability to communicate directly with their friends from external applications using phone, email, and IM</li></ul>",
resources:{home:"/apis/contacts/",doc:"/apis/contacts/developers_guide_protocol.html",group:"http://groups.google.com/group/google-contacts-api",blog:"http://googledataapis.blogspot.com",terms:"/apis/contacts/api-terms.html"}},coupons:{title:"Google Coupon Feeds",url:"/apis/coupons/",productId:"coupons",labels:["products","dataapis"],keywords:{feed:1},shortDesc:"Provide coupon listings that are included in Google search results.",longDesc:"Google coupon feeds enable businesses to provide coupon listings that will be included in Google search results. Coupon feeds enable merchants to easily distribute coupons for free via the web. Consumers can also search for, print and redeem coupons for free.",
resources:{home:"/apis/coupons/",doc:"/apis/coupons/",terms:"http://www.google.com/terms_of_service.html"}},gdgadgets:{title:"Google Desktop Gadget API",groupsTitle:"Google Desktop Gadget API Groups",url:"/apis/desktop/",productId:"gdgadgets",labels:["products","apis","gadgets"],keywords:{gadgets:3,search:1},shortDesc:"Write powerful, visually appealing gadgets for millions of Google Desktop users around the world.",longDesc:"Desktop gadgets are powerful mini-applications that can live within the Google Desktop sidebar, or right on the user's desktop, or even inside iGoogle home pages. You create Desktop gadgets using XML and JavaScript, optionally adding native code for access to Windows APIs. The Desktop Gadget API enables advanced functionality such as transparency, animation, custom fonts, and personalization.",
resources:{home:"/apis/desktop/",doc:"/apis/desktop/docs/gadgetapi.html",group:"http://groups.google.com/group/Google-Desktop-Developer",blog:"http://googledesktopapis.blogspot.com/",faq:"http://code.google.com/support/bin/topic.py?topic=10033",samplecode:"/apis/desktop/docs/examples.html",Articles:"http://code.google.com/support/bin/topic.py?topic=11366",terms:"http://desktop.google.com/dev/apiterms.html"}},desktop:{title:"Google Desktop Search APIs",searchTabTitle:"Google Desktop APIs",groupsTitle:"Google Desktop APIs Groups",
url:"/apis/desktop/",productId:"desktop",labels:["products","apis","search"],keywords:{gadgets:1,search:3},shortDesc:"Put desktop search support into your apps, or extend Google Desktop to search more file types.",longDesc:"Use the power of Google Desktop in your applications and gadgets, or create indexing plug-ins that let users search any file type &mdash; documents, spreadsheets, music files, email, calendar, or your software application's special file type. The Search APIs work with JavaScript, VBScript, C, C++, C#, and VB.Net code.",
resources:{home:"/apis/desktop/",doc:"/apis/desktop/docs/searchapi.html",group:"http://groups.google.com/group/Google-Desktop-Developer",blog:"http://googledesktopapis.blogspot.com/",samplecode:"/apis/desktop/docs/examples.html",terms:"http://desktop.google.com/dev/apiterms.html"}},documents:{title:"Google Documents List Data API",groupsTitle:"Google Documents List Data API Groups",url:"/apis/documents/",productId:"documents",labels:["products","apis","dataapis"],keywords:{apis:1,feed:1,entries:2,
gentries:1,"data apis":3},shortDesc:"Enable your apps to view and update your list of Google Documents.",longDesc:'The Google Documents List Data API allows client applications to view and search through documents stored in <a href="http://docs.google.com/">Google Documents</a> using Google Data API feeds. Your client application can request a list of a user\'s word processing documents and/or spreadsheets and upload existing documents to Google Documents.',resources:{home:"/apis/documents/",doc:"/apis/documents/developers_guide_protocol.html",
group:"http://groups.google.com/group/Google-Docs-Data-APIs",blog:"http://googledataapis.blogspot.com/",faq:"/apis/documents/faq.html",samplecode:"/apis/documents/code.html",articles:"/apis/documents/articles/",terms:"http://www.google.com/google-d-s/terms.html"}},earth:{title:"Google Earth API",groupsTitle:"Google Earth API Groups",url:"/apis/earth/",productId:"earth",labels:["products","apis","geo"],keywords:{apis:4,developer:1,"developer day":1,geo:6,maps:6,kml:6},shortDesc:"Embed Google Earth into your web page.",
longDesc:"The Google Earth Plug-in and its JavaScript API let you embed Google Earth, a true 3D digital globe, into your web pages. Using the API you can draw markers and lines, drape images over the terrain, add 3D models, or load KML files, allowing you to build sophisticated 3D map applications. If you have an existing Maps API site, you can 3D-enable your page with as little as one line of code.",resources:{home:"/apis/earth/",doc:"/apis/earth/documentation/",group:"http://groups.google.com/group/kml-support/topics",
blog:"http://googlegeodevelopers.blogspot.com/"}},finance:{title:"Google Finance Data API",url:"/apis/finance/",productId:"finance",labels:["products","apis","dataapis","new"],keywords:{apis:4,feeds:1,"data apis":1},shortDesc:"View and update Finance content in the form of Google Data API feeds.",longDesc:"The Google Finance Portfolio Data API allows client applications to view and update Finance content in the form of Google Data API feeds.<br> <br>Your client application can use the Finance Data API to create new portfolio and transaction entries, request a list of entries, and edit or delete existing entries.",
resources:{home:"/apis/finance/",doc:"/apis/finance/developers_guide_java.html"}},flashmaps:{title:"Google Maps API For Flash",url:"/apis/maps/documentation/flash/",productId:"flashmaps",labels:["products","apis","geo"],keywords:{ajax:7,apis:4,actionscript:1,geo:6,maps:6},shortDesc:"Integrate Google Maps in Flash applications.",longDesc:"The Google Maps API for Flash allows you to add maps to Flash applications.  Based on ActionScript 3.0, this API enables Flex developers to easily customize maps through a variety of services.",
resources:{home:"/apis/maps/documentation/flash/index.html",doc:"/apis/maps/documentation/flash/intro.html",group:"http://groups.google.com/group/google-maps-api-for-flash",blog:"http://googlegeodevelopers.blogspot.com/",faq:"/apis/maps/faq.html",terms:"/apis/maps/terms.html"}},friendconnect:{title:"Google Friend Connect",url:"http://www.google.com/friendconnect",productId:"friendconnect",labels:["products","gadgets"],keywords:{apis:5,gadgets:5,social:10},shortDesc:"Grow website traffic with easy-to-add social features.",
longDesc:"Google Friend Connect enables webmasters to quickly and easily enhance their site with community features; what's more, these features leverage visitors' <i>existing</i> social ties. By simply copying and pasting a few lines of JavaScript, you can implement the social functionality you want, and visitors can connect with their Facebook, orkut and other friends directly on your website.",resources:{}},gadgets:{title:"Gadgets API",groupsTitle:"Gadgets API Groups",url:"/apis/gadgets/",productId:"gadgets",
labels:["products","apis","gadgets"],keywords:{finance:1,apis:8,gadgets:6},shortDesc:"Build mini-apps that run on multiple sites including iGoogle, Google Desktop, or any webpage.",longDesc:"Gadgets are simple HTML and JavaScript mini-applications served in iFrames that can be embedded in webpages and other apps. Built-in JavaScript libraries make it easy to create gadgets that include tabs, Flash content, persistent storage, dynamic resizing, and more. Many gadgets are viewed millions of times per week and generate significant traffic for their authors.",
resources:{home:"/apis/gadgets/",doc:"/apis/gadgets/docs/dev_guide.html",group:"http://groups.google.com/group/Google-Gadgets-API",blog:"http://googlegadgetsapi.blogspot.com",faq:"/support/bin/topic.py?topic=10027",terms:"/apis/gadgets/docs/terms.html"}},gears:{title:"Gears",groupsTitle:"Gears Groups",url:"/apis/gears/",productId:"gears",labels:["products","ajax","apis","featured","tools"],keywords:{ajax:5,apis:9,tools:1},shortDesc:"Enable web applications to work offline, from your desktop PC or your mobile device.",
longDesc:"Gears is an open source browser extension that lets you create web applications that run offline. It lets you store and serve application resources locally, store data locally in a fully-searchable relational database, and run asynchronous JavaScript to improve application responsiveness.",resources:{home:"/apis/gears/",doc:"/apis/gears/design.html",group:"http://groups.google.com/group/google-gears/",blog:"http://gearsblog.blogspot.com/",faq:"/support/bin/topic.py?topic=11628",samplecode:"/apis/gears/sample.html",
articles:"/apis/gears/tutorial.html",terms:"http://gears.google.com/tos.html"}},health:{title:"Google Health API",groupsTitle:"Google Health Developers Groups",url:"/apis/health/",productId:"health",labels:["products","apis","dataapis"],keywords:{"data apis":3,feed:1,health:1,java:1},shortDesc:"Manage your personal health information with Google.",longDesc:"The Google Health Data API allows client applications to view and send Health content in the form of Google Data API feeds. Your client application can use the Health Data API to create new medical records, request a list of medical records and query for medical records that match particular criteria. <br> <br>Here are some of the things you can do with the Health Data API:<br> <br> <ul> <li>Upload patient medical records</li> <li>Get patient medical data and provide personalized functionality based on that data </li>",
resources:{home:"/apis/health/",doc:"/apis/health/developers_guide_protocol.html",group:"http://groups.google.com/group/googlehealthdevelopers/",faq:"/apis/health/faq.html",terms:"http://www.google.com/health/html/terms.html"}},igoogle:{title:"iGoogle Developer Home",groupsTitle:"iGoogle Developers Groups",url:"/apis/igoogle/",productId:"igoogle",labels:["products","apis","ads","gadgets"],keywords:{ads:3,apis:1,gadgets:1,social:1},shortDesc:"Build and test your gadget in the new sandbox for iGoogle.",
longDesc:"Gadgets on iGoogle now support canvas view and OpenSocial, a common set of APIs, HTML, and JavaScript designed to let you easily build social applications. Build and test your gadget in the new sandbox for iGoogle.",resources:{home:"/apis/igoogle/",doc:"/apis/igoogle/docs/igoogledevguide.html",group:"http://groups.google.com/group/Google-Gadgets-API/",blog:"http://googlegadgetsapi.blogspot.com/",faq:"/apis/igoogle/faq.html",terms:"/apis/gadgets/docs/terms.html"}},kml:{title:"KML",groupsTitle:"KML Groups",
url:"/apis/kml/",productId:"kml",labels:["products","apis","geo"],keywords:{apis:1,geo:4,maps:1},shortDesc:"Create and share content with Google Earth, Maps, and Maps for mobile.",longDesc:"KML is a file format used to display geographic data in an Earth browser, such as Google Earth, Google Maps and Google Maps for mobile. KML uses a tag-based structure with nested elements and attributes and is XML-based. Google Earth and Google Maps have millions of users, so there's already a wide audience awaiting your content.",
resources:{home:"/apis/kml/documentation/index.html",doc:"/apis/kml/documentation/",group:"http://groups.google.com/group/kml-support",blog:"http://googlegeodevelopers.blogspot.com/",faq:"/support/bin/topic.py?topic=10426",samplecode:"/apis/kml/documentation/kml_tut.html",articles:"/support/bin/topic.py?topic=11367",terms:"http://www.google.com/terms_of_service.html"}},mapplets:{title:"Google Mapplets",url:"/apis/maps/documentation/mapplets/",productId:"mapplets",labels:["products","apis","gadgets",
"geo"],keywords:{apis:1,gadgets:1,geo:5,maps:1},shortDesc:"Build mini-applications to embed within the Google Maps site.",longDesc:"Google Mapplets are mini-applications that you can embed within the Google Maps site. Examples include real estate search, current weather conditions, and distance measurement. Mapplets are Gadgets that can manipulate the map using JavaScript calls that are derived from the Google Maps API.",resources:{home:"/apis/maps/documentation/mapplets/",doc:"/apis/maps/documentation/mapplets/guide.html",
group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlegeodevelopers.blogspot.com/",faq:"/apis/maps.faq.html",articles:"/apis/maps/articles/",terms:"/apis/maps/terms.html"}},maps:{title:"Google Maps API",groupsTitle:"Google Maps API Groups",url:"/apis/maps/",productId:"maps",labels:["products","ajax","apis","geo"],keywords:{ajax:7,apis:4,geo:6,maps:6},shortDesc:"Integrate Google's interactive maps with data on your site.",longDesc:"The Google Maps API allows you to create innovative online mapping applications and helps integrate maps and geo-coding into your websites. With it, you can easily present your geo-referenced content in any web browser.",
resources:{home:"/apis/maps/",doc:"/apis/maps/documentation/index.html",group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlegeodevelopers.blogspot.com/",faq:"/apis/maps/faq.html",samplecode:"/apis/maps/documentation/examples/index.html",articles:"/apis/maps/articles",terms:"/apis/maps/terms.html"}},gme:{title:"Google Mashup Editor",groupsTitle:"Google Mashup Editor Groups",url:"/gme/",productId:"gme",labels:["products","ajax","tools"],keywords:{ajax:2,entries:1,gentries:1,tools:5},
shortDesc:"Quickly write code for simple web applications and mashups.",longDesc:"Google Mashup Editor is an AJAX development framework and a set of tools that enable developers to quickly and easily create simple web applications and mashups with Google services like Google Maps and Google Base. Creating applications with Google Mashup Editor is simple, using our declarative XML tags, JavaScript, CSS, and HTML.",resources:{home:"/gme/",doc:"/gme/gettingstarted.html",group:"http://groups.google.com/group/google-mashup-editor",
blog:"http://googlemashupeditor.blogspot.com/",faq:"/support/bin/topic.py?topic=11558",samplecode:"http://gallery.googlemashups.com/",articles:"/support/bin/topic.py?topic=12044",terms:"http://www.google.com/terms_of_service.html"}},notebook:{title:"Google Notebook Data API",groupsTitle:"Google Notebook Data API Groups",url:"/apis/notebook/",productId:"notebook",labels:["products","apis","dataapis"],keywords:{apis:1,feed:1,entries:1,gentries:1,"data apis":3},shortDesc:"Enables your apps to view stored data as Google Data API feeds.",
longDesc:"The Google Notebook Data API allows client applications to view stored data in the form of Google Data API feeds.  Your client application can request a list of a user's public notebooks, or query the content of an existing public notebook.",resources:{home:"/apis/notebook/",doc:"/apis/notebook/gdata.html",group:"http://groups.google.com/group/Google-Labs-Notebook",blog:"http://googledataapis.blogspot.com/",samplecode:"/apis/gdata/clientlibs.html",terms:"http://www.google.com/terms_of_service.html"}},
opensocial:{title:"OpenSocial",groupsTitle:"OpenSocial Groups",url:"/apis/opensocial/",productId:"opensocial",labels:["products","ajax","apis","featured","gadgets"],keywords:{social:10,"open source":2,apis:8},shortDesc:"Build social applications that work across many websites.",longDesc:"OpenSocial defines a common API for social applications across multiple websites. With standard JavaScript and HTML, developers can create apps that access a social network's friends and update feeds. <br><br>A common API means you have less to learn to build for multiple websites. OpenSocial is currently being developed by a broad set of members of the web community. The ultimate goal is for any social website to be able to implement the API and host 3rd party social applications.",
resources:{home:"/apis/opensocial/",doc:"/apis/opensocial/docs/index.html",group:"http://groups.google.com/group/opensocial-api/",blog:"http://opensocialapis.blogspot.com/",faq:"/apis/opensocial/faq.html",articles:"/apis/opensocial/articles/",terms:"/apis/opensocial/terms.html"}},orkut:{title:"Orkut Developer Home",searchTabTitle:"Orkut",groupsTitle:"Orkut Groups",url:"/apis/orkut/",productId:"orkut",labels:["products","gadgets"],keywords:{social:8},shortDesc:"Create social applications for the millions of global Orkut users.",
longDesc:'As a developer, you can create social applications for Orkut users. Orkut supports <a href="/apis/opensocial/">OpenSocial</a>, a common set of APIs, HTML, and JavaScript designed to let developers easily build social applications.',resources:{home:"/apis/orkut/"}},protocolbuffers:{title:"Protocol Buffers",groupsTitle:"Protocol Buffers Groups",url:"/apis/protocolbuffers/",productId:"protocolbuffers",labels:["products","apis","tools"],keywords:{serialization:10,"open source":4,apis:8,"structured data":10,
data:1},shortDesc:"Serialize structured data in a language-neutral, platform-neutral, extensible way.",longDesc:"Protocol buffers are a language-neutral, platform-neutral, extensible way of serializing structured data.  Think XML, but smaller, faster, and simpler.",resources:{home:"/apis/protocolbuffers/",doc:"/apis/protocolbuffers/docs/overview.html",group:"http://groups.google.com/group/protobuf/",faq:"/apis/protocolbuffers/docs/faq.html"}},safebrowsing:{title:"Google Safe Browsing APIs",groupsTitle:"Google Safe Browsing APIs Groups",
url:"/apis/safebrowsing/",productId:"safebrowsing",labels:["products","apis"],keywords:{apis:1,feed:1,entries:1,gentries:1},shortDesc:"Download lists of suspected phishing and malware URLs.",longDesc:"The Safe Browsing API is an experimental API that allows client applications to check URLs against Google's constantly-updated blacklists of suspected phishing and malware pages. Your client application can use the API to download an encrypted table for local, client-side lookups of URLs that you would like to check.",
resources:{home:"/apis/safebrowsing/",doc:"/apis/safebrowsing/developers_guide.html",group:"http://groups.google.com/group/google-safe-browsing-api",blog:"http://googleonlinesecurity.blogspot.com/",terms:"/apis/safebrowsing/terms.html"}},enterprise:{title:"Google Search Appliance APIs",groupsTitle:"Google Search Appliance APIs Groups",url:"/enterprise/",productId:"enterprise",labels:["products","apis","search"],keywords:{apis:1,search:1},shortDesc:"Enables complete control over enterprise search results.",
longDesc:'The <a href="/apis/searchappliance/documentation/xml_reference.html">Search Protocol</a> is a simple HTTP-based protocol for serving search results. Search administrators have complete control over requesting and presenting search results to end users. The <a href="/apis/searchappliance/documentation/feedsguide.html">Feeds Protocol</a> enables a customer or a third-party developer to write a custom application to feed a data source into the Google Search Appliance for processing, indexing, and serving. The <a href="/apis/searchappliance/documentation/authn_authz_spi.html">Authorization Protocol</a> enables a customer\'s web service to authorize users to access specific documents for searching in real-time, leveraging their existing security and access control environment.',
resources:{home:"/apis/searchappliance/",doc:"/apis/searchappliance/documentation/",group:"http://groups.google.com/group/Google-Enterprise-Developer",blog:"http://googleenterprise.blogspot.com/",terms:"http://www.google.com/terms_of_service.html"}},sitemaps:{title:"Google Sitemaps",url:"https://www.google.com/webmasters/tools/docs/en/about.html",productId:"sitemaps",labels:["products","search"],keywords:{search:1,tools:1},shortDesc:"Enables Google to quickly crawl your website.",longDesc:'Enables Google crawlers to quickly find what pages are present and which have recently changed. You create a file conforming to the Sitemap Protocol on your webserver; this file informs and direct Google crawlers, improving the time to inclusion in the index.  We have an open-source <a href="http://goog-sitemapgen.sourceforge.net/">project</a> that helps in the creation of these sitemaps, and many <a href="/sm_thirdparty.html">third party Sitemap tools</a> are available.',
resources:{home:"https://www.google.com/webmasters/tools/docs/en/about.html",doc:"https://www.google.com/webmasters/tools/docs/en/protocol.html",group:"http://groups.google.com/group/Google_Webmaster_Help",blog:"http://googlewebmastercentral.blogspot.com/",terms:"http://www.google.com/accounts/TOS"}},sketchup:{title:"Google SketchUp Ruby API",groupsTitle:"Google SketchUp Ruby API Groups",url:"/apis/sketchup/",productId:"sketchup",labels:["products","apis","geo"],keywords:{apis:1,geo:3},shortDesc:"Extend Google SketchUp with Ruby.",
longDesc:'Google SketchUp Ruby API allows you to manipulate SketchUp models and extend the behavior of Google SketchUp.  You can write macros for repeated tasks.  You can also write customs tools for Google SketchUp and other plugins. <a href="http://groups.google.com/group/sketchupruby/topics">Show off a little</a>.',resources:{home:"/apis/sketchup/",doc:"/apis/sketchup/docs/gsrubyapi_examples.html",group:"http://groups.google.com/group/sketchupruby/topics",blog:"http://sketchupapi.blogspot.com/",
terms:"/apis/sketchup/docs/tos.html"}},socialgraph:{title:"Social Graph API",groupsTitle:"Social Graph API Groups",url:"/apis/socialgraph/",productId:"socialgraph",labels:["products","apis"],keywords:{social:9},shortDesc:"Enable users to quickly add their public social connections to your site.",longDesc:'The Social Graph API makes information about the public connections between people on the Web easily available and useful for developers.  Developers can query this public information to offer their users dramatically streamlined "add friends" functionality and other useful features.',
resources:{home:"/apis/socialgraph/",doc:"/apis/socialgraph/docs/",group:"http://groups.google.com/group/social-graph-api",faq:"apis/socialgraph/faq.html",terms:"/apis/socialgraph/terms.html"}},spreadsheets:{title:"Google Spreadsheets Data API",groupsTitle:"Google Spreadsheets Data API Groups",url:"/apis/spreadsheets/",productId:"spreadsheets",labels:["products","apis","dataapis"],keywords:{apis:1,feed:1,entries:2,gentries:1,"data apis":4},shortDesc:"Enable your apps to view and update Google Spreadsheets content.",
longDesc:"The Google Spreadsheets Data API allows client applications to view and update Spreadsheets content in the form of Google Data API feeds. Your client application can request a list of a user's spreadsheets, edit or delete content in an existing Spreadsheets worksheet, and query the content in an existing Spreadsheets worksheet.",resources:{home:"/apis/spreadsheets/",doc:"/apis/spreadsheets/developers_guide_protocol.html",group:"http://groups.google.com/group/Google-Docs-Data-APIs",blog:"http://googledataapis.blogspot.com/",
faq:"/apis/spreadsheets/faq.html",samplecode:"/apis/spreadsheets/code.html",articles:"/apis/spreadsheets/articles/",terms:"/apis/maps/terms.html"}},staticmaps:{title:"Google Static Maps API",url:"/apis/maps/documentation/staticmaps/",productId:"staticmaps",labels:["products","apis","geo"],keywords:{apis:1,geo:6,maps:2},shortDesc:"Embed a Google Maps image on your webpage without requiring JavaScript or any dynamic page loading.",longDesc:"The Google Static Maps API lets you embed a Google Maps image on your webpage without requiring JavaScript or any dynamic page loading. The Google Static Map service creates your map based on URL parameters sent through a standard HTTP request and returns the map as an image you can display on your web page!",
resources:{home:"/apis/maps/documentation/staticmaps/",doc:"/apis/maps/documentation/staticmaps/",group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlegeodevelopers.blogspot.com/",terms:"/apis/maps/terms.html"}},subscribedlinks:{title:"Subscribed Links",groupsTitle:"Subscribed Links Groups",url:"http://www.google.com/coop/docs/guide_subscribed_links.html",productId:"subscribedlinks",labels:["products","apis","developers","new","search"],keywords:{apis:1,developer:1,"custom results":1,
gadgets:1,onebox:1,search:1,"special results":1,"subscribed links":1},shortDesc:"Define search keywords that trigger custom search results.",longDesc:"Google Subscribed Links enables you to create custom search results and define search keywords for triggering the results. Web users who have signed into their Google account and subscribed to your subscribed links can use keywords that you defined to see your custom search results appear in the Google results page. Your subscribed links can answer questions, display links to your services, provide news and status information, and calculate quantities, among other things.",
resources:{home:"http://www.google.com/coop/docs/guide_subscribed_links.html",doc:"http://www.google.com/coop/docs/guide_subscribed_links.html",group:"http://groups.google.com/group/google-subscribed-link",terms:"http://www.google.com/coop/docs/subscribedlinks/tos.html"}},talk:{title:"Google Talk for Developers",groupsTitle:"Google Talk XMPP Groups",url:"/apis/talk/",productId:"talk",labels:["products","apis"],keywords:{apis:1},shortDesc:"Connect your client or network to the Google Talk network, add chatback, or customize the Google Talk gadget.",
longDesc:'The Google Talk network uses <a href="http://www.xmpp.org/specs/">XMPP</a> for its communications protocol, making it easy for client developers to connect and other networks to federate. There are some non-standard XMPP extensions, which are covered in the <a href="/apis/talk/jep_extensions/extensions.html">Google Talk XMPP Extensions</a> section. Google also offers Libjingle, a set of C++ components to interoperate with Google Talk\'s peer-to-peer and voice calling capabilities. For details, see the <a href="/apis/talk/libjingle/index.html">Libjingle Developer Guide</a>. There are multiple interfaces in a great variety of languages including Python, PHP, Java, and C#. <br><br>Web developers may be interested in <a href="http://www.google.com/talk/service/badge/New">chatback</a> and in the <a href="/apis/talk/talk_gadget.html">Google Talk Gadget</a>, a browser-based instant messaging client for the Google Talk network.',
resources:{home:"/apis/talk/",doc:"/apis/talk/talk_developers_home.html",group:"http://groups.google.com/group/google-talk-open",faq:"/apis/talk/developer_faq.html",samplecode:"/apis/talk/libjingle/index.html",terms:"http://www.google.com/terms_of_service.html"}},themes:{title:"Google Themes API",url:"/apis/themes/",productId:"themes",labels:["products","apis"],keywords:{apis:1},shortDesc:"Design a dynamic theme for the iGoogle homepage.",longDesc:"The Google Themes API allows you to further personalize the iGoogle homepage by specifying your own background images and colors in an XML file.  Themes can change throughout the day, making it easy to create a visual story, a landscape that changes as the sun rises and sets, or a dynamic piece of art.",
resources:{home:"/apis/themes/",doc:"/apis/themes/docs/dev_guide.html",terms:"/apis/themes/docs/terms.html"}},toolbar:{title:"Google Toolbar API",url:"http://www.google.com/tools/toolbar/buttons/apis",productId:"toolbar",labels:["products","apis"],keywords:{apis:1,tools:1},shortDesc:"Lets you create custom buttons for the Google Toolbar.",longDesc:"The Google Toolbar API lets you create custom buttons for the Google Toolbar (version 4 and above) using XML.  Buttons can navigate to and search a site, display an RSS feed in a menu, and change their icon dynamically.",
resources:{home:"http://www.google.com/tools/toolbar/buttons/apis",doc:"http://www.google.com/tools/toolbar/buttons/apis/howto_guide.html",group:"http://groups.google.com/group/Google-Custom-Buttons",faq:"/support/bin/topic.py?topic=10037",samplecode:"http://toolbar.google.com/buttons",terms:"http://www.google.com/terms_of_service.html"}},transit:{title:"Google Transit Feed Specification",groupsTitle:"Google Transit Feed Groups",url:"/transit/spec/transit_feed_specification.html",productId:"transit",
labels:["products","dataapis","geo"],keywords:{feed:1,geo:1,maps:1},shortDesc:"Provide public transit route and schedule information for Google Maps and more.",longDesc:"The Google Transit Feed Specification is a common format that transit agencies and other interested parties can use to make public transportation information available through Google Transit Trip Planner, Google Earth, Google Maps, and other tools.",resources:{home:"/transit/spec/transit_feed_specification.html",doc:"/transit/spec/transit_feed_specification.html",
group:"http://groups.google.com/group/googletransit/",samplecode:"http://spreadsheets.google.com/pub?key=puMHBiWYEbXT0UxQGLDpuBA&gid=11",terms:"http://www.google.com/terms_of_service.html"}},visualization:{title:"Google Visualization API",groupsTitle:"Google Visualization API Groups",url:"/apis/visualization/",productId:"visualization",labels:["products","ajax","apis","dataapis","gadgets"],keywords:{ajax:1,apis:3,gentries:1,gadgets:3},shortDesc:"Create visualizations and reporting applications that access structured data in a common format.",
longDesc:"The Google Visualization API allows you to create visualization and reporting applications over structured data and helps integrate these into your websites or Gadgets. With this API, you can easily create visualizations that provide insights from relevant content and embed those in any web browser.<br><br>This API is also used to create Spreadsheet Gadgets which: <ul><li>Add new features to Google Spreadsheets.</li><li>Use a Google Spreadsheet as a data source for iGoogle or other gadget-enabled sites.</li></ul>",
resources:{home:"/apis/visualization/",doc:"/apis/visualization/documentation/",group:"http://groups.google.com/group/google-visualization-api",faq:"/apis/visualization/faq.html",terms:"/apis/visualization/terms.html"}},webtoolkit:{title:"Google Web Toolkit",groupsTitle:"Google Web Toolkit Groups",url:"/webtoolkit/",productId:"webtoolkit",labels:["products","ajax","featured","tools"],keywords:{ajax:6,java:1,tools:6,gwt:10},shortDesc:"Build AJAX apps in the Java language.",longDesc:"The Google Web Toolkit (GWT) is an open source Java software development framework that helps you produce user-friendly AJAX applications. With GWT, you can use your favorite Java development tools to build AJAX applications without having to tackle the steep learning curve of JavaScript/CSS browser quirks.",
resources:{home:"/webtoolkit/",doc:"/webtoolkit/documentation/",group:"http://groups.google.com/group/Google-Web-Toolkit",blog:"http://googlewebtoolkit.blogspot.com/",faq:"/support/bin/topic.py?topic=10034",samplecode:"/webtoolkit/download.html",articles:"/support/bin/topic.py?topic=11368",terms:"/tos.html"}},picasa:{title:"Picasa APIs",groupsTitle:"Picasa APIs Groups",url:"/apis/picasa/",productId:"picasa",labels:["products","apis","dataapis"],keywords:{apis:3,gentries:1},shortDesc:"Create custom buttons and upload files to 3rd party service.",
longDesc:"The Picasa APIs enable you to create buttons users can install in the  Picasa client user interface (see image below). Once installed, the button  exports selected images from Picasa to another desktop application or  web-based service.",resources:{home:"/apis/picasa/",doc:"/apis/picasa/docs/button_api.html",group:"http://groups.google.com/group/google-picasa-apis",faq:"/apis/picasa/faq.html",terms:"/apis/picasa/terms.html"}},picasaweb:{title:"Picasa Web Albums Data API",groupsTitle:"Picasa Web Albums Data API Groups",
url:"/apis/picasaweb/",productId:"picasaweb",labels:["products","apis","dataapis"],keywords:{feed:1,entries:1,gentries:1,"data apis":3},shortDesc:"Include Picasa Web Albums in your application or website.",longDesc:"The Picasa Web Albums Data API allows websites and client applications to view and update Picasa Web Albums content. Using Google Data API feeds, you can retrieve and update photo albums, add new comments and photos, and even tag photos automatically. It's the easy way to get photos and albums into your own website or application.",
resources:{home:"/apis/picasaweb/",doc:"/apis/picasaweb/gdata.html",group:"http://groups.google.com/group/Google-Picasa-Data-API",blog:"http://googledataapis.blogspot.com/",faq:"/apis/picasaweb/faq.html",samplecode:"/apis/picasaweb/code.html",articles:"/apis/picasaweb/articles/",terms:"/apis/picasaweb/terms.html"}},v8:{title:"V8",url:"/apis/v8/",productId:"v8",labels:["products","apis","featured","new","tools"],keywords:{apis:1,browser:1,chrome:1,chromium:1,tools:1},shortDesc:"Google's high performance, open source, JavaScript engine.",
longDesc:"Embed V8 in your own C++ application to make your application's objects and methods available to JavaScript, and to make JavaScript objects and functions available to your application.",resources:{home:"/apis/v8/",doc:"/apis/v8/intro.html",terms:"/apis/v8/terms.html"}},webmastertools:{title:"Google Webmaster Tools Data API",groupsTitle:"Webmaster Tools Data API Groups",url:"/apis/webmastertools/",productId:"webmastertools",labels:["products","apis","dataapis","new","search","tools"],keywords:{"data apis":1,
search:1,tools:1},shortDesc:"View and update site information and Sitemaps in the form of feeds.",longDesc:'Google Webmaster Tools Data API allows client applications to view and update site information and <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40318">Sitemaps</a> in the form of Google Webmaster Tools Data API feeds. Your client application can use the Google Webmaster Tools Data API to view sites in your account, add and remove sites, verify site ownership, and submit and delete Sitemaps.',
resources:{home:"/apis/webmastertools/",doc:"/apis/webmastertools/docs/developers_guide.html",group:"http://groups.google.com/group/Google_Webmaster_Help",blog:"http://googlewebmastercentral.blogspot.com/",terms:"/apis/webmastertools/docs/terms.html"}},youtube:{title:"YouTube Data API",groupsTitle:"YouTube Data API Groups",url:"/apis/youtube/",productId:"youtube",labels:["products","apis","dataapis"],keywords:{feed:4,entries:2,gentries:6},shortDesc:"Integrate YouTube videos into your website or application.",
longDesc:"YouTube offers open access to key parts of the YouTube video repository and user community, via an open API interface and RSS feeds. Using our APIs, you can easily integrate online videos from YouTube's rapidly growing repository of videos into your application.",resources:{home:"/apis/youtube/",doc:"/apis/youtube/developers_guide_protocol.html",group:"http://groups.google.com/group/youtube-api",blog:"http://apiblog.youtube.com/",faq:"/apis/youtube/faq.html",samplecode:"/apis/youtube/code.html",
articles:"/apis/youtube/articles/",terms:"/apis/youtube/terms.html"}},youtubeplayer:{title:"YouTube Player Tools",groupsTitle:"YouTube Player Tools Groups",url:"/apis/youtube/player_parameters.html",productId:"youtubeplayer",labels:["products","apis","dataapis"],keywords:{feed:4,entries:2,gentries:6},shortDesc:"Feature YouTube videos on your website.",longDesc:"The YouTube Player APIs allow you to customize the way that YouTube video content is displayed on your site. Using the Chromeless Player you can have complete control over the way the player appears on your page. You can also control the player using either the JavaScript or the ActionScript API.",
resources:{home:"/apis/youtube/player_parameters.html",doc:"/apis/youtube/player_parameters.html",group:"http://groups.google.com/group/youtube-api",blog:"http://apiblog.youtube.com/",faq:"/apis/youtube/faq.html",samplecode:"/apis/youtube/code.html",articles:"/apis/youtube/articles/",terms:"/apis/youtube/terms.html"}}}},programs:{dictionaryType:"programs",includeInSiteDirectory:true,includeInSearchSuggest:true,siteDirectoryMetaData:h.programs,keys:["opensource","soc","ghop","projectHosting","mac",
"edu","doctype","events","campfire"],entries:{opensource:{title:"OpenSource",url:"/opensource/",productId:"opensource",labels:["programs","opensource"],keywords:{"open source":10},shortDesc:"Google's contribution back to the Open Source community.",longDesc:'Google is a proud user and supporter of open source software and development methodologies. As a company, Google contributes back to the Open Source community in a variety of ways.<br><br>Key Links: <ul><li><a href="/projects.html">Source Code</a> - From our <a href="/p/google-perftools/">performance tools</a> to application layer projects like <a href="http://gears.google.com/">Gears</a>, Google releases internally developed code as open source.</li><li><a href="/hosting/">Project Hosting on Google Code</a> - Project Hosting on Google Code is a free service to the open source community.</li><li><a href="/soc/">Google Summer of Code</a> - Now in its third year, Google Summer of Code is our program to introduce students to open source development and real-world programming challenges.</li></ul>'},
soc:{title:"Google Summer of Code",url:"/soc/",productId:"soc",labels:["programs","opensource"],keywords:{"open source":5},shortDesc:"Introduce students to open source development",longDesc:'<p><i>Google Summer of Code</i> is a program that offers student developers stipends to write code for various open source projects. Google will be working with several open source, free software, and technology-related groupsto identify and fund several projects over a three month period. Historically, the program has brought together over 1,500 students with over 130 open source projects to create millions of lines of code.   </p>  <p>We\'ll be regularly posting news and updates about the program to the   <a href="http://google-opensource.blogspot.com/search/label/gsoc">Google Open Source Blog</a>.   If you\'re interested in participating in the program in the future, you can still   check out our <a href="/opensource/gsoc/2008/faqs.html">FAQs</a>.   Many of our mentoring organizations have also added program write ups to their websites.  </p>  <p>The program, which kicked off in <a href="/soc/2005/">2005</a>, is now in its fourth year. If you\'re feeling nostalgic or are interested in learning more about the projects we have worked with in the past, check out the   <a href="/soc/2006/">2006</a> and   <a href="/soc/2007/">2007</a> program pages.  </p>'},
ghop:{title:"Highly Open Participation Contest",url:"/opensource/ghop/2007-8/",productId:"ghop",labels:["programs","opensource"],keywords:{"open source":2},shortDesc:"Get young people involved in open source development",longDesc:'Following on from the success of the <a href="http://code.google.com/soc/">Google Summer of Code</a> program, Google is pleased to announce this new effort to get young people involved in open source development.  We\'ve teamed up with the open source projects listed here to give student contestants the opportunity to learn more about and contribute to all aspects of open source software development, from writing code and documentation to preparing training materials and conducting user experience research.'},
projectHosting:{title:"Project Hosting",url:"/hosting/",productId:"projectHosting",labels:["programs","opensource"],keywords:{"open source":6},shortDesc:"Host your open source project on Google Code.",longDesc:'Project Hosting on Google Code is a free service to the open source community. Featuring a Subversion back-end, wiki support, file downloads, issue tracking and a clean, Google-style interface, our project hosting service is the world\'s second largest open source hosting site after <a href="http://sourceforge.net/index.php">SourceForge.net</a>.'},
mac:{title:"Google Mac Developer Playground",url:"/mac/",productId:"mac",labels:["programs","opensource"],keywords:{"open source":2,osx:6,apple:6,iphone:6},shortDesc:"Download open-source Mac software.",longDesc:"The Google Mac Developer Playground is a collection of open-source projects Mac developers at Google work on during their 20% time or on their own time."},edu:{title:"Google Code University",groupsTitle:"Google Code University Groups",url:"/edu/",productId:"edu",labels:["programs","educators"],
keywords:{educators:1},shortDesc:"Materials Created Especially for CS educators.",longDesc:'This website provides tutorials and sample course content so CS        students and educators can learn more about current computing        technologies and paradigms.         In particular, this content is Creative Commons licensed which makes it        easy for CS educators to use in their own classes.        <br><br>  Key Links:  <ul>    <li><a href="/edu/index.html">Home</a></li>    <li><a href="http://groups.google.com/group/Google-Code-for-Educators">Groups</a></li>    <li><a href="/edu/curriculumsearch/index.html">CS Curriculum Search</a></li>  </ul>  <p>  Course materials:  <ul>    <li><a href="/edu/ajax/index.html">Ajax Programming</a></li>    <li><a href="/edu/parallel/index.html">Distributed Systems</a></li>    <li><a href="/edu/security/index.html">Web Security</a></li>    <li><a href="/edu/languages/index.html">Languages</a></li>    <li><a href="/edu/tools101/index.html">Tools 101</a></li>  </ul>'},
doctype:{title:"Google DocType",groupsTitle:"Google DocType Groups",url:"/doctype/",productId:"doctype",labels:["programs","educators"],keywords:{educators:1},shortDesc:"An encyclopedia of the open web.",longDesc:"Google Doctype is an 100% open encyclopedia -- by web developers, for web developers. It includes sample code, test cases, and articles on web security, JavaScript, and CSS."},events:{title:"Developer Events",url:"/events/calendar/",productId:"events",labels:["programs","developers"],keywords:{developer:1,
gdd:1,"developer day":1},shortDesc:"Schedule of upcoming developer events.",longDesc:"<p>The Google Developer Events Calendar can be used to find upcoming developer events, including hackathons, meetups, and presentations on all things code.  You can also post your upcoming meetups and user groups to this calendar to promote your events to the developer community.</p><p>You can add the Google Developer Events Calendar to your Google Calendar or can add it to your feed reader.</div></p>"},campfire:{title:"Google Campfire One",
url:"/campfire/",productId:"campfire",labels:["programs","developers"],keywords:{developer:1},shortDesc:"Conversations with the developer community.",longDesc:'Every once in a while we\'ll invite members of the developer community on campus to talk shop, share some news, and eat S\'mores. We\'re calling this "Google Campfire One."   <br><br>  Key Links:  <ul>    <li><a href="/campfire/">Home</a></li>  </ul>'}}},searchSuggest:{dictionaryType:"searchSuggest",includeInSiteDirectory:false,includeInSearchSuggest:true,
keys:["googleio","support","developerday","codeblog","featuredprojects","enterprisecomm","opensourceprojects"],entries:{googleio:{title:"Google I/O",url:"/events/io/",keywords:{apis:1,gentries:1,"google io":1,io:1}},support:{title:"Knowledge Base",url:"/support/",keywords:{faq:1}},developerday:{title:"Developer Day 2008",url:"/events/developerday/",keywords:{developer:1}},codeblog:{title:"Google Code Blog",url:"http://google-code-updates.blogspot.com/",keywords:{developer:1}},featuredprojects:{title:"Featured Projects",
url:"http://google-code-featured.blogspot.com/",keywords:{developer:1}},enterprisecomm:{title:"Google Enterprise Developer Community ",url:"/enterprise/",keywords:{developer:1}},opensourceprojects:{title:"Open Source Projects",url:"/hosting/projects.html",keywords:{"open source":1}}}},searchResultTabs:{dictionaryType:"searchResultTabs",includeInSiteDirectory:false,includeInSearchSuggest:false,keys:["google_code","discussion","project_hosting"],entries:{google_code:{title:"Google Code Website"},discussion:{title:"Google Code Groups",
groupsTitle:"Google Code Groups"},project_hosting:{title:"Project Hosting"}}}};window.CODESITE_productDictionary_default=a;window.CODESITE_productDictionary=a})();(function(){var h={products:{sectionTitle:"\u30d7\u30ed\u30c0\u30af\u30c8",labels:["\u3059\u3079\u3066","\u30d4\u30c3\u30af\u30a2\u30c3\u30d7","\u6700\u65b0\u30ea\u30ea\u30fc\u30b9","\u691c\u7d22","\u5e83\u544a","\u30ac\u30b8\u30a7\u30c3\u30c8","\u30c7\u30fc\u30bf API","AJAX","API","Geo","\u30c4\u30fc\u30eb"],labelsMapExternalToInternal:{"\u3059\u3079\u3066":"products","\u30d4\u30c3\u30af\u30a2\u30c3\u30d7":"featured","\u6700\u65b0\u30ea\u30ea\u30fc\u30b9":"new","\u5e83\u544a":"ads",AJAX:"ajax",API:"apis",
"\u30c7\u30fc\u30bf API":"dataapis","\u30ac\u30b8\u30a7\u30c3\u30c8":"gadgets",Geo:"geo","\u691c\u7d22":"search","\u30c4\u30fc\u30eb":"tools"},labelsMapInternalToExternal:{products:"\u3059\u3079\u3066",featured:"\u30d4\u30c3\u30af\u30a2\u30c3\u30d7","new":"NEW",ads:"\u5e83\u544a",ajax:"AJAX",apis:"API",dataapis:"Data API",gadgets:"\u30ac\u30b8\u30a7\u30c3\u30c8",geo:"Geo",search:"\u691c\u7d22",tools:"\u30c4\u30fc\u30eb"},resourceKeys:["home","doc","group","blog","faq","samplecode","articles","terms",
"appgallery"],resourceKeysMap:{home:"\u30db\u30fc\u30e0",doc:"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8",group:"\u30b0\u30eb\u30fc\u30d7",blog:"\u30d6\u30ed\u30b0",faq:"\u3088\u304f\u3042\u308b\u8cea\u554f",samplecode:"\u30b5\u30f3\u30d7\u30eb \u30b3\u30fc\u30c9",articles:"\u8a18\u4e8b\u3068\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb",terms:"\u898f\u7d04",appgallery:"\u30a2\u30d7\u30ea \u30ae\u30e3\u30e9\u30ea\u30fc"}},programs:{sectionTitle:"\u30d7\u30ed\u30b0\u30e9\u30e0",labels:["\u3059\u3079\u3066",
"\u6559\u80b2","\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc","\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9"],labelsMapExternalToInternal:{"\u3059\u3079\u3066":"programs","\u6559\u80b2":"educators","\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":"developers","\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9":"opensource"},labelsMapInternalToExternal:{programs:"\u3059\u3079\u3066",educators:"\u6559\u80b2",developers:"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc",opensource:"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9"}},messages:{NEW:"New! ",
LONG_DESC_PANEL_TITLE:"\u8a73\u7d30",FOR_MORE:"\u8a73\u7d30\u60c5\u5831"}};window.CODESITE_siteDirectoryMetaData=h;var a={dictionariesList:["products","programs","searchSuggest","searchResultTabs"],products:{dictionaryType:"products",includeInSiteDirectory:true,includeInSearchSuggest:true,siteDirectoryMetaData:h.products,keys:["android","gdata","blogger","feedburner","gmail","accounts","adsense","adsenseforaudio","adwords","ajax","ajaxfeeds","ajaxlanguage","ajaxsearch","analytics","appengine","apps",
"base","books","calendar","chart","checkout","csearch","codesearch","contacts","coupons","gdgadgets","desktop","documents","friendconnect","gadgets","gears","health","kml","mapplets","maps","flashmaps","gme","newsfeeds","notebook","opensocial","orkut","safebrowsing","enterprise","searchhistoryfeeds","sitemaps","sketchup","socialgraph","spreadsheets","staticmaps","talk","themes","toolbar","transitfeed","visualization","webtoolkit","picasa","picasaweb","youtube"],entries:{android:{title:"Android",groupsTitle:"Android \u30b0\u30eb\u30fc\u30d7",
url:"/android/",productId:"android",labels:["products","apis","featured"],keywords:{"\u30e2\u30d0\u30a4\u30eb":10},shortDesc:"Android (\u30e2\u30d0\u30a4\u30eb \u30c7\u30d0\u30a4\u30b9\u5411\u3051\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2 \u30b9\u30bf\u30c3\u30af) \u7528\u30e2\u30d0\u30a4\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002",longDesc:'Android \u3068\u306f\u3001\u30aa\u30da\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0 \u30b7\u30b9\u30c6\u30e0\u3001\u30df\u30c9\u30eb\u30a6\u30a7\u30a2\u3001\u4e3b\u8981\u306a\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306a\u3069\u306e\u30e2\u30d0\u30a4\u30eb \u30c7\u30d0\u30a4\u30b9\u5411\u3051\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2 \u30b9\u30bf\u30c3\u30af\u3067\u3059\u300230 \u4ee5\u4e0a\u306e\u6280\u8853\u3068\u30e2\u30d0\u30a4\u30eb\u4f01\u696d\u306e\u30b0\u30eb\u30fc\u30d7\u3001<a href="http://www.openhandsetalliance.com/">Open Handset Alliance</a> \u306b\u3088\u3063\u3066\u958b\u767a\u3055\u308c\u3066\u3044\u307e\u3059\u3002Android \u306f\u3001\u7aef\u672b\u304c\u63d0\u4f9b\u3059\u308b\u6a5f\u80fd\u3092\u30d5\u30eb\u306b\u751f\u304b\u3059\u5f37\u529b\u306a\u30e2\u30d0\u30a4\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u304c\u4f5c\u6210\u3067\u304d\u308b\u3088\u3046\u306b\u5fb9\u5e95\u7684\u306b\u69cb\u7bc9\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306f Android SDK \u3092\u4f7f\u7528\u3057\u3066\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u5411\u3051\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002',
resources:{home:"/android/",doc:"/android/documentation.html",group:"http://groups.google.com/group/android-developers",blog:"http://android-developers.blogspot.com/",faq:"/android/kb/index.html",terms:"/android/terms.html"}},gdata:{title:"Google Data API",groupsTitle:"Google Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/gdata/",productId:"gdata",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":6,"G \u30a8\u30f3\u30c8\u30ea":10,"Data API":10,
Java:1},shortDesc:"Web \u4e0a\u306e\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u66f8\u304d\u3059\u308b\u30b7\u30f3\u30d7\u30eb\u306a\u6a19\u6e96\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3059\u3002",longDesc:"Google Data API \u3067\u306f\u3001Web \u4e0a\u306e\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u66f8\u304d\u3059\u308b\u30b7\u30f3\u30d7\u30eb\u306a\u6a19\u6e96\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002Google Data API \u306f\u3001Atom 1.0\u3001RSS 2.0 \u306e\u5404\u30b7\u30f3\u30b8\u30b1\u30fc\u30b7\u30e7\u30f3 \u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3001Atom Publishing Protocl \u3092\u30d9\u30fc\u30b9\u3068\u3057\u305f\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3059\u3002Google Base\u3001Blogger\u3001Google \u30ab\u30ec\u30f3\u30c0\u30fc\u3001Google \u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u3001Picasa \u30a6\u30a7\u30d6 \u30a2\u30eb\u30d0\u30e0\u306a\u3069\u306e\u4e00\u90e8\u306e Google \u30b5\u30fc\u30d3\u30b9\u3067\u306f\u3001Google Data API \u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002",
resources:{home:"/apis/gdata/",doc:"/apis/gdata/overview.html",group:"http://groups.google.com/group/google-help-dataapi",blog:"http://googledataapis.blogspot.com/",samplecode:"/apis/gdata/clientlibs.html",terms:"http://www.google.com/terms_of_service.html"}},blogger:{title:"Blogger Data API",groupsTitle:"Blogger Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/blogger/",productId:"blogger",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":2,
"G \u30a8\u30f3\u30c8\u30ea":1,"Data API":4},shortDesc:"Blogger \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u8868\u793a\u3001\u66f4\u65b0\u3057\u307e\u3059\u3002",longDesc:"Blogger Data API \u3067\u306f\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u4f7f\u7528\u3057\u3066 Blogger \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3001\u66f4\u65b0\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u3092\u4f7f\u7528\u3057\u3066\u3001\u65b0\u3057\u3044\u30d6\u30ed\u30b0\u8a18\u4e8b\u306e\u6295\u7a3f\u3001\u6295\u7a3f\u6e08\u307f\u306e\u8a18\u4e8b\u306e\u7de8\u96c6\u3084\u524a\u9664\u3001\u7279\u5b9a\u306e\u6761\u4ef6\u306b\u4e00\u81f4\u3059\u308b\u8a18\u4e8b\u306e\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/blogger/",doc:"/apis/blogger/developers_guide_protocol.html",group:"http://groups.google.com/group/bloggerDev",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10022&hl=ja",samplecode:"/apis/gdata/clientlibs.html",articles:"/support/bin/topic.py?topic=12062&hl=ja",terms:"http://www.blogger.com/terms.g"}},feedburner:{title:"FeedBurner API",groupsTitle:"FeedBurner \u30b0\u30eb\u30fc\u30d7",url:"/apis/feedburner/",productId:"feedburner",labels:["products",
"apis","dataapis"],keywords:{"\u30d5\u30a3\u30fc\u30c9":10},shortDesc:"FeedBurner \u306e\u30d5\u30a3\u30fc\u30c9\u30de\u30cd\u30b8\u30e1\u30f3\u30c8 API \u3084 \u30d5\u30a3\u30fc\u30c9\u30a2\u30a6\u30a7\u30a2\u30cd\u30b9 API \u3068\u9023\u643a\u3057\u307e\u3059\u3002",longDesc:"FeedBurner \u306f\u3001\u30d5\u30a3\u30fc\u30c9\u30de\u30cd\u30b8\u30e1\u30f3\u30c8 API \u3084 \u30d5\u30a3\u30fc\u30c9\u30a2\u30a6\u30a7\u30a2\u30cd\u30b9 API \u3068\u9023\u643a\u3059\u308b\u305f\u3081\u306e Web \u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002\u3053\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u6a5f\u80fd\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001FeedBurner \u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6301\u3064\u30e6\u30fc\u30b6\u30fc\u306f FeedBurner \u30b5\u30fc\u30d3\u30b9\u3067\u5229\u7528\u3067\u304d\u308b\u6700\u3082\u4e00\u822c\u7684\u306a\u64cd\u4f5c\u306e\u4e00\u90e8\u3092\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u5b9f\u884c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/feedburner/",doc:"/apis/feedburner/developers_guide.html",group:"http://forums.feedburner.com",blog:"http://blogs.feedburner.com",terms:"http://www.feedburner.com/fb/a/tos"}},gmail:{title:"Gmail Atom \u30d5\u30a3\u30fc\u30c9",url:"http://gmail.google.com/support/bin/answer.py?answer=13465&hl=ja",productId:"gmail",labels:["products","dataapis"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1},shortDesc:"Gmail \u306e\u53d7\u4fe1\u30c8\u30ec\u30a4\u3084\u30e9\u30d9\u30eb\u3092\u8aad\u307f\u53d6\u308b\u305f\u3081\u306e\u30b7\u30f3\u30d7\u30eb\u306a\u30d5\u30a3\u30fc\u30c9\u6a5f\u80fd\u3067\u3059\u3002",
longDesc:"\u3053\u306e\u30d5\u30a3\u30fc\u30c9\u6a5f\u80fd\u3092\u4f7f\u7528\u3057\u3066\u3001Atom XML \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30a2\u30b0\u30ea\u30b2\u30fc\u30bf\u3067 Gmail \u306e\u53d7\u4fe1\u30c8\u30ec\u30a4\u3084\u30e9\u30d9\u30eb\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",resources:{home:"http://gmail.google.com/support/bin/answer.py?answer=13465&hl=ja",group:"http://groups.google.com/group/Gmail-Help-Discussion",
terms:"http://mail.google.com/mail/help/intl/ja/terms_of_use.html"}},accounts:{title:"Google \u30a2\u30ab\u30a6\u30f3\u30c8\u8a8d\u8a3c",groupsTitle:"Google \u30a2\u30ab\u30a6\u30f3\u30c8\u8a8d\u8a3c\u30b0\u30eb\u30fc\u30d7",url:"/apis/accounts/",productId:"accounts",labels:["products","apis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1},shortDesc:"\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3088\u308b\u30ed\u30b0\u30a4\u30f3\u6a5f\u80fd\u3092\u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30e2\u30d0\u30a4\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
longDesc:'<a href="/apis/accounts/AuthForInstalledApps.html">ClientLogin API</a> \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30e2\u30d0\u30a4\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<a href="/apis/accounts/AuthForWebApps.html">AuthSub API</a> \u3092\u4f7f\u7528\u3057\u305f\u5834\u5408\u306f\u3001\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089 Google \u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u969b\u306b\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u30e6\u30fc\u30b6\u30fc\u306e\u30ed\u30b0\u30a4\u30f3\u60c5\u5831\u306f\u51e6\u7406\u3055\u308c\u307e\u305b\u3093\u3002',
resources:{home:"/apis/accounts/index.html",group:"http://groups.google.com/group/Google-Accounts-API",terms:"http://www.google.com/terms_of_service.html"}},adsense:{title:"Google AdSense API",groupsTitle:"Google AdSense API \u30b0\u30eb\u30fc\u30d7",url:"/apis/adsense/",productId:"adsense",labels:["products","ads","apis"],keywords:{"\u5e83\u544a":1,API:1},shortDesc:"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u5e83\u544a\u3092\u63b2\u8f09\u3057\u3066\u3001\u53ce\u76ca\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
longDesc:"AdSense API \u3067\u306f\u3001\u30a6\u30a7\u30d6\u3084\u30d6\u30ed\u30b0\u306e\u30db\u30b9\u30c6\u30a3\u30f3\u30b0 \u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u306b\u3001AdSense \u306e\u30ed\u30b0\u30a4\u30f3\u3001\u5e83\u544a\u30e6\u30cb\u30c3\u30c8\u7ba1\u7406\u3001\u30ec\u30dd\u30fc\u30c8\u6a5f\u80fd\u3092\u7d71\u5408\u3067\u304d\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u95a2\u9023\u306e\u3042\u308b\u5e83\u544a\u3092\u63b2\u8f09\u3057\u3001\u5546\u54c1\u3078\u306e\u30ea\u30f3\u30af\u3092\u8868\u793a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30aa\u30fc\u30ca\u30fc\u3068\u30e6\u30fc\u30b6\u30fc\u306e\u4e21\u65b9\u304c\u53ce\u76ca\u3092\u4e0a\u3052\u3089\u308c\u307e\u3059\u3002",
resources:{home:"/apis/adsense/",doc:"/apis/adsense/developer/index.html",group:"http://groups.google.com/group/adsense-api",blog:"http://adsense.blogspot.com/",faq:"/support/bin/topic.py?topic=10019&hl=ja",samplecode:"/apis/adsense/developer/adsense_api_samples.html",articles:"/support/bin/topic.py?topic=10048&hl=ja",terms:"/apis/adsense/terms.html"}},adsenseforaudio:{title:"Google AdSense for Audio API",groupsTitle:"Google AdSense for Audio API \u30b0\u30eb\u30fc\u30d7",url:"/apis/adsenseforaudio/",
productId:"adsenseforaudio",labels:["products","ads","apis","new"],keywords:{"\u5e83\u544a":1,API:1},shortDesc:"AdSense for Audio \u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8 \u30b7\u30b9\u30c6\u30e0\u306b\u7d44\u307f\u8fbc\u307f\u307e\u3059\u3002",longDesc:"AdSense for Audio API \u3067\u306f\u3001AdSense for Audio \u3092\u30e9\u30b8\u30aa \u30aa\u30fc\u30c8\u30e1\u30fc\u30b7\u30e7\u30f3 \u30b7\u30b9\u30c6\u30e0\u306a\u3069\u306e\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8 \u30b7\u30b9\u30c6\u30e0\u306b\u7d71\u5408\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002AdSense for Audio \u3068\u653e\u9001\u30b7\u30b9\u30c6\u30e0\u3092\u7d71\u5408\u3059\u308b\u3053\u3068\u3067\u3001\u653e\u9001\u5c40\u304b\u3089 AdSense for Audio \u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u653e\u9001\u5c40\u306e\u8ca9\u58f2\u3055\u308c\u3066\u3044\u306a\u3044\u30b3\u30de\u30fc\u30b7\u30e3\u30eb\u306e\u5728\u5eab\u3092\u3001Google Audio Ads \u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u901a\u3058\u3066\u4f55\u5343\u4eba\u3082\u306e\u5e83\u544a\u4e3b\u306b\u8ca9\u58f2\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/adsenseforaudio/",doc:"/apis/adsenseforaudio/docs/developer_guide.html",group:"http://groups.google.com/group/audioadsense-api-support",faq:"/apis/adsenseforaudio/docs/faq.html",terms:"/apis/adsenseforaudio/docs/terms_of_service.html"}},adwords:{title:"Google AdWords API",groupsTitle:"Google AdWords API \u30b0\u30eb\u30fc\u30d7",url:"http://www.google.com/intl/ja/apis/adwords/",productId:"adwords",labels:["products","ads","apis"],keywords:{"\u5e83\u544a":2,API:1},shortDesc:"\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u7ba1\u7406\u3092\u81ea\u52d5\u5316\u3001\u52b9\u7387\u5316\u3057\u307e\u3059\u3002",
longDesc:"AdWords API Beta \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u5e83\u544a\u4e3b\u3084\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306f AdWords \u5e83\u544a\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3068\u76f4\u63a5\u9023\u643a\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306f\u3001\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3078\u306e\u76f4\u63a5\u30a2\u30af\u30bb\u30b9\u6a5f\u80fd\u3092\u88c5\u5099\u3057\u3001\u30ec\u30dd\u30fc\u30c8\u6a5f\u80fd\u3001\u30c7\u30fc\u30bf\u7d71\u5408\u3001\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3001\u5165\u672d\u7ba1\u7406\u3092\u81ea\u52d5\u5316\u3059\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 \u30b9\u30a4\u30fc\u30c8\u3092\u8a2d\u8a08\u3067\u304d\u307e\u3059\u3002",
resources:{home:"http://www.google.com/intl/ja/apis/adwords/",doc:"http://www.google.com/intl/ja/apis/adwords/developer/index.html",group:"http://groups.google.com/group/adwords-api",blog:"http://adwordsapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10020&hl=ja",samplecode:"http://www.google.com/intl/ja/apis/adwords/samplecode.html",terms:"http://www.google.com/intl/ja/apis/adwords/terms.html"}},ajax:{title:"Google AJAX API",groupsTitle:"Google AJAX API \u30b0\u30eb\u30fc\u30d7",url:"/apis/ajax/",
productId:"ajax",labels:["products","ajax","apis"],keywords:{AJAX:10,API:10},shortDesc:"\u30ea\u30c3\u30c1\u3067\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u306a\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092 JavaScript \u3068 HTML \u3060\u3051\u3067\u5b9f\u88c5\u3057\u307e\u3059\u3002",longDesc:"Google AJAX API \u3067\u306f\u3001\u30ea\u30c3\u30c1\u3067\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u306a\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092 JavaScript \u3068 HTML \u3060\u3051\u3067\u5b9f\u88c5\u3067\u304d\u307e\u3059\u3002JavaScript \u30b3\u30fc\u30c9\u3092\u6570\u884c\u8ffd\u52a0\u3059\u308b\u3060\u3051\u3067\u3001\u30b5\u30a4\u30c8\u306b\u5730\u56f3\u3084\u52d5\u7684\u306a\u691c\u7d22\u30dc\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u305f\u308a\u3001\u30d5\u30a3\u30fc\u30c9\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/ajax/",doc:"/apis/ajax/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021&hl=ja",terms:"/tos.html"}},ajaxfeeds:{title:"Google AJAX Feed API",groupsTitle:"Google AJAX Feed API \u30b0\u30eb\u30fc\u30d7",url:"/apis/ajaxfeeds/",productId:"ajaxfeeds",labels:["products","ajax","apis","dataapis"],keywords:{AJAX:8,API:5,"\u30d5\u30a3\u30fc\u30c9":6},shortDesc:"JavaScript \u3092\u4f7f\u7528\u3057\u3066\u516c\u958b\u30d5\u30a3\u30fc\u30c9\u3092\u7c21\u5358\u306b\u30de\u30c3\u30b7\u30e5\u30a2\u30c3\u30d7\u3057\u307e\u3059\u3002",
longDesc:"AJAX Feed API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001JavaScript \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u306e\u30c7\u30fc\u30bf \u30d5\u30a3\u30fc\u30c9\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3068\u5229\u7528\u304c\u7c21\u5358\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u308c\u307e\u3067\u306f\u30d5\u30a3\u30fc\u30c9\u3092\u8aad\u307f\u53d6\u3063\u305f\u308a\u3001\u30de\u30c3\u30b7\u30e5\u30a2\u30c3\u30d7\u5185\u3067\u30d5\u30a3\u30fc\u30c9\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306b\u3001\u30d5\u30a3\u30fc\u30c9\u7528\u306e\u30d7\u30ed\u30ad\u30b7 \u30b5\u30fc\u30d0\u30fc\u304c\u5fc5\u8981\u3067\u3057\u305f\u304c\u3001Google AJAX Feed API \u306a\u3089\u3001JavaScript \u30b3\u30fc\u30c9\u3092\u6570\u884c\u8ffd\u52a0\u3059\u308b\u3060\u3051\u3067\u3001\u3055\u307e\u3056\u307e\u306a\u30bd\u30fc\u30b9\u304b\u3089 RSS \u30d5\u30a3\u30fc\u30c9\u3084 Atom \u30d5\u30a3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002",
resources:{home:"/apis/ajaxfeeds/",doc:"/apis/ajaxfeeds/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021&hl=ja",samplecode:"/apis/ajaxfeeds/examples.html",terms:"/apis/ajaxfeeds/terms.html"}},ajaxlanguage:{title:"Google AJAX Language API",groupsTitle:"Google AJAX Language API \u30b0\u30eb\u30fc\u30d7",url:"/apis/ajaxlanguage/",productId:"ajaxlanguage",labels:["products","ajax","apis",
"new"],keywords:{AJAX:8,API:5,"\u8a00\u8a9e":10},shortDesc:"JavaScript \u306e\u307f\u3092\u4f7f\u3063\u3066\u3001\u8907\u6570\u8a00\u8a9e\u3092\u7c21\u5358\u306b\u7ffb\u8a33\u3001\u691c\u77e5\u3057\u307e\u3059\u3002",longDesc:"AJAX Language API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001JavaScript \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u5185\u3067\u7c21\u5358\u306b\u8907\u6570\u8a00\u8a9e\u306e\u7ffb\u8a33\u3084\u691c\u77e5\u3092\u884c\u3048\u307e\u3059\u3002",resources:{home:"/apis/ajaxlanguage/",
doc:"/apis/ajaxlanguage/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021&hl=ja",samplecode:"/apis/ajaxlanguage/documentation#Examples",terms:"/apis/ajaxlanguage/terms.html"}},ajaxsearch:{title:"Google AJAX Search API",groupsTitle:"Google AJAX Search API \u30b0\u30eb\u30fc\u30d7",url:"/apis/ajaxsearch/",productId:"ajaxsearch",labels:["products","ajax","apis","featured","search"],keywords:{AJAX:9,
API:10,"\u691c\u7d22":6},shortDesc:"\u30b5\u30a4\u30c8\u306b Google \u691c\u7d22\u30dc\u30c3\u30af\u30b9\u3092\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",longDesc:"Google AJAX Search API \u3067\u306f\u3001JavaScript \u3092\u4f7f\u7528\u3057\u3066\u3054\u81ea\u8eab\u306e\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u30b7\u30f3\u30d7\u30eb\u3067\u52d5\u7684\u306a Google \u691c\u7d22\u30dc\u30c3\u30af\u30b9\u3092\u57cb\u3081\u8fbc\u3093\u3067\u691c\u7d22\u7d50\u679c\u3092\u8868\u793a\u3057\u305f\u308a\u3001\u691c\u7d22\u7d50\u679c\u3092\u9769\u65b0\u7684\u306a\u65b9\u6cd5\u3067\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u5fc5\u8981\u3082\u3042\u308a\u307e\u305b\u3093\u3002\u30b3\u30fc\u30c9 \u30a6\u30a3\u30b6\u30fc\u30c9\u3092\u4f7f\u7528\u3059\u308c\u3070\u3001\u6570\u56de\u306e\u64cd\u4f5c\u3067\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u30ab\u30b9\u30bf\u30e0 AJAX \u691c\u7d22\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/ajaxsearch/",doc:"/apis/ajaxsearch/documentation/",group:"http://groups.google.com/group/Google-AJAX-Search-API",blog:"http://googleajaxsearchapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10021&hl=ja",samplecode:"/apis/ajaxsearch/samples.html",articles:"/support/bin/topic.py?topic=11530&hl=ja",terms:"/apis/ajaxsearch/terms.html"}},analytics:{title:"Google Analytics",groupsTitle:"Google Analytics \u30b0\u30eb\u30fc\u30d7",url:"/apis/analytics/",productId:"analytics",labels:["products",
"tools"],keywords:{"\u30c4\u30fc\u30eb":1},shortDesc:"\u81ea\u5206\u306e\u30b5\u30a4\u30c8\u306e\u7dcf\u30da\u30fc\u30b8\u8868\u793a\u56de\u6570\u3001\u65b0\u898f\u8a2a\u554f\u8005\u3001AdWords \u5909\u63db\u3092\u8ffd\u8de1\u3067\u304d\u307e\u3059\u3002",longDesc:"Google Analytics \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u4eba\u6c17\u3001\u7dcf\u5408\u7684\u306a\u8a2a\u554f\u8005\u306e\u884c\u52d5\u306a\u3069\u3001\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8 \u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u306b\u3064\u3044\u3066\u306e\u30c7\u30fc\u30bf\u306e\u53ce\u96c6\u3001\u8868\u793a\u3001\u5206\u6790\u304c\u884c\u3048\u307e\u3059\u3002\u57fa\u672c\u7684\u306a JavaScript \u30b9\u30cb\u30da\u30c3\u30c8\u3092\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u57cb\u3081\u8fbc\u3080\u3053\u3068\u306b\u3088\u308a\u3001\u30b5\u30a4\u30c8\u304b\u3089\u30da\u30fc\u30b8\u30d3\u30e5\u30fc\u3054\u3068\u306b\u91cd\u8981\u306a\u60c5\u5831\u3092 Google Analytics \u306b\u9001\u4fe1\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\u5f37\u529b\u306a\u30b5\u30fc\u30d0\u30fc\u304c\u30b5\u30a4\u30c8\u306e\u30c7\u30fc\u30bf\u3092\u51e6\u7406\u3057\u300180 \u4ee5\u4e0a\u3082\u306e\u30ec\u30dd\u30fc\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059\u3002\u3053\u308c\u3089\u306e\u30ec\u30dd\u30fc\u30c8\u3092\u5229\u7528\u3001\u89e3\u6790\u3057\u305f\u308a\u3001\u6d3b\u52d5\u306e\u6307\u91dd\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b7\u30f3\u30d7\u30eb\u306a\u7ba1\u7406\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u3088\u308a\u3001\u76ee\u6a19\u3084\u30d5\u30a3\u30eb\u30bf\u3092\u8a2d\u5b9a\u3057\u3066\u3001\u3069\u306e\u30c7\u30fc\u30bf\u3092\u30ec\u30dd\u30fc\u30c8\u306b\u542b\u3081\u308b\u304b\u3092\u30d3\u30b8\u30cd\u30b9\u8981\u4ef6\u306b\u57fa\u3065\u3044\u3066\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3067\u304d\u307e\u3059\u3002\u305d\u3057\u3066\u3044\u3061\u3070\u3093\u306e\u9b45\u529b\u306f\u3001\u3053\u306e\u6d17\u7df4\u3055\u308c\u305f\u30d5\u30eb\u6a5f\u80fd\u306e\u30a6\u30a7\u30d6\u89e3\u6790\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u7121\u6599\u3067\u3054\u5229\u7528\u3044\u305f\u3060\u3051\u308b\u3053\u3068\u3067\u3059\u3002",
resources:{home:"/apis/analytics/",doc:"/apis/analytics/docs/",group:"/apis/analytics/groups.html",blog:"http://analytics.blogspot.com/",terms:"http://www.google.com/analytics/tos.html"}},appengine:{title:"Google App Engine",groupsTitle:"Google App Engine \u30b0\u30eb\u30fc\u30d7",url:"/appengine/",productId:"appengine",labels:["products","apis","featured","new"],keywords:{API:5,"\u30c4\u30fc\u30eb":1},shortDesc:"\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092 Google \u306e\u30a4\u30f3\u30d5\u30e9\u30b9\u30c8\u30e9\u30af\u30c1\u30e3\u3067\u5b9f\u884c\u3057\u307e\u3059\u3002",
longDesc:"Google App Engine \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001Google \u306e\u30a4\u30f3\u30d5\u30e9\u30b9\u30c8\u30e9\u30af\u30c1\u30e3\u3067\u81ea\u5206\u306e\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u5b9f\u884c\u3067\u304d\u307e\u3059\u3002App Engine \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u69cb\u7bc9\u3084\u7dad\u6301\u3082\u7c21\u5358\u3067\u3059\u3002\u307e\u305f\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u3084\u30c7\u30fc\u30bf \u30b9\u30c8\u30ec\u30fc\u30b8\u306e\u5897\u5927\u306b\u3042\u308f\u305b\u3066\u5bb9\u6613\u306b\u62e1\u5f35\u3067\u304d\u307e\u3059\u3002App Engine \u3067\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7ba1\u7406\u3059\u308b\u5fc5\u8981\u3082\u3042\u308a\u307e\u305b\u3093\u3002\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3060\u3051\u3067\u3001\u3059\u3050\u30e6\u30fc\u30b6\u30fc\u304c\u5229\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002",
resources:{home:"/appengine/",doc:"/appengine/docs/",group:"/appengine/groups.html",faq:"/appengine/kb/",articles:"/appengine/articles/",terms:"/appengine/terms/",appgallery:"http://appgallery.appspot.com/"}},apps:{title:"Google Apps API",groupsTitle:"Google Apps API \u30b0\u30eb\u30fc\u30d7",url:"/apis/apps/",productId:"apps",labels:["products","apis"],keywords:{API:1},shortDesc:"Apps Premier Edition \u304a\u3088\u3073 Education Edition \u3092\u3054\u5229\u7528\u306e\u304a\u5ba2\u69d8\u306b\u63d0\u4f9b\u3059\u308b\u30c9\u30e1\u30a4\u30f3\u7ba1\u7406\u7528\u306e API \u3067\u3059\u3002",
longDesc:"\u307e\u305f\u3001Google \u30ac\u30b8\u30a7\u30c3\u30c8\u3001\u30ab\u30ec\u30f3\u30c0\u30fc\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3001\u30c8\u30fc\u30af\u306a\u3069\u3001\u500b\u3005\u306e\u30b5\u30fc\u30d3\u30b9\u306e\u62e1\u5f35\u6a5f\u80fd\u3082\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002",resources:{home:"/apis/apps/",doc:"/apis/apps/gdata_provisioning_api_v2.0_reference.html",group:"http://groups.google.com/group/google-apps-apis",faq:"/support/bin/topic.py?topic=11279&hl=ja",
samplecode:"/apis/apps/libraries_and_samples.html",articles:"/support/bin/topic.py?topic=12142&hl=ja",terms:"http://www.google.com/terms_of_service.html"}},base:{title:"Google Base Data API",groupsTitle:"Google Base Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/base/",productId:"base",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":2,"G \u30a8\u30f3\u30c8\u30ea":1,"Data API":2},shortDesc:"Google Base \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u7ba1\u7406\u3067\u304d\u307e\u3059\u3002",
longDesc:"Google Base Data API \u3067\u306f\u3001Google Base \u30c7\u30fc\u30bf\u3092\u7167\u4f1a\u3057\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30de\u30c3\u30b7\u30e5\u30a2\u30c3\u30d7\u3092\u4f5c\u6210\u3057\u305f\u308a\u3001\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3088\u3063\u3066 Google Base \u30a2\u30a4\u30c6\u30e0\u3092\u5165\u529b\u3057\u3001\u7ba1\u7406\u3067\u304d\u307e\u3059\u3002\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3001\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u306e\u66f4\u65b0\u3084\u524a\u9664\u3001\u7279\u5b9a\u306e\u6761\u4ef6\u306b\u4e00\u81f4\u3059\u308b\u30c7\u30fc\u30bf \u30a2\u30a4\u30c6\u30e0\u306e\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f Google Data API \u306e\u9805\u76ee\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
resources:{home:"/apis/base/",doc:"/apis/base/starting-out.html",group:"http://groups.google.com/group/Google-Base-data-API",blog:"http://googlebase.blogspot.com",faq:"/support/bin/topic.py?topic=10024&hl=ja",samplecode:"/apis/base/sample-apps.html",articles:"/support/bin/topic.py?topic=11983&hl=ja",terms:"http://www.google.com/terms_of_service.html"}},books:{title:"Google Book Search Book Viewability API",groupsTitle:"Google Book Search Book Viewability API \u30b0\u30eb\u30fc\u30d7",url:"/apis/books/",
productId:"books",labels:["products","ajax","apis","new","search"],keywords:{AJAX:9,API:10,"\u691c\u7d22":5,"\u30d5\u30a3\u30fc\u30c9":1,"\u30d6\u30c3\u30af\u691c\u7d22":1},shortDesc:"\u30d6\u30c3\u30af\u691c\u7d22\u3084\u66f8\u7c4d\u306b\u30ea\u30f3\u30af\u3059\u308b\u3055\u307e\u3056\u307e\u306a\u65b9\u6cd5\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002",longDesc:'Google Book Search <a href="/apis/books/getting-started.html">Book Viewability API</a> \u3092\u4f7f\u3046\u3068\u3001\u6b21\u306e\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002 <li>ISBN \u30b3\u30fc\u30c9\u3001LCCN\u3001OCLC \u306e\u756a\u53f7\u3092\u4f7f\u3063\u3066 Google \u30d6\u30c3\u30af\u691c\u7d22\u306e\u66f8\u7c4d\u3078\u306e\u30ea\u30f3\u30af\u3092\u4f5c\u6210\u3059\u308b</li> <li>Google \u30d6\u30c3\u30af\u691c\u7d22\u306b\u7279\u5b9a\u306e\u30bf\u30a4\u30c8\u30eb\u306e\u66f8\u7c4d\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u3068\u3001\u305d\u306e\u66f8\u7c4d\u304c\u8868\u793a\u53ef\u80fd\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b</li> <li>\u66f8\u7c4d\u306e\u8868\u7d19\u306e\u30b5\u30e0\u30cd\u30a4\u30eb\u3078\u306e\u30ea\u30f3\u30af\u3092\u751f\u6210\u3059\u308b</li> <li>\u66f8\u7c4d\u306e\u60c5\u5831\u30da\u30fc\u30b8\u3078\u306e\u30ea\u30f3\u30af\u3092\u751f\u6210\u3059\u308b</li> <li>\u66f8\u7c4d\u306e\u30d7\u30ec\u30d3\u30e5\u30fc\u3078\u306e\u30ea\u30f3\u30af\u3092\u751f\u6210\u3059\u308b</li></ul>',
resources:{home:"/apis/books/",doc:"/apis/books/getting-started.html",group:"http://groups.google.com/group/booksearch-apis",blog:"http://booksearch.blogspot.com"}},calendar:{title:"Google Calendar API \u3068\u30c4\u30fc\u30eb",groupsTitle:"Google Calendar API \u3068\u30c4\u30fc\u30eb \u30b0\u30eb\u30fc\u30d7",url:"/apis/calendar/",productId:"calendar",labels:["products","apis","dataapis","featured","gadgets"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":5,"\u30a8\u30f3\u30c8\u30ea":2,"\u30ac\u30b8\u30a7\u30c3\u30c8":3,
"G \u30a8\u30f3\u30c8\u30ea":1,"Data API":3,"\u30c4\u30fc\u30eb":1},shortDesc:"Google \u30ab\u30ec\u30f3\u30c0\u30fc\u306e\u4e88\u5b9a\u3001\u30ab\u30ec\u30f3\u30c0\u30fc\u3001\u30ac\u30b8\u30a7\u30c3\u30c8\u3092\u4f5c\u6210\u3001\u7ba1\u7406\u3057\u307e\u3059\u3002",longDesc:"Google Calendar Data API \u3068\u95a2\u9023\u30c4\u30fc\u30eb\u3067\u306f\u3001\u30b0\u30eb\u30fc\u30d7\u306e\u30ab\u30ec\u30f3\u30c0\u30fc\u306b\u4f7f\u7528\u3059\u308b\u30a6\u30a7\u30d6 \u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u306e\u4f5c\u6210\u3001\u7d44\u7e54\u306e\u30a4\u30d9\u30f3\u30c8 \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u57fa\u3065\u304f\u516c\u958b\u30ab\u30ec\u30f3\u30c0\u30fc\u306e\u751f\u6210\u3001\u30ab\u30ec\u30f3\u30c0\u30fc \u30ac\u30b8\u30a7\u30c3\u30c8\u306e\u4f5c\u6210\u306a\u3069\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/calendar/",doc:"/apis/calendar/developers_guide_protocol.html",group:"http://groups.google.com/group/google-calendar-help-dataapi",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10023&hl=ja",articles:"/support/bin/topic.py?topic=12025&hl=ja",terms:"/apis/calendar/terms.html"}},chart:{title:"Google Chart API",groupsTitle:"Google Chart API \u30b0\u30eb\u30fc\u30d7",url:"/apis/chart/",productId:"chart",labels:["products","apis","featured"],keywords:{API:1,
"\u30c1\u30e3\u30fc\u30c8":1},shortDesc:"\u30c1\u30e3\u30fc\u30c8\u3092\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u52d5\u7684\u306b\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002",longDesc:"Google Chart API \u306f\u3001\u591a\u69d8\u306a\u30c1\u30e3\u30fc\u30c8\u3092\u4f5c\u6210\u3059\u308b\u30b7\u30f3\u30d7\u30eb\u306a\u30c4\u30fc\u30eb\u3067\u3059\u3002\u30c7\u30fc\u30bf\u3068\u30d5\u30a9\u30fc\u30de\u30c3\u30c8 \u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080 HTTP \u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3068\u3001Chart API \u304c\u30c1\u30e3\u30fc\u30c8\u306e PNG \u753b\u50cf\u3092\u8fd4\u3057\u307e\u3059\u3002\u753b\u50cf\u30bf\u30b0\u3092\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u57cb\u3081\u8fbc\u3080\u3060\u3051\u3067\u5229\u7528\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/chart/",group:"http://groups.google.com/group/google-chart-api",faq:"/support/bin/topic.py?topic=13605&hl=ja",terms:"/apis/chart/terms.html"}},checkout:{title:"Google Checkout API",groupsTitle:"Google Checkout API \u30b0\u30eb\u30fc\u30d7",url:"/apis/checkout/",productId:"checkout",labels:["products","apis"],keywords:{API:5},shortDesc:"e \u30b3\u30de\u30fc\u30b9 \u30b5\u30a4\u30c8\u5411\u3051\u6c7a\u6e08\u30b5\u30fc\u30d3\u30b9\u3002",longDesc:"Google Checkout (\u82f1\u8a9e\u7248) \u3067\u306f\u3001Google AdWords \u3084 Google Analytics \u3068\u7d71\u5408\u3057\u3066\u3001\u3088\u308a\u591a\u304f\u306e\u898b\u8fbc\u307f\u5ba2\u3092\u5f15\u304d\u3064\u3051\u3001\u30b3\u30f3\u30d0\u30fc\u30b8\u30e7\u30f3 \u30ec\u30fc\u30c8\u3092\u4e0a\u3052\u308b\u52b9\u7387\u7684\u306a e \u30b3\u30de\u30fc\u30b9\u6c7a\u6e08\u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002Checkout API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u3054\u81ea\u8eab\u306e\u30b5\u30a4\u30c8\u3092 Google Checkout \u3068\u7d71\u5408\u3067\u304d\u307e\u3059\u3002\u7d71\u5408\u306b\u306f\u30015 \u5206\u307b\u3069\u306e\u7c21\u5358\u306a\u64cd\u4f5c\u3067 [[]Buy Now] \u30dc\u30bf\u30f3\u3092\u8ffd\u52a0\u3059\u308b\u304b\u3001\u6ce8\u6587\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u3092 Checkout \u3068\u7d71\u5408\u3059\u308b\u64cd\u4f5c\u3092\u6700\u521d\u304b\u3089\u9806\u756a\u306b\u5b9f\u884c\u3057\u307e\u3059\u3002Checkout API \u306f\u3001Google \u3068\u30de\u30fc\u30c1\u30e3\u30f3\u30c8\u306e\u30b5\u30fc\u30d0\u30fc\u9593\u3067\u306e\u540c\u671f\u901a\u4fe1\u3068\u975e\u540c\u671f\u901a\u4fe1\u306b\u95a2\u3059\u308b\u30e1\u30c3\u30bb\u30fc\u30b8 \u30d9\u30fc\u30b9\u306e REST XML API \u3067\u3059\u3002",
resources:{home:"/apis/checkout/",doc:"/apis/checkout/developer/Google_Checkout_Basic_HTML_Overview.html",group:"http://groups.google.com/group/google-checkout-developers-forum",blog:"http://googlecheckoutapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10026&hl=ja",samplecode:"/apis/checkout/samplecode.html",articles:"http://checkout.google.com/support/sell/bin/topic.py?topic=11964",terms:"http://checkout.google.com/termsOfService"}},csearch:{title:"Google \u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u691c\u7d22",
url:"http://www.google.com/codesearch?hl=ja",productId:"csearch",labels:["products","tools","search"],keywords:{"\u691c\u7d22":1},shortDesc:"\u516c\u958b\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002",longDesc:"Google \u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u691c\u7d22\u3067\u306f\u3001\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u4e0a\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u3001\u95a2\u6570\u306e\u5b9a\u7fa9\u3084\u30b5\u30f3\u30d7\u30eb \u30b3\u30fc\u30c9\u3092\u63a2\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u6b21\u306e\u3088\u3046\u306a\u4f7f\u3044\u65b9\u304c\u3042\u308a\u307e\u3059\u3002<ul><li>\u6b63\u898f\u8868\u73fe\u3092\u4f7f\u3063\u3066\u3001\u3088\u308a\u7684\u78ba\u306a\u691c\u7d22\u3092\u884c\u3046</li><li>\u8a00\u8a9e\u3001\u30e9\u30a4\u30bb\u30f3\u30b9\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u6307\u5b9a\u3057\u3066\u691c\u7d22\u3092\u7d5e\u308a\u8fbc\u3080</li> <li>\u30d1\u30c3\u30b1\u30fc\u30b8\u5168\u4f53\u3084\u63b2\u8f09\u5143\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u3078\u306e\u30ea\u30f3\u30af\u304c\u4ed8\u3044\u305f\u30bd\u30fc\u30b9 \u30d5\u30a1\u30a4\u30eb\u3092\u898b\u308b</li></ul>",
resources:{home:"http://www.google.com/codesearch?hl=ja",group:"http://groups.google.com/group/Google-Code-Search",faq:"http://www.google.com/intl/ja/help/faq_codesearch.html",terms:"/tos.html"}},codesearch:{title:"Google Code Search Data API",groupsTitle:"Google Code Search Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/codesearch/",productId:"codesearch",labels:["products","apis","dataapis","search"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1,
"\u691c\u7d22":1},shortDesc:"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u691c\u7d22\u3067\u53d6\u5f97\u3057\u305f\u30c7\u30fc\u30bf\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u8868\u793a\u3057\u307e\u3059\u3002",longDesc:"Google Code Search Data API \u3067\u306f\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u4f7f\u7528\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u691c\u7d22\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Code Search Data API \u3092\u4f7f\u7528\u3057\u3066\u3001\u516c\u958b\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3001\u95a2\u6570\u5b9a\u7fa9\u3001\u30b5\u30f3\u30d7\u30eb \u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/codesearch/",doc:"/apis/codesearch/gdata.html",group:"http://groups.google.com/group/Google-Code-Search",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10441&hl=ja",samplecode:"/apis/gdata/clientlibs.html",terms:"/tos.html"}},contacts:{title:"Google Contacts Data API",groupsTitle:"Google Contacts Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/contacts/",productId:"contacts",labels:["products","apis","dataapis","new"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,
"\u30a8\u30f3\u30c8\u30ea":2,"G \u30a8\u30f3\u30c8\u30ea":1,"\u30b3\u30f3\u30bf\u30af\u30c8":1,"Data API":4},shortDesc:"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u30e6\u30fc\u30b6\u30fc\u306e\u30b3\u30f3\u30bf\u30af\u30c8\u3092\u8868\u793a\u3001\u66f4\u65b0\u3057\u307e\u3059\u3002",longDesc:"Google Contacts Data API \u3067\u306f\u3001Google Data API \u30d5\u30a3\u30fc\u30c9\u306e\u5f62\u5f0f\u3067\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089 Contact \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u304a\u3088\u3073\u66f4\u65b0\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u30b3\u30f3\u30bf\u30af\u30c8 \u30ea\u30b9\u30c8\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u308a\u3001\u65e2\u5b58\u306e\u30b3\u30f3\u30bf\u30af\u30c8\u306e\u7de8\u96c6\u3001\u524a\u9664\u3001\u307e\u305f\u305d\u306e\u5185\u5bb9\u3092\u691c\u7d22\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002Contacts Data API \u3067\u306f\u6b21\u306e\u3088\u3046\u306a\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<li>Google Contacts \u3068\u30e2\u30d0\u30a4\u30eb \u30c7\u30d0\u30a4\u30b9\u306e\u9023\u7d61\u5148\u3092\u540c\u671f\u3059\u308b</li><li>\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30e6\u30fc\u30b6\u30fc\u9593\u306e\u95a2\u4fc2\u3092\u7ba1\u7406\u3059\u308b</li><li>\u96fb\u8a71\u3001\u96fb\u5b50\u30e1\u30fc\u30eb\u3001IM \u3092\u4f7f\u7528\u3057\u3066\u3001\u5916\u90e8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u304c\u76f4\u63a5\u53cb\u3060\u3061\u306b\u9023\u7d61\u3092\u3068\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b</li></ul>",
resources:{home:"/apis/contacts/",doc:"/apis/contacts/developers_guide_protocol.html",group:"http://groups.google.com/group/google-contacts-api",blog:"http://googledataapis.blogspot.com",terms:"/apis/contacts/api-terms.html"}},coupons:{title:"Google \u30af\u30fc\u30dd\u30f3 \u30d5\u30a3\u30fc\u30c9",url:"/apis/coupons/",productId:"coupons",labels:["products","dataapis"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1},shortDesc:"Google \u306e\u691c\u7d22\u7d50\u679c\u306b\u30af\u30fc\u30dd\u30f3 \u30ea\u30b9\u30c8\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002",
longDesc:"Google \u30af\u30fc\u30dd\u30f3 \u30d5\u30a3\u30fc\u30c9\u3067\u306f\u3001Google \u306e\u691c\u7d22\u7d50\u679c\u306b\u4f01\u696d\u306e\u30af\u30fc\u30dd\u30f3\u3092\u4e00\u89a7\u8868\u793a\u3067\u304d\u307e\u3059\u3002\u30af\u30fc\u30dd\u30f3 \u30d5\u30a3\u30fc\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u7121\u6599\u306e\u30af\u30fc\u30dd\u30f3\u3092\u30a6\u30a7\u30d6\u3067\u7c21\u5358\u306b\u914d\u5e03\u3067\u304d\u307e\u3059\u3002\u30a8\u30f3\u30c9\u30e6\u30fc\u30b6\u30fc\u306f\u7121\u6599\u306e\u30af\u30fc\u30dd\u30f3\u3092\u691c\u7d22\u3057\u3001\u5370\u5237\u3057\u3066\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/coupons/",doc:"/apis/coupons/",terms:"http://www.google.com/terms_of_service.html"}},gdgadgets:{title:"Google Desktop Gadget API",groupsTitle:"Google Desktop Gadget API \u30b0\u30eb\u30fc\u30d7",url:"/apis/desktop/",productId:"gdgadgets",labels:["products","apis","gadgets"],keywords:{"\u30ac\u30b8\u30a7\u30c3\u30c8":3,"\u691c\u7d22":1},shortDesc:"\u4e16\u754c\u4e2d\u306e\u4f55\u767e\u4e07\u3082\u306e Google \u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306b\u3001\u5f37\u529b\u3067\u8996\u899a\u7684\u306b\u9b45\u529b\u7684\u306a\u30ac\u30b8\u30a7\u30c3\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002",
longDesc:"\u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30ac\u30b8\u30a7\u30c3\u30c8\u306f\u3001Google \u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u306e\u30b5\u30a4\u30c9\u30d0\u30fc\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u306e\u53f3\u5074\u3001iGoogle \u30db\u30fc\u30e0 \u30da\u30fc\u30b8\u306a\u3069\u306b\u914d\u7f6e\u3067\u304d\u308b\u5f37\u529b\u306a\u30df\u30cb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u3059\u3002XML \u3068 JavaScript \u3092\u4f7f\u7528\u3057\u3001\u30aa\u30d7\u30b7\u30e7\u30f3\u3067 Windows API \u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u305f\u3081\u306e\u30cd\u30a4\u30c6\u30a3\u30d6 \u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u3066\u3001\u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30ac\u30b8\u30a7\u30c3\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002Desktop Gadget API \u306b\u3088\u308a\u3001\u900f\u904e\u6027\u3001\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3001\u30ab\u30b9\u30bf\u30e0 \u30d5\u30a9\u30f3\u30c8\u3001\u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30bc\u30fc\u30b7\u30e7\u30f3\u306a\u3069\u306e\u9ad8\u5ea6\u306a\u6a5f\u80fd\u304c\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059\u3002",
resources:{home:"/apis/desktop/",doc:"/apis/desktop/docs/gadgetapi.html",group:"http://groups.google.com/group/Google-Desktop-Developer",blog:"http://googledesktopapis.blogspot.com/",faq:"http://code.google.com/support/bin/topic.py?topic=10033",samplecode:"/apis/desktop/docs/examples.html",Articles:"http://code.google.com/support/bin/topic.py?topic=11366",terms:"http://desktop.google.com/dev/apiterms.html"}},desktop:{title:"Google Desktop Search API",searchTabTitle:"Google Desktop APIs",groupsTitle:"Google Desktop API \u30b0\u30eb\u30fc\u30d7",
url:"/apis/desktop/",productId:"desktop",labels:["products","apis","search"],keywords:{"\u30ac\u30b8\u30a7\u30c3\u30c8":1,"\u691c\u7d22":3},shortDesc:"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u691c\u7d22\u30b5\u30dd\u30fc\u30c8\u3092\u7d44\u307f\u8fbc\u3093\u3060\u308a\u3001\u3088\u308a\u591a\u304f\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u3092\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b Google \u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u3092\u62e1\u5f35\u3067\u304d\u307e\u3059\u3002",
longDesc:"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30ac\u30b8\u30a7\u30c3\u30c8\u3067 Google \u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u306e\u6a5f\u80fd\u3092\u5229\u7528\u3057\u305f\u308a\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3001\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u3001\u97f3\u697d\u30d5\u30a1\u30a4\u30eb\u3001\u30e1\u30fc\u30eb\u3001\u30ab\u30ec\u30f3\u30c0\u30fc\u3001\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u7279\u6b8a\u306a\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u306a\u3069\u3001\u4efb\u610f\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u3092\u691c\u7d22\u3067\u304d\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4f5c\u6210\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002Search API \u306f\u3001 JavaScript\u3001VBScript\u3001C\u3001C++\u3001C#\u3001VB.Net \u30b3\u30fc\u30c9\u3067\u5229\u7528\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/desktop/",doc:"/apis/desktop/docs/searchapi.html",group:"http://groups.google.com/group/Google-Desktop-Developer",blog:"http://googledesktopapis.blogspot.com/",samplecode:"/apis/desktop/docs/examples.html",terms:"http://desktop.google.com/dev/apiterms.html"}},documents:{title:"Google Document List Data API",groupsTitle:"Google Document List Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/documents/",productId:"documents",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,
"\u30a8\u30f3\u30c8\u30ea":2,"G \u30a8\u30f3\u30c8\u30ea":1,"Data API":3},shortDesc:"Google \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30ea\u30b9\u30c8\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u8868\u793a\u3001\u66f4\u65b0\u3057\u307e\u3059\u3002",longDesc:'Google \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 \u30ea\u30b9\u30c8 Data API \u3067\u306f\u3001Google Data API \u30d5\u30a3\u30fc\u30c9\u3092\u4f7f\u7528\u3057\u3066\u3001<a href="http://docs.google.com/">Google \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8</a>\u306b\u4fdd\u5b58\u3055\u308c\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u8868\u793a\u3057\u3001\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u306e\u30ef\u30fc\u30d7\u30ed\u6587\u66f8\u3084\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u306e\u30ea\u30b9\u30c8\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u308a\u3001\u65e2\u5b58\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092 Google \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059\u3002',
resources:{home:"/apis/documents/",doc:"/apis/documents/developers_guide_protocol.html",group:"http://groups.google.com/group/Google-Docs-Data-APIs",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10708&hl=ja",samplecode:"/apis/gdata/clientlibs.html",articles:"/support/bin/topic.py?topic=12027&hl=ja",terms:"http://www.google.com/google-d-s/terms.html"}},flashmaps:{title:"Google Maps API For Flash",url:"/apis/maps/documentation/flash/",productId:"flashmaps",labels:["products",
"apis","geo","new"],keywords:{AJAX:7,API:4,ActionScript:1,Geo:6,"\u30de\u30c3\u30d7":6},shortDesc:"Google \u30de\u30c3\u30d7\u3092 Flash \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u7d71\u5408\u3057\u307e\u3059\u3002",longDesc:"Google Maps API for Flash \u3067\u306f\u3001Flash \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u5730\u56f3\u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002ActionScript 3.0 \u3092\u30d9\u30fc\u30b9\u306b\u3057\u305f\u3053\u306e API \u3092\u4f7f\u3048\u3070\u3001Flex \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306f\u3055\u307e\u3056\u307e\u306a\u30b5\u30fc\u30d3\u30b9\u3092\u901a\u3058\u3066\u5bb9\u6613\u306b\u5730\u56f3\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/maps/documentation/flash/index.html",doc:"/apis/maps/documentation/flash/intro.html",group:"http://groups.google.com/group/google-maps-api-for-flash",blog:"http://googlemapsapi.blogspot.com/",faq:"/apis/maps/faq.html",terms:"/apis/maps/terms.html"}},friendconnect:{title:"Google Friend Connect",url:"http://www.google.com/friendconnect",productId:"friendconnect",labels:["products","gadgets","new"],keywords:{API:5,"\u30ac\u30b8\u30a7\u30c3\u30c8":5,Social:10},shortDesc:"\u7c21\u5358\u306b\u8ffd\u52a0\u3067\u304d\u308b\u30bd\u30fc\u30b7\u30e3\u30eb\u6a5f\u80fd\u3067\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u5897\u5927\u3002",
longDesc:"Google Friend Connect \u3092\u4f7f\u3046\u3068\u3001\u30a6\u30a7\u30d6\u30de\u30b9\u30bf\u30fc\u306e\u65b9\u306f\u30b5\u30a4\u30c8\u306b\u7c21\u5358\u306b\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u6a5f\u80fd\u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002\u3053\u306e\u6a5f\u80fd\u306e\u7279\u5fb4\u306f\u3001\u30b5\u30a4\u30c8\u8a2a\u554f\u8005\u304c\u4ed6\u306e\u30bd\u30fc\u30b7\u30e3\u30eb \u30b5\u30a4\u30c8\u3067\u7bc9\u3044\u305f\u95a2\u4fc2\u3092\u5229\u7528\u3067\u304d\u308b\u3053\u3068\u3067\u3059\u3002<i></i>JavaScript \u3092\u6570\u884c\u30b3\u30d4\u30fc\u3057\u3066\u30da\u30fc\u30b9\u30c8\u3059\u308b\u3060\u3051\u3067\u3001\u5fc5\u8981\u306a\u30bd\u30fc\u30b7\u30e3\u30eb\u6a5f\u80fd\u3092\u5c0e\u5165\u3067\u304d\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30b5\u30a4\u30c8\u8a2a\u554f\u8005\u306f\u3042\u306a\u305f\u306e\u30b5\u30a4\u30c8\u304b\u3089\u76f4\u63a5\u3001Facebook\u3001orkut \u306a\u3069\u306e\u30b5\u30a4\u30c8\u306e\u53cb\u3060\u3061\u3068\u4ea4\u6d41\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002",
resources:{}},gadgets:{title:"Google Gadgets API",groupsTitle:"Google Gadgets API \u30b0\u30eb\u30fc\u30d7",url:"/apis/gadgets/",productId:"gadgets",labels:["products","apis","featured","gadgets"],keywords:{Finance:1,API:8,"\u30ac\u30b8\u30a7\u30c3\u30c8":6},shortDesc:"iGoogle\u3001Google \u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u3001\u305d\u306e\u4ed6\u306e\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306a\u3069\u306e\u5404\u7a2e\u30b5\u30a4\u30c8\u3067\u52d5\u4f5c\u3059\u308b\u30df\u30cb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002",
longDesc:"Google \u30ac\u30b8\u30a7\u30c3\u30c8\u306f\u3001HTML \u3068 JavaScript \u3067\u4f5c\u6210\u3055\u308c\u305f\u30b7\u30f3\u30d7\u30eb\u306a\u30df\u30cb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u3059\u3002\u30ac\u30b8\u30a7\u30c3\u30c8\u306f iFrame \u3067\u63d0\u4f9b\u3055\u308c\u3001\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u3084\u305d\u306e\u4ed6\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u7d44\u307f\u8fbc\u307f\u306e JavaScript \u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30bf\u30d6\u3001Flash \u30b3\u30f3\u30c6\u30f3\u30c4\u3001\u6c38\u7d9a\u30b9\u30c8\u30ec\u30fc\u30b8\u3001\u52d5\u7684\u306a\u30b5\u30a4\u30ba\u5909\u66f4\u6a5f\u80fd\u306a\u3069\u3092\u5099\u3048\u305f\u30ac\u30b8\u30a7\u30c3\u30c8\u3092\u7c21\u5358\u306b\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002\u30ac\u30b8\u30a7\u30c3\u30c8\u306e\u591a\u304f\u306f\u9031\u306b\u4f55\u767e\u4e07\u56de\u3082\u30a2\u30af\u30bb\u30b9\u3055\u308c\u3001\u30ac\u30b8\u30a7\u30c3\u30c8\u306e\u4f5c\u8005\u3078\u306e\u30c8\u30e9\u30d5\u30a3\u30c3\u30af\u3092\u5927\u5e45\u306b\u5897\u52a0\u3055\u305b\u3066\u3044\u307e\u3059\u3002",
resources:{home:"/apis/gadgets/",doc:"/apis/gadgets/docs/dev_guide.html",group:"http://groups.google.com/group/Google-Gadgets-API",blog:"http://googlegadgetsapi.blogspot.com",faq:"/support/bin/topic.py?topic=10027&hl=ja",terms:"/apis/gadgets/docs/terms.html"}},gears:{title:"Google Gears",groupsTitle:"Google Gears \u30b0\u30eb\u30fc\u30d7",url:"/apis/gears/",productId:"gears",labels:["products","ajax","apis","featured","new","tools"],keywords:{AJAX:5,API:9,"\u30c4\u30fc\u30eb":1},shortDesc:"\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u3084\u30e2\u30d0\u30a4\u30eb \u30c7\u30d0\u30a4\u30b9\u4e0a\u3067\u3001\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002",
longDesc:"Google Gears \u306f\u3001\u30aa\u30d5\u30e9\u30a4\u30f3\u3067\u5b9f\u884c\u53ef\u80fd\u306a\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u308b\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e\u30d6\u30e9\u30a6\u30b6\u62e1\u5f35\u3067\u3059\u3002\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 \u30ea\u30bd\u30fc\u30b9\u3092\u30ed\u30fc\u30ab\u30eb\u306b\u4fdd\u5b58\u3057\u3066\u4f7f\u7528\u3057\u3001\u30c7\u30fc\u30bf\u3092\u30ed\u30fc\u30ab\u30eb\u306e\u5b8c\u5168\u691c\u7d22\u53ef\u80fd\u306a\u30ea\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u4fdd\u5b58\u3057\u3066\u3001\u975e\u540c\u671f\u306e JavaScript \u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30ec\u30b9\u30dd\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/gears/",doc:"/apis/gears/design.html",group:"http://groups.google.com/group/google-gears/",blog:"http://gearsblog.blogspot.com/",faq:"/support/bin/topic.py?topic=11628&hl=ja",samplecode:"/apis/gears/sample.html",articles:"/apis/gears/tutorial.html",terms:"http://gears.google.com/tos.html"}},health:{title:"Google Health",groupsTitle:"Google Health \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30b0\u30eb\u30fc\u30d7",url:"http://www.google.com/health",productId:"health",labels:["products",
"apis","dataapis","new"],keywords:{"Data API":3,"\u30d5\u30a3\u30fc\u30c9":1,Health:1,Java:1},shortDesc:"Google \u3067\u5065\u5eb7\u7ba1\u7406\u3092\u884c\u3044\u307e\u3059\u3002",longDesc:"Google Health Data API \u3067\u306f\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u4f7f\u7528\u3057\u3066\u3001Health \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3001\u66f4\u65b0\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u65b0\u3057\u3044 \u30a8\u30f3\u30c8\u30ea\u306e\u4f5c\u6210\u3001\u65e2\u5b58\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u7de8\u96c6\u3084\u524a\u9664\u3001\u30a8\u30f3\u30c8\u30ea \u30ea\u30b9\u30c8\u306e\u8981\u6c42\u3001\u7279\u5b9a\u306e\u57fa\u6e96\u306b\u4e00\u81f4\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u306e\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3067\u304d\u307e\u3059\u3002 <br> <br>Google Health Data API \u306e\u4f7f\u7528\u65b9\u6cd5\u306b\u306f\u3001\u6b21\u306e\u3088\u3046\u306a\u3082\u306e\u304c\u3042\u308a\u307e\u3059\u3002<br> <br> <ul> <li>\u85ac\u5c40\u3001\u533b\u7642\u6a5f\u95a2\u3001\u304a\u3088\u3073\u533b\u7642\u60c5\u5831\u306b\u95a2\u3059\u308b\u30c7\u30fc\u30bf\u3092\u6301\u3063\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30d1\u30fc\u30c8\u30ca\u30fc</li> <li>\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u8fbc\u307f\u3001\u305d\u308c\u3092\u6d3b\u7528\u3059\u308b\u305f\u3081\u306b\u3001Google Health \u3068\u63d0\u643a\u3059\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 \u30d1\u30fc\u30c8\u30ca\u30fc\u305f\u3068\u3048\u3070\u3001\u6cbb\u9a13\u306e\u88ab\u9a13\u8005\u3092\u7d39\u4ecb\u3059\u308b\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e\u4f01\u696d\u304c\u3001\u88ab\u9a13\u8005\u306e\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u8aad\u307f\u8fbc\u3093\u3067\u95a2\u9023\u3059\u308b\u6cbb\u9a13\u306b\u3064\u3044\u3066\u901a\u77e5\u3059\u308b\u3001\u3068\u3044\u3063\u305f\u4f7f\u7528\u65b9\u6cd5\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002</li>",
resources:{home:"http://www.google.com/health",doc:"/apis/health",group:"http://groups.google.com/group/googlehealthdevelopers/",terms:"http://www.google.com/health/html/terms.html"}},kml:{title:"KML",groupsTitle:"KML \u30b0\u30eb\u30fc\u30d7",url:"/apis/kml/",productId:"kml",labels:["products","apis","geo"],keywords:{API:1,Geo:4,"\u30de\u30c3\u30d7":1},shortDesc:"Google Earth\u3001Google \u30de\u30c3\u30d7\u3001\u30e2\u30d0\u30a4\u30eb\u7248 Google \u30de\u30c3\u30d7\u3067\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u4f5c\u6210\u3068\u5171\u6709\u3002",
longDesc:"KML \u306f\u3001Google Earth\u3001Google \u30de\u30c3\u30d7\u3001\u30e2\u30d0\u30a4\u30eb\u7248 Google \u30de\u30c3\u30d7\u306a\u3069\u306e Earth \u30d6\u30e9\u30a6\u30b6\u3067\u3001\u5730\u7406\u30c7\u30fc\u30bf\u306e\u8868\u793a\u306b\u4f7f\u7528\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u3067\u3059\u3002KML \u306f\u30cd\u30b9\u30c8\u3055\u308c\u305f\u8981\u7d20\u3084\u5c5e\u6027\u3092\u542b\u3080\u30bf\u30b0 \u30d9\u30fc\u30b9\u306e\u69cb\u9020\u3092\u63a1\u7528\u3057\u3001XML \u898f\u683c\u306b\u6e96\u62e0\u3057\u3066\u3044\u307e\u3059\u3002\u4f55\u767e\u4e07\u3082\u306e Google Earth \u3084 Google \u30de\u30c3\u30d7 \u30e6\u30fc\u30b6\u30fc\u3078\u306e\u30ea\u30fc\u30c1\u304c\u671f\u5f85\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/kml/documentation/index.html",doc:"/apis/kml/documentation/",group:"http://groups.google.com/group/kml-support",blog:"http://googlemapsapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10426&hl=ja",samplecode:"/apis/kml/documentation/kml_tut.html",articles:"/support/bin/topic.py?topic=11367&hl=ja",terms:"http://www.google.com/terms_of_service.html"}},mapplets:{title:"Google \u30de\u30d7\u30ec\u30c3\u30c8",url:"/apis/maps/documentation/mapplets/",productId:"mapplets",labels:["products",
"apis","gadgets","geo"],keywords:{API:1,"\u30ac\u30b8\u30a7\u30c3\u30c8":1,Geo:5,"\u30de\u30c3\u30d7":1},shortDesc:"Google \u30de\u30c3\u30d7 \u30b5\u30a4\u30c8\u5185\u306b\u7d44\u307f\u8fbc\u3080\u30df\u30cb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3002",longDesc:"Google \u30de\u30d7\u30ec\u30c3\u30c8\u306f\u3001Google \u30de\u30c3\u30d7 \u30b5\u30a4\u30c8\u5185\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u308b\u30df\u30cb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u3059\u3002Google \u30de\u30d7\u30ec\u30c3\u30c8\u306b\u306f\u3001\u4e0d\u52d5\u7523\u691c\u7d22\u3001\u73fe\u5728\u306e\u5929\u6c17\u72b6\u6cc1\u3001\u8ddd\u96e2\u6e2c\u5b9a\u306a\u3069\u304c\u3042\u308a\u307e\u3059\u3002\u30de\u30d7\u30ec\u30c3\u30c8\u306f\u3001Google Maps API \u306e JavaScript \u547c\u3073\u51fa\u3057\u3092\u5229\u7528\u3057\u3066\u5730\u56f3\u3092\u64cd\u4f5c\u3067\u304d\u308b Google \u30ac\u30b8\u30a7\u30c3\u30c8\u3067\u3059\u3002",
resources:{home:"/apis/maps/documentation/mapplets/",doc:"/apis/maps/documentation/mapplets/guide.html",group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlemapsapi.blogspot.com/",faq:"/support/bin/topic.py?topic=10028&hl=ja",articles:"/support/bin/topic.py?topic=11364&hl=ja",terms:"/apis/maps/terms.html"}},maps:{title:"Google Maps API",groupsTitle:"Google Maps API \u30b0\u30eb\u30fc\u30d7",url:"/apis/maps/",productId:"maps",labels:["products","ajax","apis","featured","geo"],
keywords:{AJAX:7,API:4,Geo:6,"\u30de\u30c3\u30d7":6},shortDesc:"Google \u306e\u30a4\u30f3\u30bf\u30e9\u30af\u30c6\u30a3\u30d6\u306a\u5730\u56f3\u3092\u30b5\u30a4\u30c8\u306e\u30c7\u30fc\u30bf\u306b\u7d71\u5408\u3057\u307e\u3059\u3002",longDesc:"Google Maps API \u3067\u306f\u3001\u6700\u65b0\u306e\u30aa\u30f3\u30e9\u30a4\u30f3 \u30de\u30c3\u30d4\u30f3\u30b0 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u3066\u3001\u3054\u81ea\u8eab\u306e\u30b5\u30a4\u30c8\u306b\u5730\u56f3\u3084\u30b8\u30aa\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5730\u56f3\u3092\u53c2\u7167\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3069\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u3082\u7c21\u5358\u306b\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/maps/",doc:"/apis/maps/documentation/index.html",group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlemapsapi.blogspot.com/",faq:"/apis/maps/faq.html",samplecode:"/apis/maps/documentation/examples/index.html",articles:"/support/bin/topic.py?topic=11364&hl=ja",terms:"/apis/maps/terms.html"}},gme:{title:"Google Mashup Editor",groupsTitle:"Google Mashup Editor \u30b0\u30eb\u30fc\u30d7",url:"/gme/",productId:"gme",labels:["products","ajax","tools"],keywords:{AJAX:2,
"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1,"\u30c4\u30fc\u30eb":5},shortDesc:"\u30b7\u30f3\u30d7\u30eb\u306a\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30de\u30c3\u30b7\u30e5\u30a2\u30c3\u30d7\u306e\u30b3\u30fc\u30c9\u3092\u7c21\u5358\u306b\u4f5c\u6210\u3057\u307e\u3059\u3002",longDesc:"Google Mashup Editor \u306f\u3001AJAX \u958b\u767a\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3067\u3059\u3002Google \u30de\u30c3\u30d7\u3084 Google Base \u306a\u3069\u306e Google \u30b5\u30fc\u30d3\u30b9\u3092\u4f7f\u7528\u3057\u3066\u30b7\u30f3\u30d7\u30eb\u306a\u30a6\u30a7\u30d6 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30de\u30c3\u30b7\u30e5\u30a2\u30c3\u30d7\u3092\u7c21\u5358\u306b\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002XML \u5ba3\u8a00\u30bf\u30b0\u3001JavaScript\u3001CSS\u3001HTML \u3092\u4f7f\u7528\u3057\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/gme/",doc:"/gme/gettingstarted.html",group:"http://groups.google.com/group/google-mashup-editor",blog:"http://googlemashupeditor.blogspot.com/",faq:"/support/bin/topic.py?topic=11558&hl=ja",samplecode:"http://gallery.googlemashups.com/",articles:"/support/bin/topic.py?topic=12044&hl=ja",terms:"http://www.google.com/terms_of_service.html"}},newsfeeds:{title:"Google \u30cb\u30e5\u30fc\u30b9 \u30d5\u30a3\u30fc\u30c9",url:"http://news.google.com/intl/en_us/news_feed_terms.html",productId:"newsfeeds",
labels:["products","dataapis"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1},shortDesc:"\u30c8\u30d4\u30c3\u30af\u3084\u30cb\u30e5\u30fc\u30b9\u306e\u691c\u7d22\u306b\u4f7f\u3048\u308b Atom \u30d5\u30a3\u30fc\u30c9\u3068 RSS \u30d5\u30a3\u30fc\u30c9\u3067\u3059\u3002",longDesc:"\u30e6\u30fc\u30b6\u30fc\u306f\u3001\u30c8\u30d4\u30c3\u30af\u3068\u30cb\u30e5\u30fc\u30b9\u306e\u4e21\u65b9\u306e\u691c\u7d22\u30d5\u30a3\u30fc\u30c9\u3092\u8cfc\u8aad\u3067\u304d\u307e\u3059\u3002",resources:{home:"http://news.google.com/intl/en_us/news_feed_terms.html",
group:"http://groups.google.com/group/googlenews-help",terms:"http://news.google.com/intl/en_us/terms_google_news.html"}},notebook:{title:"Google Notebook Data API",groupsTitle:"Google Notebook Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/notebook/",productId:"notebook",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1,"Data API":3},shortDesc:"Google Data API \u30d5\u30a3\u30fc\u30c9\u3068\u3057\u3066\u4fdd\u5b58\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u8868\u793a\u3067\u304d\u307e\u3059\u3002",
longDesc:"Google Notebook Data API \u3067\u306f\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u4f7f\u7528\u3057\u3066\u3001\u4fdd\u5b58\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u306e\u516c\u958b\u30ce\u30fc\u30c8\u30d6\u30c3\u30af \u30ea\u30b9\u30c8\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u308a\u3001\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ce\u30fc\u30c8\u30d6\u30c3\u30af\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/notebook/",doc:"/apis/notebook/gdata.html",group:"http://groups.google.com/group/Google-Labs-Notebook",blog:"http://googledataapis.blogspot.com/",samplecode:"/apis/gdata/clientlibs.html",terms:"http://www.google.com/terms_of_service.html"}},opensocial:{title:"OpenSocial",groupsTitle:"OpenSocial \u30b0\u30eb\u30fc\u30d7",url:"/apis/opensocial/",productId:"opensocial",labels:["products","ajax","apis","featured","gadgets"],keywords:{Social:10,"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":2,
API:8},shortDesc:"\u8907\u6570\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3067\u52d5\u4f5c\u3059\u308b\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002",longDesc:"OpenSocial \u306f\u8907\u6570\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u9593\u3067\u4f7f\u7528\u53ef\u80fd\u306a\u3001\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u5171\u901a API \u3092\u5b9a\u7fa9\u3057\u307e\u3059\u3002\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306f\u3001\u6a19\u6e96\u306e JavaScript \u3068 HTML \u3092\u4f7f\u7528\u3057\u3066\u3001\u30bd\u30fc\u30b7\u30e3\u30eb \u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306e\u53cb\u4eba\u3068\u30b3\u30df\u30e5\u30cb\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u3068\u3063\u305f\u308a\u3001\u30d5\u30a3\u30fc\u30c9\u3092\u66f4\u65b0\u3057\u305f\u308a\u3059\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002<br><br>\u5171\u901a API \u3092\u4f7f\u7528\u3059\u308c\u3070\u3001\u8907\u6570\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u5411\u3051\u306e\u69cb\u7bc9\u3067\u3082\u5b66\u3076\u3053\u3068\u306f\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059\u3002OpenSocial \u306f\u3001\u73fe\u5728\u30a6\u30a7\u30d6 \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306e\u6570\u591a\u304f\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u3088\u3063\u3066\u958b\u767a\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u3059\u3079\u3066\u306e\u30bd\u30fc\u30b7\u30e3\u30eb \u30b5\u30a4\u30c8\u304c API \u3092\u5b9f\u88c5\u3057\u3001\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u88fd\u306e\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30db\u30b9\u30c8\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308b\u3053\u3068\u3092\u76ee\u6307\u3057\u3066\u3044\u307e\u3059\u3002",
resources:{home:"/apis/opensocial/",doc:"/apis/opensocial/docs/index.html",group:"http://groups.google.com/group/opensocial-api/",blog:"http://opensocialapis.blogspot.com/",faq:"/apis/opensocial/faq.html",articles:"/apis/opensocial/articles/",terms:"/apis/opensocial/terms.html"}},orkut:{title:"orkut \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30db\u30fc\u30e0",searchTabTitle:"Orkut",groupsTitle:"orkut \u30b0\u30eb\u30fc\u30d7",url:"/apis/orkut/",productId:"orkut",labels:["products","gadgets"],keywords:{Social:8},
shortDesc:"orkut \u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306e\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3002",longDesc:'orkut \u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306e\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002orkut \u3067\u306f\u3001<a href="/apis/opensocial/">OpenSocial</a>\u3001\u5171\u901a API \u30bb\u30c3\u30c8\u3001HTML\u3001JavaScript \u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u304a\u308a\u3001\u30bd\u30fc\u30b7\u30e3\u30eb \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4f5c\u6210\u304c\u5bb9\u6613\u3067\u3059\u3002',
resources:{home:"/apis/orkut/"}},safebrowsing:{title:"Google Safe Browsing API",groupsTitle:"Google Safe Browsing API \u30b0\u30eb\u30fc\u30d7",url:"/apis/safebrowsing/",productId:"safebrowsing",labels:["products","apis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1},shortDesc:"\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0\u3084\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u7591\u3044\u306e\u3042\u308b\u30b5\u30a4\u30c8 URL \u306e\u30ea\u30b9\u30c8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059\u3002",
longDesc:"Google Safe Browsing API \u306f\u3001\u30d5\u30a3\u30c3\u30b7\u30f3\u30b0\u3084\u30de\u30eb\u30a6\u30a7\u30a2\u306e\u7591\u3044\u306e\u3042\u308b\u30da\u30fc\u30b8\u304c\u8a18\u8f09\u3055\u308c\u305f\u3001\u5e38\u6642\u66f4\u65b0\u3055\u308c\u308b\u30d6\u30e9\u30c3\u30af\u30ea\u30b9\u30c8\u306b\u5bfe\u3057\u3066\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 URL \u3092\u7167\u5408\u3067\u304d\u308b\u5b9f\u9a13\u7684\u306a API \u3067\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u3053\u306e API \u3092\u4f7f\u7528\u3057\u3066\u3001\u6697\u53f7\u5316\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3001\u30c1\u30a7\u30c3\u30af\u5bfe\u8c61\u306e URL \u3092\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u5074\u3067\u30ed\u30fc\u30ab\u30eb\u306b\u30eb\u30c3\u30af\u30a2\u30c3\u30d7\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/safebrowsing/",doc:"/apis/safebrowsing/developers_guide.html",group:"http://groups.google.com/group/google-safe-browsing-api",blog:"http://googleonlinesecurity.blogspot.com/",terms:"/apis/safebrowsing/terms.html"}},enterprise:{title:"Google Search Appliance API",groupsTitle:"Google Search Appliance API \u30b0\u30eb\u30fc\u30d7",url:"/enterprise/",productId:"enterprise",labels:["products","apis","search"],keywords:{API:1,"\u691c\u7d22":1},shortDesc:"\u4f01\u696d\u30a4\u30f3\u30c8\u30e9\u30cd\u30c3\u30c8\u691c\u7d22\u306e\u6a5f\u80fd\u3092\u62e1\u5f35\u3057\u307e\u3059\u3002",
longDesc:'Google \u691c\u7d22\u30a2\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u306e<a href="/apis/searchappliance/documentation/xml_reference.html">\u691c\u7d22\u30d7\u30ed\u30c8\u30b3\u30eb</a>\u306f\u3001\u691c\u7d22\u7d50\u679c\u3092\u63d0\u4f9b\u3059\u308b HTTP \u30d9\u30fc\u30b9\u306e\u30b7\u30f3\u30d7\u30eb\u306a\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3059\u3002\u691c\u7d22\u6a5f\u80fd\u306e\u7ba1\u7406\u8005\u306f\u3001\u691c\u7d22\u7d50\u679c\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3084\u30a8\u30f3\u30c9 \u30e6\u30fc\u30b6\u30fc\u3078\u306e\u8868\u793a\u306b\u3064\u3044\u3066\u3001\u3059\u3079\u3066\u3092\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3067\u304d\u307e\u3059\u3002<a href="/apis/searchappliance/documentation/feedsguide.html">\u30d5\u30a3\u30fc\u30c9 \u30d7\u30ed\u30c8\u30b3\u30eb</a>\u3092\u4f7f\u7528\u3057\u3066\u3001Google \u691c\u7d22\u30a2\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u3067\u51e6\u7406\u3001\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u767b\u9332\u3001\u63d0\u4f9b\u3059\u308b\u30c7\u30fc\u30bf \u30bd\u30fc\u30b9\u3092\u30d5\u30a3\u30fc\u30c9\u3059\u308b\u30ab\u30b9\u30bf\u30e0 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u3001\u9867\u5ba2\u307e\u305f\u306f\u30b5\u30fc\u30c9 \u30d1\u30fc\u30c6\u30a3\u306e\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u304c\u4f5c\u6210\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002Google \u691c\u7d22\u30a2\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u306e<a href="/apis/searchappliance/documentation/authn_authz_spi.html">\u8a8d\u8a3c\u30d7\u30ed\u30c8\u30b3\u30eb</a>\u3067\u306f\u3001\u9867\u5ba2\u306e\u30a6\u30a7\u30d6 \u30b5\u30fc\u30d3\u30b9\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u306b\u7279\u5b9a\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3078\u306e\u30a2\u30af\u30bb\u30b9\u8a31\u53ef\u3092\u4e0e\u3048\u3089\u308c\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u691c\u7d22\u3057\u305f\u308a\u3001\u65e2\u5b58\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3084\u30a2\u30af\u30bb\u30b9\u5236\u5fa1\u74b0\u5883\u3092\u6d3b\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002',
resources:{home:"/apis/searchappliance/",doc:"/apis/searchappliance/documentation/",group:"http://groups.google.com/group/Google-Enterprise-Developer",blog:"http://googleenterprise.blogspot.com/",terms:"http://www.google.com/terms_of_service.html"}},searchhistoryfeeds:{title:"Google \u691c\u7d22\u5c65\u6b74\u30d5\u30a3\u30fc\u30c9",url:"http://www.google.com/support/accounts/bin/answer.py?answer=54464&hl=ja",productId:"searchhistoryfeeds",labels:["products","dataapis","search"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1,
"\u691c\u7d22":1},shortDesc:"\u691c\u7d22\u5c65\u6b74\u7528 RSS \u30d5\u30a3\u30fc\u30c9\u3067\u3059\u3002",longDesc:"Google \u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u691c\u7d22\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306b\u3001Google \u30a6\u30a7\u30d6\u691c\u7d22\u3084\u30cb\u30e5\u30fc\u30b9\u306a\u3069\u3067\u6700\u8fd1\u691c\u7d22\u3057\u305f\u30ad\u30fc\u30ef\u30fc\u30c9\u3084\u30af\u30ea\u30c3\u30af\u3057\u305f\u30da\u30fc\u30b8\u306a\u3069\u3001\u81ea\u5206\u306e\u691c\u7d22\u5c65\u6b74\u306e RSS \u30d5\u30a3\u30fc\u30c9\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002",
resources:{home:"http://www.google.com/support/accounts/bin/answer.py?answer=54464&hl=ja",terms:"http://www.google.com/terms_of_service.html"}},sitemaps:{title:"Google \u30b5\u30a4\u30c8\u30de\u30c3\u30d7",url:"https://www.google.com/webmasters/tools/docs/ja/about.html",productId:"sitemaps",labels:["products","search"],keywords:{"\u691c\u7d22":1,"\u30c4\u30fc\u30eb":1},shortDesc:"Google \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306b\u30da\u30fc\u30b8\u3092\u7684\u78ba\u306b\u767b\u9332\u3057\u307e\u3059\u3002",
longDesc:'\u5b58\u5728\u3057\u3066\u3044\u308b\u30da\u30fc\u30b8\u3084\u6700\u8fd1\u5909\u66f4\u3057\u305f\u30da\u30fc\u30b8\u3092 Google \u30af\u30ed\u30fc\u30e9\u304c\u65e9\u304f\u898b\u3064\u3051\u3089\u308c\u308b\u3088\u3046\u306b\u4fc3\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b5\u30a4\u30c8\u30de\u30c3\u30d7 \u30d7\u30ed\u30c8\u30b3\u30eb\u306b\u6e96\u62e0\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u30a6\u30a7\u30d6\u30b5\u30fc\u30d0\u30fc\u306b\u4f5c\u6210\u3059\u308b\u3068\u3001Google \u30af\u30ed\u30fc\u30e9\u304c\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u898b\u3064\u3051\u3066\u3001\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u767b\u9332\u307e\u3067\u306e\u6642\u9593\u3092\u77ed\u7e2e\u3067\u304d\u307e\u3059\u3002\u30b5\u30a4\u30c8\u30de\u30c3\u30d7\u306e\u4f5c\u6210\u306b\u5f79\u7acb\u3064\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 <a href="http://goog-sitemapgen.sourceforge.net/">\u30d7\u30ed\u30b8\u30a7\u30af\u30c8</a>\u3084\u3001\u591a\u6570\u306e<a href="/sm_thirdparty.html">\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u88fd\u30b5\u30a4\u30c8\u30de\u30c3\u30d7 \u30c4\u30fc\u30eb</a>\u3092\u3054\u5229\u7528\u3044\u305f\u3060\u3051\u307e\u3059\u3002',
resources:{home:"https://www.google.com/webmasters/tools/docs/ja/about.html",doc:"https://www.google.com/webmasters/tools/docs/ja/protocol.html",group:"http://groups.google.com/group/Google_Webmaster_Help",blog:"http://googlewebmastercentral.blogspot.com/",faq:"/support/bin/topic.py?topic=10042&hl=ja",terms:"http://www.google.com/accounts/TOS"}},sketchup:{title:"Google SketchUp Ruby API",groupsTitle:"Google SketchUp Ruby API \u30b0\u30eb\u30fc\u30d7",url:"/apis/sketchup/",productId:"sketchup",labels:["products",
"apis","geo"],keywords:{API:1,Geo:3},shortDesc:"Ruby \u3067 Google SketchUp \u3092\u62e1\u5f35\u3057\u307e\u3059\u3002",longDesc:'Google SketchUp Ruby API \u3067\u306f\u3001SketchUp \u30e2\u30c7\u30eb\u306e\u64cd\u4f5c\u3084 Google SketchUp \u306e\u52d5\u4f5c\u306e\u62e1\u5f35\u3092\u884c\u3048\u307e\u3059\u3002\u53cd\u5fa9\u4f5c\u696d\u3092\u884c\u3046\u30de\u30af\u30ed\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002Google SketchUp \u3084\u305d\u306e\u4ed6\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u7528\u306e\u30ab\u30b9\u30bf\u30e0 \u30c4\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<a href="http://groups.google.com/group/sketchupruby/topics">\u8c4a\u5bcc\u306a\u77e5\u8b58\u3092\u62ab\u9732</a>\u3057\u3066\u304f\u3060\u3055\u3044\u3002',
resources:{home:"/apis/sketchup/",doc:"/apis/sketchup/docs/gsrubyapi_examples.html",group:"http://groups.google.com/group/sketchupruby/topics",blog:"http://sketchupapi.blogspot.com/",terms:"/apis/sketchup/docs/tos.html"}},socialgraph:{title:"Social Graph API",groupsTitle:"Social Graph API \u30b0\u30eb\u30fc\u30d7",url:"/apis/socialgraph/",productId:"socialgraph",labels:["products","apis","new"],keywords:{Social:9},shortDesc:"\u30e6\u30fc\u30b6\u30fc\u306e\u516c\u958b\u30bd\u30fc\u30b7\u30e3\u30eb \u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u3092\u30b5\u30a4\u30c8\u306b\u8ffd\u52a0\u3057\u307e\u3059\u3002",
longDesc:"Social Graph API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30a6\u30a7\u30d6\u4e0a\u3067\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30bd\u30fc\u30b7\u30e3\u30eb \u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u306b\u95a2\u3059\u308b\u60c5\u5831\u306b\u7c21\u5358\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u3001\u6709\u52b9\u306b\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\u3053\u306e\u516c\u958b\u60c5\u5831\u3092\u7167\u4f1a\u3059\u308b\u3053\u3068\u3067\u3001\u53cb\u4eba\u3092\u8ffd\u52a0\u3059\u308b\u6a5f\u80fd\u3084\u305d\u306e\u4ed6\u306e\u4fbf\u5229\u306a\u6a5f\u80fd\u3092\u5408\u7406\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/socialgraph/",doc:"/apis/socialgraph/docs/",group:"http://groups.google.com/group/social-graph-api",faq:"/support/bin/topic.py?topic=13821&hl=ja",terms:"/apis/socialgraph/terms.html"}},spreadsheets:{title:"Google Spreadsheets Data API",groupsTitle:"Google Spreadsheets Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/spreadsheets/",productId:"spreadsheets",labels:["products","apis","dataapis"],keywords:{API:1,"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":2,"G \u30a8\u30f3\u30c8\u30ea":1,
"Data API":4},shortDesc:"Google \u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304b\u3089\u8868\u793a\u3001\u66f4\u65b0\u3057\u307e\u3059\u3002",longDesc:"Google Spreadsheets Data API \u3067\u306f\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067 Google Data API \u30d5\u30a3\u30fc\u30c9\u5f62\u5f0f\u3092\u4f7f\u7528\u3057\u3066\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8 \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8868\u793a\u3001\u66f4\u65b0\u3067\u304d\u307e\u3059\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u3001\u30e6\u30fc\u30b6\u30fc\u306e\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u306e\u30ea\u30b9\u30c8\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u305f\u308a\u3001\u65e2\u5b58\u306e\u30b9\u30d7\u30ec\u30c3\u30c9\u30b7\u30fc\u30c8\u306e\u7de8\u96c6\u3001\u524a\u9664\u3001\u30c7\u30fc\u30bf\u306e\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/spreadsheets/",doc:"/apis/spreadsheets/developers_guide_protocol.html",group:"http://groups.google.com/group/Google-Docs-Data-APIs",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10708&hl=ja",samplecode:"/apis/gdata/clientlibs.html",articles:"/support/bin/topic.py?topic=12027&hl=ja",terms:"/apis/maps/terms.html"}},staticmaps:{title:"Google Static Maps API",url:"/apis/maps/documentation/staticmaps/",productId:"staticmaps",labels:["products","apis",
"geo","new"],keywords:{API:1,Geo:6,"\u30de\u30c3\u30d7":2},shortDesc:"Google \u30de\u30c3\u30d7\u306e\u753b\u50cf\u3092\u81ea\u5206\u306e\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u57cb\u3081\u8fbc\u307f\u307e\u3059\u3002JavaScript \u3084\u52d5\u7684\u306a\u30da\u30fc\u30b8\u306e\u8aad\u307f\u8fbc\u307f\u306f\u4e00\u5207\u5fc5\u8981\u3042\u308a\u307e\u305b\u3093\u3002",longDesc:"Google Static Maps API \u3067\u306f\u3001Google \u30de\u30c3\u30d7\u306e\u753b\u50cf\u3092\u81ea\u5206\u306e\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306b\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002JavaScript \u3084\u52d5\u7684\u306a\u30da\u30fc\u30b8\u306e\u8aad\u307f\u8fbc\u307f\u306f\u5fc5\u8981\u3042\u308a\u307e\u305b\u3093\u3002Google Static Map \u30b5\u30fc\u30d3\u30b9\u306f\u3001\u6a19\u6e96\u7684\u306a HTTP \u30ea\u30af\u30a8\u30b9\u30c8\u3092\u901a\u3058\u3066\u9001\u3089\u308c\u305f URL \u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u57fa\u306b\u5730\u56f3\u3092\u4f5c\u6210\u3057\u3001\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u3067\u8868\u793a\u3067\u304d\u308b\u753b\u50cf\u3068\u3057\u3066\u5730\u56f3\u3092\u8fd4\u3057\u307e\u3059\u3002",
resources:{home:"/apis/maps/documentation/staticmaps/",doc:"/apis/maps/documentation/staticmaps/",group:"http://groups.google.com/group/Google-Maps-API",blog:"http://googlemapsapi.blogspot.com/",terms:"/apis/maps/terms.html"}},talk:{title:"Google \u30c8\u30fc\u30af XMPP",groupsTitle:"Google \u30c8\u30fc\u30af XMPP \u30b0\u30eb\u30fc\u30d7",url:"/apis/talk/",productId:"talk",labels:["products","apis"],keywords:{API:1},shortDesc:"Google \u30c8\u30fc\u30af\u3068\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084 IM \u30b5\u30fc\u30d3\u30b9\u3092\u63a5\u7d9a\u3067\u304d\u307e\u3059\u3002",
longDesc:'\u30c8\u30fc\u30af\u306f\u3001\u901a\u4fe1\u30d7\u30ed\u30c8\u30b3\u30eb\u306b <a href="http://www.xmpp.org/">XMPP</a> \u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002\u6a19\u6e96\u306e Jabber \u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3092\u4f7f\u7528\u3057\u305f Google \u30c8\u30fc\u30af\u3068\u306e\u901a\u4fe1\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u3001<a href="/apis/talk/open_communications.html">\u3088\u304f\u3042\u308b\u8cea\u554f</a> \u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002\u3053\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u306f\u3001IM \u306e\u30d7\u30ed\u30b0\u30e9\u30e0 \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002\u307e\u305f\u3001Google \u30c8\u30fc\u30af\u306e\u30d4\u30a2\u30c4\u30fc\u30d4\u30a2\u6a5f\u80fd\u3068\u97f3\u58f0\u901a\u8a71\u6a5f\u80fd\u3067\u76f8\u4e92\u904b\u7528\u3067\u304d\u308b C++ \u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 \u30bb\u30c3\u30c8\u306e Libjingle \u3082\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001<a href="/apis/talk/libjingle/index.html">Libjingle \u306e\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30ac\u30a4\u30c9</a>\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306f\u3001Python\u3001PHP\u3001Java\u3001C# \u306a\u3069\u3001\u3055\u307e\u3056\u307e\u306a\u8a00\u8a9e\u3067\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002<a href="http://www.jabber.org/">Jabber Software Foundation</a> \u306e\u30b5\u30a4\u30c8\u306b\u306f\u3001<a href="http://www.jabber.org/software/libraries.shtml">\u30e9\u30a4\u30d6\u30e9\u30ea</a>\u306e\u30ea\u30b9\u30c8\u304c\u8a18\u8f09\u3055\u308c\u3066\u3044\u307e\u3059\u3002',
resources:{home:"/apis/talk/",doc:"/apis/talk/talk_developers_home.html",group:"http://groups.google.com/group/google-talk-open",faq:"/support/bin/topic.py?topic=10031&hl=ja",samplecode:"/apis/talk/libjingle/index.html",terms:"http://www.google.com/terms_of_service.html"}},themes:{title:"Google Themes API",url:"/apis/themes/",productId:"themes",labels:["products","apis","new"],keywords:{API:1},shortDesc:"iGoogle \u30db\u30fc\u30e0\u30da\u30fc\u30b8\u7528\u306e\u52d5\u7684\u30c6\u30fc\u30de\u3092\u30c7\u30b6\u30a4\u30f3\u3057\u307e\u3059\u3002",
longDesc:" Google Themes API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u80cc\u666f\u753b\u50cf\u3084\u8272\u3092 XML \u30d5\u30a1\u30a4\u30eb\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3001iGoogle \u30db\u30fc\u30e0\u30da\u30fc\u30b8\u3092\u3055\u3089\u306b\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u8996\u899a\u7684\u306a\u7269\u8a9e\u3084\u3001\u671d\u3068\u5915\u65b9\u3067\u7570\u306a\u308b\u98a8\u666f\u3001\u30a2\u30fc\u30c8\u306e\u52d5\u7684\u90e8\u5206\u3092\u5bb9\u6613\u306b\u4f5c\u6210\u3067\u304d\u3001\u30c6\u30fc\u30de\u3092 1 \u65e5\u306e\u4e2d\u306e\u6642\u523b\u306b\u3088\u3063\u3066\u5909\u66f4\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/themes/",doc:"/apis/themes/docs/dev_guide.html",terms:"/apis/themes/docs/terms.html"}},toolbar:{title:"Google Toolbar API",url:"http://toolbar.google.com/buttons/intl/ja/apis/",productId:"toolbar",labels:["products","apis"],keywords:{API:1,"\u30c4\u30fc\u30eb":1},shortDesc:"Google \u30c4\u30fc\u30eb\u30d0\u30fc\u7528\u306e\u30ab\u30b9\u30bf\u30e0 \u30dc\u30bf\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002",longDesc:"Google Toolbar API \u3067\u306f\u3001XML \u3092\u4f7f\u7528\u3057\u3066 Google \u30c4\u30fc\u30eb\u30d0\u30fc (\u30d0\u30fc\u30b8\u30e7\u30f3 4 \u4ee5\u964d) \u306e\u30ab\u30b9\u30bf\u30e0 \u30dc\u30bf\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002\u30ab\u30b9\u30bf\u30e0 \u30dc\u30bf\u30f3\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30b5\u30a4\u30c8\u3078\u306e\u79fb\u52d5\u3001\u30b5\u30a4\u30c8\u306e\u691c\u7d22\u3001\u30e1\u30cb\u30e5\u30fc\u3078\u306e RSS \u30d5\u30a3\u30fc\u30c9\u306e\u8868\u793a\u304c\u53ef\u80fd\u3067\u3059\u3002\u30dc\u30bf\u30f3\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002",
resources:{home:"http://toolbar.google.com/buttons/intl/ja/apis/",doc:"http://toolbar.google.com/buttons/intl/ja/apis/howto_guide.html",group:"http://groups.google.com/group/Google-Custom-Buttons",faq:"/support/bin/topic.py?topic=10037&hl=ja",samplecode:"http://toolbar.google.com/buttons",terms:"http://www.google.com/terms_of_service.html"}},transitfeed:{title:"Google \u4e57\u63db\u6848\u5185\u30d5\u30a3\u30fc\u30c9\u306e\u4ed5\u69d8",url:"/transit/spec/transit_feed_specification.htm",productId:"transitfeed",
labels:["products","dataapis","geo"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1,Geo:1,"\u30de\u30c3\u30d7":1},shortDesc:"Google \u30de\u30c3\u30d7\u306a\u3069\u306b\u3001\u516c\u5171\u4ea4\u901a\u6a5f\u95a2\u306e\u8def\u7dda\u60c5\u5831\u3084\u6642\u523b\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002",longDesc:"\u4ea4\u901a\u6a5f\u95a2\u3084\u95a2\u9023\u56e3\u4f53\u304c\u8def\u7dda\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\u306e\u4ed5\u69d8\u3067\u3059\u3002Google \u30de\u30c3\u30d7\u3084\u4e57\u63db\u6848\u5185\u3001Google Earth \u306a\u3069\u306b\u8868\u793a\u3055\u308c\u308b\u516c\u5171\u4ea4\u901a\u6a5f\u95a2\u306e\u60c5\u5831\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/transit/spec/transit_feed_specification.htm",doc:"/transit/spec/transit_feed_specification.htm",group:"http://groups.google.com/group/googletransit/",samplecode:"http://spreadsheets.google.com/pub?key=puMHBiWYEbXT0UxQGLDpuBA&gid=11",terms:"http://www.google.com/terms_of_service.html"}},visualization:{title:"Google Visualization API",groupsTitle:"Google Visualization API \u30b0\u30eb\u30fc\u30d7",url:"/apis/visualization/",productId:"visualization",labels:["products","ajax","apis",
"dataapis","gadgets","new"],keywords:{AJAX:1,API:3,"G \u30a8\u30f3\u30c8\u30ea":1,"\u30ac\u30b8\u30a7\u30c3\u30c8":3},shortDesc:"\u5171\u901a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306e\u69cb\u9020\u5316\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3001\u8996\u899a\u5316\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30ec\u30dd\u30fc\u30c8\u7528\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002",longDesc:"Google Visualization API \u3067\u306f\u3001\u69cb\u9020\u5316\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u5bfe\u3059\u308b\u8996\u899a\u5316\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30ec\u30dd\u30fc\u30c8\u7528\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u3001\u81ea\u5206\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30ac\u30b8\u30a7\u30c3\u30c8\u306b\u7d71\u5408\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u3053\u306e API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u95a2\u9023\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u304b\u3089\u306e\u60c5\u5831\u3092\u3001\u7c21\u5358\u306b\u8996\u899a\u7684\u306b\u8868\u793a\u3057\u3066\u3001\u305d\u306e\u753b\u50cf\u3092\u30a6\u30a7\u30d6 \u30d6\u30e9\u30a6\u30b6\u306b\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/visualization/",doc:"/apis/visualization/documentation/",group:"http://groups.google.com/group/google-visualization-api",faq:"/support/bin/topic.py?topic=14181&hl=ja",terms:"/apis/visualization/terms.html"}},webtoolkit:{title:"Google Web Toolkit",groupsTitle:"Google Web Toolkit \u30b0\u30eb\u30fc\u30d7",url:"/webtoolkit/",productId:"webtoolkit",labels:["products","ajax","featured","tools"],keywords:{AJAX:6,Java:1,"\u30c4\u30fc\u30eb":6,GWT:10},shortDesc:"Java \u8a00\u8a9e\u3067 AJAX \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002",
longDesc:"Google Web Toolkit (GWT) \u306f\u3001\u30e6\u30fc\u30b6\u30fc \u30d5\u30ec\u30f3\u30c9\u30ea\u306a AJAX \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3059\u308b\u306e\u306b\u5f79\u7acb\u3064\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e Java \u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u958b\u767a\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3067\u3059\u3002\u4f7f\u3044\u6163\u308c\u305f Java \u958b\u767a\u30c4\u30fc\u30eb\u3067 AJAX \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u308b\u305f\u3081\u3001\u4e0d\u6163\u308c\u306a JavaScript/CSS \u30d6\u30e9\u30a6\u30b6\u3092\u7121\u7406\u306b\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002",
resources:{home:"/webtoolkit/",doc:"/webtoolkit/documentation/",group:"http://groups.google.com/group/Google-Web-Toolkit",blog:"http://googlewebtoolkit.blogspot.com/",faq:"/support/bin/topic.py?topic=10034&hl=ja",samplecode:"/webtoolkit/download.html",articles:"/support/bin/topic.py?topic=11368&hl=ja",terms:"/tos.html"}},picasa:{title:"Picasa API",groupsTitle:"Picasa API \u30b0\u30eb\u30fc\u30d7",url:"/apis/picasa/",productId:"picasa",labels:["products","apis","dataapis","new"],keywords:{API:3,"G \u30a8\u30f3\u30c8\u30ea":1},
shortDesc:"\u30ab\u30b9\u30bf\u30e0 \u30dc\u30bf\u30f3\u3092\u4f5c\u6210\u3057\u3066\u3001\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e\u30b5\u30fc\u30d3\u30b9\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3002",longDesc:"Picasa API \u3067\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c Picasa \u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30e6\u30fc\u30b6\u30fc \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u30dc\u30bf\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u3059 (\u4ee5\u4e0b\u306e\u753b\u50cf\u3092\u53c2\u7167)\u3002\u30dc\u30bf\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3068\u3001Picasa \u3067\u9078\u629e\u3057\u305f\u753b\u50cf\u3092\u4ed6\u306e\u30c7\u30b9\u30af\u30c8\u30c3\u30d7 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30b5\u30fc\u30d3\u30b9\u306b\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/picasa/",doc:"/apis/picasa/docs/button_api.html",group:"http://groups.google.com/group/google-picasa-apis",faq:"http://code.google.com/support/bin/topic.py?topic=14347",terms:"/apis/picasa/terms.html"}},picasaweb:{title:"Picasa Web Albums Data API",groupsTitle:"Picasa Web Albums Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/picasaweb/",productId:"picasaweb",labels:["products","apis","dataapis"],keywords:{"\u30d5\u30a3\u30fc\u30c9":1,"\u30a8\u30f3\u30c8\u30ea":1,"G \u30a8\u30f3\u30c8\u30ea":1,
"Data API":3},shortDesc:"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3084\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b Picasa \u30a6\u30a7\u30d6 \u30a2\u30eb\u30d0\u30e0\u3092\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",longDesc:"Picasa Web Albums Data API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001Picasa \u30a6\u30a7\u30d6 \u30a2\u30eb\u30d0\u30e0\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u8868\u793a\u3057\u305f\u308a\u3001\u66f4\u65b0\u3057\u305f\u308a\u3067\u304d\u307e\u3059\u3002Google Data API \u30d5\u30a3\u30fc\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30a2\u30eb\u30d0\u30e0\u306e\u53d6\u5f97\u3084\u66f4\u65b0\u3001\u65b0\u3057\u3044\u30b3\u30e1\u30f3\u30c8\u3084\u5199\u771f\u306e\u8ffd\u52a0\u3001\u5199\u771f\u306e\u81ea\u52d5\u30bf\u30b0\u4ed8\u3051\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5199\u771f\u3084\u30a2\u30eb\u30d0\u30e0\u3092\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7c21\u5358\u306b\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/picasaweb/",doc:"/apis/picasaweb/gdata.html",group:"http://groups.google.com/group/Google-Picasa-Data-API",blog:"http://googledataapis.blogspot.com/",faq:"/support/bin/topic.py?topic=10949&hl=ja",samplecode:"/apis/gdata/clientlibs.html",articles:"/support/bin/topic.py?topic=12026&hl=ja",terms:"/apis/picasaweb/terms.html"}},youtube:{title:"YouTube Data API",groupsTitle:"YouTube Data API \u30b0\u30eb\u30fc\u30d7",url:"/apis/youtube/",productId:"youtube",labels:["products","apis",
"dataapis","featured"],keywords:{"\u30d5\u30a3\u30fc\u30c9":4,"\u30a8\u30f3\u30c8\u30ea":2,"G \u30a8\u30f3\u30c8\u30ea":6},shortDesc:"YouTube \u30d3\u30c7\u30aa\u3092\u81ea\u5206\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3084\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7d71\u5408\u3067\u304d\u307e\u3059\u3002",longDesc:"YouTube \u3067\u306f\u3001YouTube \u52d5\u753b\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u4e3b\u8981\u306a\u90e8\u5206\u3084\u30e6\u30fc\u30b6\u30fc \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3078\u306e\u30aa\u30fc\u30d7\u30f3 \u30a2\u30af\u30bb\u30b9\u3092\u3001API \u30aa\u30fc\u30d7\u30f3 \u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3084 RSS \u30d5\u30a3\u30fc\u30c9\u3067\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002Google \u306e API \u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u65e5\u3005\u5897\u52a0\u3057\u7d9a\u3051\u308b YouTube \u52d5\u753b\u30ea\u30dd\u30b8\u30c8\u30ea\u304b\u3089\u30aa\u30f3\u30e9\u30a4\u30f3\u306e\u52d5\u753b\u3092\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u7c21\u5358\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
resources:{home:"/apis/youtube/",doc:"/apis/youtube/developers_guide_protocol.html",group:"http://groups.google.com/group/youtube-api",blog:"http://apiblog.youtube.com/",samplecode:"/apis/gdata/clientlibs.html",articles:"/support/bin/topic.py?topic=12359&hl=ja",terms:"/apis/youtube/terms.html"}}}},programs:{dictionaryType:"programs",includeInSiteDirectory:true,includeInSearchSuggest:true,siteDirectoryMetaData:h.programs,keys:["opensource","soc","ghop","projectHosting","mac","edu","doctype","events",
"campfire"],entries:{opensource:{title:"OpenSource",url:"/opensource/",productId:"opensource",labels:["programs","opensource"],keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":10},shortDesc:"Google \u306f\u3055\u307e\u3056\u307e\u306a\u5f62\u3067\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306b\u8ca2\u732e\u3057\u3066\u3044\u307e\u3059\u3002",longDesc:'Google \u306f\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3068\u958b\u767a\u624b\u6cd5\u306e\u5229\u7528\u8005\u3067\u3042\u308a\u652f\u63f4\u8005\u3067\u3082\u3042\u308a\u307e\u3059\u3002\u307e\u305f\u3001\u4e00\u4f01\u696d\u3068\u3057\u3066\u3055\u307e\u3056\u307e\u306a\u5f62\u3067\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306b\u8ca2\u732e\u3057\u3066\u3044\u307e\u3059\u3002<br><br>\u95a2\u9023\u30ea\u30f3\u30af: <ul><li><a href="/projects.html">\u30bd\u30fc\u30b9 \u30b3\u30fc\u30c9</a> - Google \u3067\u306f\u3001<a href="/p/google-perftools/">\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9 \u30c4\u30fc\u30eb</a>\u304b\u3089 <a href="http://gears.google.com/">Google Gears</a>\u306a\u3069\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 \u30ec\u30d9\u30eb\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u307e\u3067\u3001\u793e\u5185\u3067\u958b\u767a\u3057\u305f\u30b3\u30fc\u30c9\u3092\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u3068\u3057\u3066\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002</li><li><a href="/hosting/">Google Code \u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0</a> - Google Code \u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u306f\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3067\u3054\u5229\u7528\u3044\u305f\u3060\u3051\u308b\u7121\u6599\u306e\u30b5\u30fc\u30d3\u30b9\u3067\u3059\u3002</li><li><a href="/soc/">Google Summer of Code</a> - Google Summer of Code \u306f\u3001\u5b66\u751f\u3092\u5bfe\u8c61\u3068\u3057\u305f\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u958b\u767a\u3068\u5b9f\u7528\u7684\u306a\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u4f5c\u6210\u306e\u4f53\u9a13\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u3059\u3002\u4eca\u5e74\u3067 3 \u56de\u76ee\u306e\u958b\u50ac\u306b\u306a\u308a\u307e\u3059\u3002</li></ul>'},
soc:{title:"Google Summer of Code (\u82f1\u8a9e)",url:"/soc/",productId:"soc",labels:["programs","opensource"],keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":5},shortDesc:"\u5b66\u751f\u3092\u5bfe\u8c61\u3068\u3057\u305f\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u958b\u767a\u3078\u306e\u53c2\u52a0\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u3059\u3002",longDesc:'<p>Google Summer of Code \u3067\u306f\u3001\u3055\u307e\u3056\u307e\u306a\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9 \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u7528\u306e\u30b3\u30fc\u30c9\u3092\u4f5c\u6210\u3059\u308b\u5b66\u751f\u306b\u5968\u5b66\u91d1\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002<i></i>Google \u306f\u3001\u8907\u6570\u306e\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9\u3001\u30d5\u30ea\u30fc \u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3001\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u95a2\u9023\u30b0\u30eb\u30fc\u30d7\u3068\u5171\u540c\u3067 3 \u304b\u6708\u9593\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u9078\u51fa\u3057\u3001\u51fa\u8cc7\u3092\u884c\u3044\u307e\u3059\u3002\u3053\u308c\u307e\u3067\u306b\u3001130 \u3092\u8d85\u3048\u308b\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u5bfe\u3057\u3066 1500 \u4eba\u4ee5\u4e0a\u306e\u5b66\u751f\u3092\u9078\u51fa\u3057\u3001\u4f55\u767e\u4e07\u884c\u3082\u306e\u30b3\u30fc\u30c9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002  </p>  <p>\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u95a2\u3059\u308b\u30cb\u30e5\u30fc\u30b9\u3084\u6700\u65b0\u60c5\u5831\u306f\u3001<a href="http://google-opensource.blogspot.com/search/label/gsoc">Google Open Source \u30d6\u30ed\u30b0</a>\u3067\u3054\u89a7\u3044\u305f\u3060\u3051\u307e\u3059\u3002  Google Summer of Code \u30d7\u30ed\u30b0\u30e9\u30e0\u3078\u306e\u53c2\u52a0\u3092\u5e0c\u671b\u3055\u308c\u308b\u65b9\u306f\u3001<a href="/opensource/gsoc/2008/faqs.html">\u3088\u304f\u3042\u308b\u8cea\u554f</a> \u3082\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002\u307e\u305f\u3001Google \u306e\u6307\u5c0e\u8005\u30b0\u30eb\u30fc\u30d7\u306e\u591a\u304f\u304c\u3001\u81ea\u8eab\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b Google Summer of Code \u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u95a2\u3059\u308b\u8a18\u4e8b\u3092\u63b2\u8f09\u3057\u3066\u3044\u307e\u3059\u3002 </p>  <p><a href="/soc/2005/">2005\u5e74</a>\u306b\u767a\u8db3\u3057\u305f\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001\u4eca\u5e74\u3067 4 \u5e74\u76ee\u3092\u8fce\u3048\u307e\u3059\u3002\u904e\u53bb\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u306f\u3001<a href="/soc/2006/">2006\u5e74</a>\u3068 <a href="/soc/2007/">2007\u5e74</a>\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30da\u30fc\u30b8\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002 </p>'},
ghop:{title:"Highly Open Participation Contest",url:"/opensource/ghop/2007-8/",productId:"ghop",labels:["programs","opensource"],keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":2},shortDesc:"\u82e5\u8005\u306b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u958b\u767a\u306b\u3075\u308c\u308b\u6a5f\u4f1a\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002",longDesc:'<a href="http://code.google.com/soc/">Google Summer of Code</a> \u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u6210\u529f\u306b\u5f15\u304d\u7d9a\u3044\u3066\u3001Google \u306f\u3001\u82e5\u8005\u306b\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u958b\u767a\u306b\u3075\u308c\u308b\u6a5f\u4f1a\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u76ee\u7684\u3068\u3057\u305f\u65b0\u3057\u3044\u53d6\u308a\u7d44\u307f\u3092\u767a\u8868\u3057\u307e\u3059\u3002\u3053\u3053\u306b\u4e26\u3076\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3068\u5354\u529b\u3057\u3066\u3001\u30b3\u30fc\u30c9\u306e\u4f5c\u6210\u3084\u6587\u66f8\u5316\u304b\u3089\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u8cc7\u6599\u306e\u6e96\u5099\u3084\u30e6\u30fc\u30b6\u30fc\u4f53\u9a13\u306e\u7814\u7a76\u306e\u5b9f\u65bd\u307e\u3067\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u958b\u767a\u306e\u5168\u3066\u306e\u5074\u9762\u306b\u3064\u3044\u3066\u7406\u89e3\u3092\u6df1\u3081\u53c2\u52a0\u3059\u308b\u6a5f\u4f1a\u3092\u5b66\u751f\u53c2\u52a0\u8005\u306b\u63d0\u4f9b\u3057\u307e\u3059\u3002'},
projectHosting:{title:"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0",url:"/hosting/",productId:"projectHosting",labels:["programs","opensource"],keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":6},shortDesc:"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u304c Google Code \u4e0a\u3067\u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u3055\u308c\u307e\u3059\u3002",longDesc:'Google Code \u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u306f\u3001\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3067\u3054\u5229\u7528\u3044\u305f\u3060\u3051\u308b\u7121\u511f\u306e\u30b5\u30fc\u30d3\u30b9\u3067\u3059\u3002Google Code \u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0\u306f\u3001Subversion \u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3001wiki \u30b5\u30dd\u30fc\u30c8\u3001\u30d5\u30a1\u30a4\u30eb \u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3001\u554f\u984c\u8ffd\u8de1\u3001Google \u30b9\u30bf\u30a4\u30eb\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306a\u3069\u306e\u6a5f\u80fd\u3092\u5099\u3048\u305f\u3001<a href="http://sourceforge.net/index.php">SourceForge.net</a> \u306b\u7d9a\u304f\u4e16\u754c\u7b2c 2 \u306e\u5927\u898f\u6a21\u306a\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0 \u30b5\u30a4\u30c8\u3067\u3059\u3002'},
mac:{title:"Google Mac Developer Playground",url:"/mac/",productId:"mac",labels:["programs","opensource"],keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":2,"OS X":6,"\u30a2\u30c3\u30d7\u30eb":6,iPhone:6},shortDesc:"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u306e Mac \u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059\u3002",longDesc:"Google Mac Developer Playground \u306f\u3001Google \u306e Mac \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u304c\u52e4\u52d9\u6642\u9593\u306e 20% \u30eb\u30fc\u30eb\u5185\u307e\u305f\u306f\u52e4\u52d9\u6642\u9593\u5916\u306b\u958b\u767a\u3057\u305f\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u3067\u3059\u3002"},
edu:{title:"Google Code University",groupsTitle:"Google Code University \u30b0\u30eb\u30fc\u30d7",url:"/edu/",productId:"edu",labels:["programs","educators"],keywords:{"\u6559\u80b2\u8005":1},shortDesc:"CS \u6559\u80b2\u306b\u5f79\u7acb\u3064\u8cc7\u6599\u3067\u3059\u3002",longDesc:'\u3053\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3067\u306f\u3001\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf \u30b5\u30a4\u30a8\u30f3\u30b9\u306e\u5b66\u751f\u3084\u6307\u5c0e\u8005\u304c\u73fe\u5728\u306e\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u6280\u8853\u3084\u30d1\u30e9\u30c0\u30a4\u30e0\u306b\u3064\u3044\u3066\u3088\u308a\u591a\u304f\u3092\u5b66\u3079\u308b\u3088\u3046\u306b\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3084\u30b3\u30fc\u30b9 \u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u7279\u306b\u3001\u3053\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf \u30b5\u30a4\u30a8\u30f3\u30b9\u306e\u6307\u5c0e\u8005\u304c\u6388\u696d\u3067\u4f7f\u3044\u3084\u3059\u3044\u3088\u3046\u306b\u3001\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6 \u30b3\u30e2\u30f3\u30ba \u30e9\u30a4\u30bb\u30f3\u30b9\u306b\u3088\u308a\u516c\u958b\u3055\u308c\u3066\u3044\u307e\u3059\u3002 <br><br> \u95a2\u9023\u30ea\u30f3\u30af: <ul> <li><a href="/edu/index.html">\u30db\u30fc\u30e0</a></li> <li><a href="http://groups.google.com/group/Google-Code-for-Educators">\u30b0\u30eb\u30fc\u30d7</a></li> <li><a href="/edu/curriculumsearch/index.html">CS \u30ab\u30ea\u30ad\u30e5\u30e9\u30e0\u306e\u691c\u7d22</a></li> </ul> <p> \u30b3\u30fc\u30b9\u8cc7\u6599:<ul> <li><a href="/edu/ajax/index.html">AJAX \u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0</a></li> <li><a href="/edu/parallel/index.html">\u5206\u6563\u30b7\u30b9\u30c6\u30e0</a></li> <li><a href="/edu/security/index.html">\u30a6\u30a7\u30d6 \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3</a></li> <li><a href="/edu/languages/index.html">\u8a00\u8a9e</a></li> <li><a href="/edu/tools101/index.html">\u30c4\u30fc\u30eb\u306e\u57fa\u790e</a></li> </ul>'},
doctype:{title:"Google DocType",url:"/doctype/",productId:"doctype",labels:["programs","educators"],keywords:{"\u6559\u80b2\u8005":1},shortDesc:"\u30aa\u30fc\u30d7\u30f3 \u30a6\u30a7\u30d6\u306e\u767e\u79d1\u4e8b\u5178\u3067\u3059\u3002",longDesc:"Google Doctype \u306f\u3001\u30a6\u30a7\u30d6 \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306b\u3088\u308b\u3001\u30a6\u30a7\u30d6 \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u306e\u305f\u3081\u306e\u3001100% \u30aa\u30fc\u30d7\u30f3\u306a\u767e\u79d1\u4e8b\u5178\u3067\u3059\u3002\u30b5\u30f3\u30d7\u30eb \u30b3\u30fc\u30c9\u3001\u30c6\u30b9\u30c8 \u30b1\u30fc\u30b9\u3001\u30a6\u30a7\u30d6 \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u306b\u95a2\u3059\u308b\u8a18\u4e8b\u3001JavaScript\u3001CSS \u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002"},
events:{title:"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30a4\u30d9\u30f3\u30c8",url:"/events/calendar/",productId:"events",labels:["programs","developers"],keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1,gdd:1,"Developer Day":1},shortDesc:"\u4eca\u5f8c\u958b\u50ac\u3055\u308c\u308b\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc\u5411\u3051\u30a4\u30d9\u30f3\u30c8\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3002",longDesc:"<p>Google \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30a4\u30d9\u30f3\u30c8 \u30ab\u30ec\u30f3\u30c0\u30fc\u3092\u4f7f\u3063\u3066\u3001\u3042\u3089\u3086\u308b\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306e Hackathon\u3001\u30aa\u30d5\u4f1a\u3001\u767a\u8868\u4f1a\u306a\u3069\u3001\u4eca\u5f8c\u958b\u50ac\u3055\u308c\u308b\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30a4\u30d9\u30f3\u30c8\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4eca\u5f8c\u958b\u50ac\u3055\u308c\u308b\u30aa\u30d5\u4f1a\u3084\u30e6\u30fc\u30b6\u30fc \u30b0\u30eb\u30fc\u30d7\u3092\u3053\u306e\u30ab\u30ec\u30f3\u30c0\u30fc\u306b\u767b\u9332\u3057\u3066\u3001\u81ea\u5206\u306e\u30a4\u30d9\u30f3\u30c8\u3092\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306b\u5ba3\u4f1d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002</p><p>Google \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30a4\u30d9\u30f3\u30c8 \u30ab\u30ec\u30f3\u30c0\u30fc\u306f\u3001\u3054\u81ea\u8eab\u306e Google \u30ab\u30ec\u30f3\u30c0\u30fc\u3084\u30d5\u30a3\u30fc\u30c9 \u30ea\u30fc\u30c0\u30fc\u306b\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002</div></p>"},
campfire:{title:"Google Campfire One",url:"/campfire/",productId:"campfire",labels:["programs","developers"],keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1},shortDesc:"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306e\u96c6\u3044\u3067\u3059\u3002",longDesc:'\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u306e\u30e1\u30f3\u30d0\u30fc\u3092 Google \u672c\u793e\u306b\u62db\u5f85\u3057\u3001\u71b1\u3044\u8b70\u8ad6\u3092\u4ea4\u308f\u3057\u305f\u308a\u3001\u60c5\u5831\u4ea4\u63db\u3092\u884c\u3063\u305f\u308a\u3057\u307e\u3059\u3002\u3053\u306e\u30a4\u30d9\u30f3\u30c8\u306f\u300cGoogle Campfire One\u300d\u3068\u547c\u3070\u308c\u3066\u3044\u307e\u3059\u3002   <br><br>  \u95a2\u9023\u30ea\u30f3\u30af:  <ul>    <li><a href="/campfire/">\u30db\u30fc\u30e0</a></li>  </ul>'}}},
searchSuggest:{dictionaryType:"searchSuggest",includeInSiteDirectory:false,includeInSearchSuggest:true,keys:["googleio","support","developerday","codeblog","featuredprojects","enterprisecomm","opensourceprojects"],entries:{googleio:{title:"Google I/O",url:"/events/io/",keywords:{API:1,"G \u30a8\u30f3\u30c8\u30ea":1,"Google IO":1,IO:1}},support:{title:"\u77e5\u8b58\u30d9\u30fc\u30b9",url:"/support/",keywords:{"\u3088\u304f\u3042\u308b\u8cea\u554f":1}},developerday:{title:"Developer Day 2008",url:"/events/developerday/",
keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1}},codeblog:{title:"Google Code \u30d6\u30ed\u30b0",url:"http://google-code-updates.blogspot.com/",keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1}},featuredprojects:{title:"\u6ce8\u76ee\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8",url:"http://google-code-featured.blogspot.com/",keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1}},enterprisecomm:{title:"Google \u4f01\u696d\u5411\u3051\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3 \u30c7\u30d9\u30ed\u30c3\u30d1\u30fc \u30b3\u30df\u30e5\u30cb\u30c6\u30a3 ",
url:"/enterprise/",keywords:{"\u30c7\u30d9\u30ed\u30c3\u30d1\u30fc":1}},opensourceprojects:{title:"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9 \u30d7\u30ed\u30b8\u30a7\u30af\u30c8",url:"/hosting/projects.html",keywords:{"\u30aa\u30fc\u30d7\u30f3 \u30bd\u30fc\u30b9":1}}}},searchResultTabs:{dictionaryType:"searchResultTabs",includeInSiteDirectory:false,includeInSearchSuggest:false,keys:["google_code","discussion","project_hosting"],entries:{google_code:{title:"Google Code \u30a6\u30a7\u30d6\u30b5\u30a4\u30c8"},
discussion:{title:"Google Code \u30b0\u30eb\u30fc\u30d7",groupsTitle:"Google Code \u30b0\u30eb\u30fc\u30d7"},project_hosting:{title:"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30db\u30b9\u30c6\u30a3\u30f3\u30b0"}}}};window.CODESITE_productDictionary=a})();var CSE={QUERY_REGEX_HASH:/([^\#]*)\#(p=([^&]*)&)?q=(.*)$/,QUERY_REGEX_QUES:/([^\?]*)\?(p=([^&]*)&)?q=(.*)$/,CSE_URL:"http://code.google.com/cse/googlecode-context.xml",searchControl:{},recentQuery:"",showingSearchResults:false,iframeUrlInSync:true,init:function(){CSE.searchControl=new GSearchControl;CSE.searchControl.setResultSetSize(GSearch.LARGE_RESULTSET);CSE.searchControl.setLinkTarget(GSearch.LINK_TARGET_TOP);var h=CSE.getProductParam();if(CODESITE_getSearchTabTitle(h)!=null){CSE.addSearcher(h,
false);CODESITE_getSearchTabTitle(h,true)!=null&&CSE.addSearcher(h,true)}CSE.addSearcher("google_code",false);CSE.addSearcher("discussion",true);CSE.addSearcher("project_hosting",false);var a=document.getElementById("searchControl"),c=new GdrawOptions;c.setDrawMode(GSearchControl.DRAW_MODE_TABBED);CSE.searchControl.draw(a,c);CSE.checkHash(CSE.QUERY_REGEX_HASH,window.location.href)},addSearcher:function(h,a){var c=new GwebSearch;a?c.setSiteRestriction({crefUrl:CSE.CSE_URL},h+"_groups"):c.setSiteRestriction({crefUrl:CSE.CSE_URL},
h);c.setUserDefinedLabel(CODESITE_getSearchTabTitle(h,a));CSE.searchControl.addSearcher(c)},checkHash:function(h,a){var c=h.exec(a);if(c){var e=decodeURI(c[4]);if(e!=""&&e!=CSE.recentQuery){jQuery("#gsearchInput").attr("value",e);CSE.executeQuery(e)}}else{if(CSE.showingSearchResults){jQuery("#searchControl").hide();jQuery("#codesiteContent").show();CSE.recentQuery="";CSE.showingSearchResults=false;window.history.back(-1)}return false}return true},getProductParam:function(){var h=CSE.QUERY_REGEX_HASH.exec(window.location.href),
a="";if(h&&h[4]){a=decodeURI(h[3]);if(CODESITE_getSearchTabTitle(a)==null)a=""}return a},executeQuery:function(h){if(h=="")return;if(!CSE.iframeUrlInSync)return;var a=CSE.getProductParam();CSE.handleAnalytics(h,a);var c=a!=""?"p="+encodeURI(a)+"&q="+encodeURI(h):"q="+encodeURI(h);jQuery.browser.msie&&CSE.handleIeHistory(c);CSE.recentQuery=h;CODESITE_setURL("#"+c);jQuery("#searchControl").show();jQuery("#codesiteContent").hide();CSE.showingSearchResults=true;var e=CSE.makeNoResultsHtml(h);CSE.searchControl.setNoResultsString(e);
CSE.searchControl.execute(h)},handleIeHistory:function(h){CSE.iframeUrlInSync=false;window.backiFrame.location.search=h;var a=window.setInterval(c,window.CODESITE_backButton.IFRAME_POLLING_INTERVAL);function c(){if(window.backiFrame.location.search.substring(1)==h){CSE.iframeUrlInSync=true;window.clearInterval(a)}}},makeNoResultsHtml:function(h){var a=[CODESITE_msgs.search.NO_RESULTS_FOUND,"<b>",CSE.escapeHtml(h),"</b><br><br>",CODESITE_msgs.search.SUGGESTIONS_TITLE,":<br><br><ul>"].join("");for(var c=
0,e=CODESITE_msgs.search.SUGGESTIONS_ITEMS.length;c<e;c++)a=[a,"<li>",CODESITE_msgs.search.SUGGESTIONS_ITEMS[c],"</li>"].join("");return[a,'</ul><br><a href="',CODESITE_msgs.search.SEARCH_URL,encodeURI(h),'">',CODESITE_msgs.search.TRY_WEBSEARCH,"</a>."].join("")},handleAnalytics:function(h,a){var c=jQuery("#searchControl").css("display")=="block"?jQuery('div[@class*="gsc-tabhActive"]').text():"",e="/search/?q="+h+"&product="+a+"&tab="+c;if(window.pageTracker)try{pageTracker._initData();pageTracker._trackPageview(e)}catch(b){}},
escapeHtml:function(h){return h.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\'/g,"&#039;").replace(/\"/g,"&quot;")},pollHash:function(){if(jQuery.browser.msie)CSE.iframeUrlInSync&&CSE.checkHash(CSE.QUERY_REGEX_QUES,window.backiFrame.location.href)&&CSE.checkHash(CSE.QUERY_REGEX_HASH,window.location.href);else CSE.checkHash(CSE.QUERY_REGEX_HASH,window.location.href)}};window.CODESITE_CSE=CSE;window.CODESITE_setURL=function(h){location.href=h};
window.executeGSearch=function(h){if(h=="")return;if(!CODESITE_CSE.iframeUrlInSync)return;var a=CODESITE_getProduct();if(a=="search")CODESITE_CSE.executeQuery(h);else{if(CODESITE_getSearchTabTitle(a)==null)a="";var c=a!=""?"p="+encodeURI(a)+"&q="+encodeURI(h):"q="+encodeURI(h);CODESITE_setURL(CODESITE_langUrl+"/search/#"+c)}};
window.CODESITE_getSearchTabTitle=function(h,a){if(!h)return null;var c=CODESITE_productDictionary.dictionariesList;for(var e in c){var b=CODESITE_productDictionary[c[e]].entries[h];if(b)if(a){if(b.groupsTitle)return b.groupsTitle}else return b.searchTabTitle||b.title}var c=CODESITE_productDictionary.dictionariesList;for(var e in c){var b=CODESITE_productDictionary_default[c[e]].entries[h];if(b)if(a){if(b.groupsTitle)return b.groupsTitle}else return b.searchTabTitle||b.title}return null};(function(){function h(a,c){this.results_=[];this.buttonEl_=jQuery("#"+c);this.inputFieldEl_=jQuery("#"+a);var e=this;jQuery(this.buttonEl_).focus(function(){e.hideResultsWindow_()});this.searchResultsEl_=jQuery('<div id="cs-searchresults">');this.searchResultsEl_.click(function(f){(event||f).cancelBubble=true});this.searchResultsEl_.appendTo(document.body);jQuery('<div id="cs-recommended">').html(CODESITE_msgs.search.SUGGESTIONS).appendTo(this.searchResultsEl_);for(var b=0,l=1;b<this.MAX_RESULTS_;b++,
l++)jQuery('<div id="searchResult'+l+'">').appendTo(this.searchResultsEl_);jQuery(document.body).click(function(f){return e.handleBodyClick_.call(e,f)});jQuery(document).keydown(function(f){return e.handleBodyKeyDown_.call(e,f)}).keypress(function(f){return e.handleBodyKeyPress_.call(e,f)}).keyup(function(f){return e.handleBodyKeyUp_.call(e,f)});jQuery(window).resize(function(f){e.handleBodyResize_.call(e,f)});window.onpageshow=function(f){f.persisted&&e.hideResultsWindow_()};this.inputFieldEl_.keyup(function(f){return e.handleInputKeyUp_.call(e,
f)}).focus(function(f){return e.handleInputFocus_.call(e,f)}).blur(function(f){return e.handleInputBlur_.call(e,f)}).click(function(f){return e.handleInputClick_.call(e,f)}).attr("autocomplete","off");this.initialized_=!!(this.inputFieldEl_.length&&this.searchResultsEl_.length&&this.buttonEl_.length)}h.prototype={results_:null,initialized_:false,searchActive_:true,resultsWindowHidden_:true,inputFieldEl_:0,searchResultsEl_:0,inputFieldHasFocus_:0,activeResult_:0,arrowKeyProcessed_:false,typedQuery_:"",
backgroundHover:"#3366CC",backgroundOff:"#ffffff",foregroundOff:"#000000",MAX_RESULTS_:7,FIRST_RESULT_:1,getQueryFromInputField_:function(){return jQuery.trim(this.inputFieldEl_.val().toLowerCase())},querySearch_:function(){if(!this.searchActive_)return;if(this.typedQuery_.length==0){this.hideResultsWindow_();return}this.results_.splice(0,this.results_.length);var a=CODESITE_productDictionary.dictionariesList;for(var c in a){var e=CODESITE_productDictionary[a[c]];if(!e.includeInSearchSuggest)continue;
for(var b in e.entries){var l=e.entries[b],f=0,j=new RegExp("(?:\\s|^)"+RegExp.escape(this.typedQuery_)),m=l.title.toLowerCase().match(j);if(m!=null)f=2;for(var y in l.keywords){var p=y.match(j);if(p!=null)f+=l.keywords[y];var z=this.typedQuery_.split(" ");if(z.length>1)for(var b=0;b<z.length;b++){var t=new RegExp("(?:\\s|^)"+z[b]),u=y.match(t);if(u!=null)f+=l.keywords[y]}}f>0&&this.results_.push({match:f,title:l.title,url:CODESITE_getIntlUrl(l.url)})}}this.results_.sort(this.sortMatches_);this.results_.length=
Math.min(this.results_.length,6);this.prepareResultsWindow_()},sortMatches_:function(a,c){var e=c.match,b=a.match;return e<b?-1:e>b?1:0},createSearchResultDiv:function(a){var c=a+1,e=this,b=jQuery("#searchResult"+c);b.attr("class","cs-searchresult").css({display:"block",textAlign:"left",zoom:"1"}).html(['<a tabindex="-1" id="searchResultLink',c,'" ','href="',this.results_[a].url,'">',this.results_[a].title,"</a>"].join("")).unbind().mouseover(function(){e.deactivateAllResults_();e.activateSearchResult_(c)}).mouseout(function(){e.deactivateSearchResult_(c)}).click(function(){window.location.href=
e.results_[a].url})},prepareResultsWindow_:function(){this.activeResult_=0;if(this.results_.length==0){this.hideResultsWindow_();return}for(var a=0;a<this.results_.length;a++)this.createSearchResultDiv(a);this.deactivateAllResults_();var c=this.results_.length+1,e=jQuery("#searchResult"+c),b=this;e.attr("class","").css({textAlign:"right",display:"block",zoom:"1"}).html('<a style="color: #0000ff; text-decoration: underline;" id="searchResultLink'+c+'"> '+CODESITE_msgs.search.MORE+" &raquo;</a>").unbind().mouseup(function(){b.hideResultsWindow_();
executeGSearch(b.inputFieldEl_.val())}).mouseover(function(){b.deactivateAllResults_();b.activateSearchResult_(c)}).mouseout(function(){b.deactivateSearchResult_(c)});for(var a=c+1;a<=this.MAX_RESULTS_;a++)jQuery("#searchResult"+a).hide();this.resultsWindowHidden_&&this.showResultsWindow_()},updateDimensions_:function(){if(!this.searchActive_)return;var a=this.inputFieldEl_.offset();a.left+=3;this.searchResultsEl_.css({left:a.left+"px",top:a.top+this.inputFieldEl_[0].offsetHeight+2+"px",width:this.inputFieldEl_.css("width")})},
showResultsWindow_:function(){if(!this.searchActive_)return;this.searchResultsEl_.css("visibility","hidden");this.updateDimensions_();this.searchResultsEl_.css("display","block");this.searchResultsEl_.css("visibility","visible");this.resultsWindowHidden_=false},hideResultsWindow_:function(){if(this.resultsWindowHidden_)return;this.searchResultsEl_.hide();this.resultsWindowHidden_=true;this.activeResult_=0},activateSearchResult_:function(a){this.inputFieldEl_[0].blur();var c=jQuery("#searchResult"+
a),e=jQuery("#searchResultLink"+a);c.length&&c.css("backgroundColor",this.backgroundHover);e.length&&e.css("color","white")},deactivateSearchResult_:function(a){var c=jQuery("#searchResult"+a),e=jQuery("#searchResultLink"+a);c&&c.css("background",this.backgroundOff);if(e&&a==this.results_.length+1)e.css("color","#0000ff");else e&&e.css("color",this.foregroundOff)},deactivateAllResults_:function(){for(var a=0,c=this.results_.length+1;a<c;a++)this.deactivateSearchResult_(a+1)},activateNextSearchResult_:function(){if(this.results_.length>
0)if(this.activeResult_<=this.results_.length){this.deactivateSearchResult_(this.activeResult_);this.activeResult_++;this.activateSearchResult_(this.activeResult_)}},activatePrevSearchResult_:function(){if(this.results_.length>0)if(this.activeResult_==this.FIRST_RESULT_){this.deactivateSearchResult_(this.activeResult_);this.activeResult_=0;this.inputFieldEl_[0].focus()}else if(this.activeResult_>this.FIRST_RESULT_){this.deactivateSearchResult_(this.activeResult_);this.activeResult_--;this.activateSearchResult_(this.activeResult_)}},
handleInputKeyUp_:function(a){if(!this.initialized_)return;if(!this.searchActive_)return;a=a||window.event;var c=a.which?a.which:a.keyCode;if(c==13){this.hideResultsWindow_();executeGSearch(this.inputFieldEl_.val());return}var e=this.getQueryFromInputField_();if(e!=this.typedQuery_){this.typedQuery_=e;this.querySearch_()}return true},handleBodyKeyDown_:function(a){var c=true,e=false;if(this.initialized_){a=a||window.event;var b=a.which?a.which:a.keyCode,l=a.target?a.target:a.srcElement,f=jQuery("#searchResultLink"+
this.activeResult_),j=[this.inputFieldEl_[0],document.documentElement,document.body];for(var m=0;m<j.length;m++)if(l==j[m])e=true;if(!e)return true;switch(b){case 13:if(this.activeResult_>=0){if(this.activeResult_==this.results_.length+1){this.hideResultsWindow_();executeGSearch(this.inputFieldEl_.val())}else if(f.length)location.href=f.attr("href");c=false}break;case 27:if(this.searchActive_)if(this.resultsWindowHidden_){this.inputFieldEl_.val("");c=false}else{this.hideResultsWindow_();c=false}else{this.searchActive_=
true;this.inputFieldEl_[0].focus();c=true}break;case 40:case 63233:if(this.resultsWindowHidden_&&this.inputFieldHasFocus_&&b!=39){this.searchActive_=true;this.querySearch_();c=false}else if(!this.resultsWindowHidden_&&(this.activeResult_>0||b!=39)){this.deactivateAllResults_();this.activateNextSearchResult_();c=false;this.arrowKeyProcessed_=true}break;case 38:case 63235:if(!this.resultsWindowHidden_){this.deactivateAllResults_();this.activatePrevSearchResult_();c=false;this.arrowKeyProcessed_=true}break;
case 37:case 39:if(!this.inputFieldHasFocus_&&!this.resultsWindowHidden_){this.arrowKeyProcessed_=false;this.inputFieldEl_[0].focus()}}}return c},handleBodyKeyPress_:function(a){if(this.initialized_){a=a||window.event;var c=a.which?a.which:a.keyCode;if(this.arrowKeyProcessed_&&c>=37&&c<=40)return false;return true}},handleBodyKeyUp_:function(a){var c=true;a=a||window.event;this.arrowKeyProcessed_=false;return c},handleBodyResize_:function(){this.updateDimensions_();return true},handleInputBlur_:function(){this.inputFieldHasFocus_=
0},handleInputFocus_:function(){this.inputFieldHasFocus_=0.5;this.initialized_&&this.deactivateAllResults_()},handleInputClick_:function(a){a=a||window.event;a.cancelBubble=true;this.searchActive_=true;if(this.inputFieldHasFocus_==1)this.resultsWindowHidden_&&this.querySearch_();else this.inputFieldHasFocus_=1},handleBodyClick_:function(a){a=a||window.event;var c=a.target?a.target:a.srcElement;c&&c.parentNode&&this.hideResultsWindow_()}};window.CODESITE_asYouTypeSearch=h;jQuery(function(){try{new h("gsearchInput",
"gsearchButton")}catch(a){}})})(jQuery);(function(){var h={POLLING_INTERVAL:450,IFRAME_POLLING_INTERVAL:50,init:function(){var a=window.location.href.match(/\/search/);if(jQuery.browser.msie)h.poll(a);else if(jQuery.browser.mozilla)h.poll(a);else jQuery.browser.safari&&navigator.userAgent.indexOf("Version/")!=-1&&h.poll(a)},poll:function(a){a&&window.setInterval(function(){a&&window.CODESITE_CSE.pollHash()},h.POLLING_INTERVAL)}};window.CODESITE_backButton=h})(jQuery);jQuery(document).ready(function(){window.CODESITE_backButton.init()});(function(){var h={};(function(){var i=["abstract bool break case catch char class const const_cast continue default delete deprecated dllexport dllimport do double dynamic_cast else enum explicit extern false float for friend goto if inline int long mutable naked namespace new noinline noreturn nothrow novtable operator private property protected public register reinterpret_cast return selectany short signed sizeof static static_cast struct switch template this thread throw true try typedef typeid typename union unsigned using declaration, directive uuid virtual void volatile while typeof",
"as base by byte checked decimal delegate descending event finally fixed foreach from group implicit in interface internal into is lock null object out override orderby params readonly ref sbyte sealed stackalloc string select uint ulong unchecked unsafe ushort var","package synchronized boolean implements import throws instanceof transient extends final strictfp native super","debugger export function with NaN Infinity","require sub unless until use elsif BEGIN END","and assert def del elif except exec global lambda not or pass print raise yield False True None",
"then end begin rescue ensure module when undef next redo retry alias defined","done fi"];for(var d=0;d<i.length;d++){var g=i[d].split(" ");for(var k=0;k<g.length;k++)if(g[k])h[g[k]]=true}}).call(this);function a(i){return i>="a"&&i<="z"||i>="A"&&i<="Z"}function c(i,d,g,k){i.unshift(g,k||0);try{d.splice.apply(d,i)}finally{i.splice(0,2)}}var e=(function(){var i=["!","!=","!==","#","%","%=","&","&&","&&=","&=","(","*","*=","+=",",","-=","->","/","/=",":","::",";","<","<<","<<=","<=","=","==","===",
">",">=",">>",">>=",">>>",">>>=","?","@","[","^","^=","^^","^^=","{","|","|=","||","||=","~","break","case","continue","delete","do","else","finally","instanceof","return","throw","try","typeof"],d="(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)";for(var g=0;g<i.length;++g){var k=i[g];d+=a(k.charAt(0))?"|\\b"+k:"|"+k.replace(/([^=<>:&])/g,"\\$1")}d+="|^)\\s*$";return new RegExp(d)})(),b=/&/g,l=/</g,f=/>/g,j=/\"/g;function m(i){return i.replace(b,"&amp;").replace(l,"&lt;").replace(f,
"&gt;")}var y=/&lt;/g,p=/&gt;/g,z=/&apos;/g,t=/&quot;/g,u=/&amp;/g;function x(i){var d=i.indexOf("&");if(d<0)return i;for(--d;(d=i.indexOf("&#",d+1))>=0;){var g=i.indexOf(";",d);if(g>=0){var k=i.substring(d+3,g),q=10;if(k&&k.charAt(0)=="x"){k=k.substring(1);q=16}var n=parseInt(k,q);isNaN(n)||(i=i.substring(0,d)+String.fromCharCode(n)+i.substring(g+1))}}return i.replace(y,"<").replace(p,">").replace(z,"'").replace(t,'"').replace(u,"&")}function A(i){return"XMP"==i.tagName}var v=null;function s(i){if(null===
v){var d=document.createElement("PRE");d.appendChild(document.createTextNode('<!DOCTYPE foo PUBLIC "foo bar">\n<foo />'));v=!/</.test(d.innerHTML)}if(v){var g=i.innerHTML;if(A(i))g=m(g);return g}var k=[];for(var q=i.firstChild;q;q=q.nextSibling)G(q,k);return k.join("")}function G(i,d){switch(i.nodeType){case 1:var g=i.tagName.toLowerCase();d.push("<",g);for(var k=0;k<i.attributes.length;++k){var q=i.attributes[k];if(!q.specified)continue;d.push(" ");G(q,d)}d.push(">");for(var n=i.firstChild;n;n=n.nextSibling)G(n,
d);if(i.firstChild||!/^(?:br|link|img)$/.test(g))d.push("</",g,">");break;case 2:d.push(i.name.toLowerCase(),'="',i.value.replace(b,"&amp;").replace(l,"&lt;").replace(f,"&gt;").replace(j,"&quot;"),'"');break;case 3:case 4:d.push(m(i.nodeValue));break}}function I(i){var d=0;return function(g){var k=null,q=0;for(var n=0,w=g.length;n<w;++n){var o=g.charAt(n);switch(o){case "\t":k||(k=[]);k.push(g.substring(q,n));var r=i-d%i;d+=r;for(;r>=0;r-="                ".length)k.push("                ".substring(0,
r));q=n+1;break;case "\n":d=0;break;default:++d}}if(!k)return g;k.push(g.substring(q));return k.join("")}}var B=/(?:[^<]+|<!--[\s\S]*?--\>|<!\[CDATA\[([\s\S]*?)\]\]>|<\/?[a-zA-Z][^>]*>|<)/g,C=/^<!--/,K=/^<\[CDATA\[/,N=/^<br\b/i;function P(i){var d=i.match(B),g=[],k=0,q=[];if(d)for(var n=0,w=d.length;n<w;++n){var o=d[n];if(o.length>1&&o.charAt(0)==="<"){if(C.test(o))continue;if(K.test(o)){g.push(o.substring(9,o.length-3));k+=o.length-12}else if(N.test(o)){g.push("\n");k+=1}else q.push(k,o)}else{var r=
x(o);g.push(r);k+=r.length}}return{source:g.join(""),tags:q}}function O(i,d){var g={};(function(){var q=i.concat(d);for(var n=q.length;--n>=0;){var w=q[n],o=w[3];if(o)for(var r=o.length;--r>=0;)g[o.charAt(r)]=w}})();var k=d.length;return function(q,n){n=n||0;var w=[n,"pln"],o="",r=0,J=q;while(J.length){var D,E=null,H=g[J.charAt(0)];if(H){var F=J.match(H[1]);E=F[0];D=H[0]}else{for(var L=0;L<k;++L){H=d[L];var M=H[2];if(M&&!M.test(o))continue;var F=J.match(H[1]);if(F){E=F[0];D=H[0];break}}if(!E){D="pln";
E=J.substring(0,1)}}w.push(n+r,D);r+=E.length;J=J.substring(E.length);if(D!=="com"&&/\S/.test(E))o=E}return w}}var R=O([["str",/^\'(?:[^\\\']|\\[\s\S])*(?:\'|$)/,null,"'"],["str",/^\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)/,null,'"'],["str",/^\`(?:[^\\\`]|\\[\s\S])*(?:\`|$)/,null,"`"]],[["pln",/^(?:[^\'\"\`\/\#]+)/,null," \r\n"],["com",/^#[^\r\n]*/,null,"#"],["com",/^\/\/[^\r\n]*/,null],["str",/^\/(?:[^\\\*\/]|\\[\s\S])+(?:\/|$)/,e],["com",/^\/\*[\s\S]*?(?:\*\/|$)/,null]]),S=O([],[["pln",/^\s+/,null," \r\n"],
["pln",/^[a-z_$@][a-z_$@0-9]*/i,null],["lit",/^0x[a-f0-9]+[a-z]/i,null],["lit",/^(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?[a-z]*/i,null,"123456789"],["pun",/^[^\s\w\.$@]+/,null]]);function T(i,d){for(var g=0;g<d.length;g+=2){var k=d[g+1];if(k==="pln"){var q=d[g],n=g+2<d.length?d[g+2]:i.length,w=i.substring(q,n),o=S(w,q);for(var r=0,J=o.length;r<J;r+=2){var D=o[r+1];if(D==="pln"){var E=o[r],H=r+2<J?o[r+2]:w.length,F=i.substring(E,H);if(F==".")o[r+1]="pun";else if(F in h)o[r+1]="kwd";else if(/^@?[A-Z][A-Z$]*[a-z][A-Za-z$]*$/.test(F))o[r+
1]=F.charAt(0)=="@"?"lit":"typ"}}c(o,d,g,2);g+=o.length-2}}return d}var U=O([],[["pln",/^[^<]+/,null],["dec",/^<!\w[^>]*(?:>|$)/,null],["com",/^<!--[\s\S]*?(?:--\>|$)/,null],["src",/^<\?[\s\S]*?(?:\?>|$)/,null],["src",/^<%[\s\S]*?(?:%>|$)/,null],["src",/^<(script|style|xmp)\b[^>]*>[\s\S]*?<\/\1\b[^>]*>/i,null],["tag",/^<\/?\w[^<>]*>/,null]]);function V(i){var d=U(i);for(var g=0;g<d.length;g+=2)if(d[g+1]==="src"){var k=d[g],q=g+2<d.length?d[g+2]:i.length,n=i.substring(k,q),w=n.match(/^(<[^>]*>)([\s\S]*)(<\/[^>]*>)$/);
if(w)d.splice(g,2,k,"tag",k+w[1].length,"src",k+w[1].length+(w[2]||"").length,"tag")}return d}var W=O([["atv",/^\'[^\']*(?:\'|$)/,null,"'"],["atv",/^\"[^\"]*(?:\"|$)/,null,'"'],["pun",/^[<>\/=]+/,null,"<>/="]],[["tag",/^[\w-]+/,/^</],["atv",/^[\w-]+/,/^=/],["atn",/^[\w-]+/,null],["pln",/^\s+/,null," \r\n"]]);function X(i,d){for(var g=0;g<d.length;g+=2){var k=d[g+1];if(k==="tag"){var q=d[g],n=g+2<d.length?d[g+2]:i.length,w=i.substring(q,n),o=W(w,q);c(o,d,g,2);g+=o.length-2}}return d}function Y(i,d){for(var g=
0;g<d.length;g+=2){var k=d[g+1];if(k=="src"){var q=d[g],n=g+2<d.length?d[g+2]:i.length,w=Q(i.substring(q,n));for(var o=0,r=w.length;o<r;o+=2)w[o]+=q;c(w,d,g,2);g+=w.length-2}}return d}function Z(i,d){var g=false;for(var k=0;k<d.length;k+=2){var q=d[k+1];if(q==="atn"){var n=d[k],w=k+2<d.length?d[k+2]:i.length;g=/^on|^style$/i.test(i.substring(n,w))}else if(q=="atv"){if(g){var n=d[k],w=k+2<d.length?d[k+2]:i.length,o=i.substring(n,w),r=o.length,J=r>=2&&/^[\"\']/.test(o)&&o.charAt(0)===o.charAt(r-1),
D,E,H;if(J){E=n+1;H=w-1;D=o}else{E=n+1;H=w-1;D=o.substring(1,o.length-1)}var F=Q(D);for(var L=0,M=F.length;L<M;L+=2)F[L]+=E;if(J){F.push(H,"atv");c(F,d,k+2,0)}else c(F,d,k,2)}g=false}}return d}function Q(i){var d=R(i);d=T(i,d);return d}function aa(i){var d=V(i);d=X(i,d);d=Y(i,d);d=Z(i,d);return d}function ba(i,d,g){var k=[],q=0,n=null,w=null,o=0,r=0,J=I(8);function D(H){if(H>q){if(n&&n!==w){k.push("</span>");n=null}if(!n&&w){n=w;k.push('<span class="',n,'">')}var F=m(J(i.substring(q,H))).replace(/(\r\n?|\n| ) /g,
"$1&nbsp;").replace(/\r\n?|\n/g,"<br>");k.push(F);q=H}}while(true){var E;E=o<d.length?r<g.length?d[o]<=g[r]:true:false;if(E){D(d[o]);if(n){k.push("</span>");n=null}k.push(d[o+1]);o+=2}else if(r<g.length){D(g[r]);w=g[r+1];r+=2}else break}D(i.length);n&&k.push("</span>");return k.join("")}function ca(i){try{var d=P(i),g=d.source,k=d.tags,q=/^\s*</.test(g)&&/>\s*$/.test(g),n=q?aa(g):Q(g);return ba(g,k,n)}catch(w){if("console"in window){console.log(w);console.trace()}return i}}function da(i){var d=[document.getElementsByTagName("pre"),
document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],g=[];for(var k=0;k<d.length;++k)for(var q=0;q<d[k].length;++q)g.push(d[k][q]);var n=0;function w(){var o=(new Date).getTime()+250;for(;n<g.length&&(new Date).getTime()<o;n++){var r=g[n];if(r.className&&r.className.indexOf("prettyprint")>=0){var J=false;for(var D=r.parentNode;D!=null;D=D.parentNode)if((D.tagName=="pre"||D.tagName=="code"||D.tagName=="xmp")&&D.className&&D.className.indexOf("prettyprint")>=0){J=true;break}if(!J){var E=
s(r);E=E.replace(/(?:\r\n?|\n)$/,"");var H=ca(E);if(A(r)){var F=document.createElement("PRE");for(var L=0;L<r.attributes.length;++L){var M=r.attributes[L];M.specified&&F.setAttribute(M.name,M.value)}F.innerHTML=H;r.parentNode.replaceChild(F,r)}else r.innerHTML=H}}}if(n<g.length)setTimeout(w,250);else i&&i()}w()}this.prettyPrint=da})();(function(){var h=["a + ul","a + ol","h1 + ul","h1 + ol","h2 + ul","h2 + ol","span.tlw-title + ul","span.tlw-title + ol"].join();function a(b){var l=5381;for(var f=0;f<b.length;f++)l=(l<<5)+l+b.charCodeAt(f);return l}var c=window._tocPath_?[null,null,_tocPath_,null,""]:/\/\/([^\/]*)?(\/[^\#\?]*)?([^\#]*)?(.*)$/.exec(location.href),e=c?["ck_",a(c[2]+c[4])].join(""):"ck_checksumError";window.CODESITE_filterSingleQuotes=function(b){var l=/(\')/g;return String.prototype.replace.call(b,l,"\\$1")};window.CODESITE_createTreeLists=
function(b){b=b!=jQuery&&b||".treelist";function l(p,z,t,u){var x=t||CODESITE_msgs.treelist.EXPAND_DEFAULT,A=u||CODESITE_msgs.treelist.COLLAPSE_DEFAULT,v=jQuery(z),s=v.parents("div:first").next(),G=p?A:x,I=p?"tlw-minus":"tlw-plus";v.attr("alt",G).parent().attr("title",G);v.removeClass("tlw-minus tlw-plus").addClass(I);p?s.show():s.hide()}var f=(function(){var p=function(){var z=[],t=null;for(var u in this){if(u=="toString")continue;u=CODESITE_filterSingleQuotes(u);t=CODESITE_filterSingleQuotes(this[u]);
z.push(['"',u,'":"',t,'"'].join(""))}return["{",z.join(),"}"].join("")};return function(){var z=null,t=null;z=(new RegExp([e,"=([^;]*)?"].join(""))).exec(document.cookie);if(z)t=eval("["+z[1]+"][0]");t=t||{};t.toString=p;return t}})();function j(p,z){var t=f();if(z)t[p]=true;else delete t[p];document.cookie=[e,"=",t.toString()].join("")}var m=['<div class="tlw-title">','<a href="javascript:void(0)" class="tlw-control" title="">','<img src="',CODESITE_derivePath("/images/cleardot.gif"),'" alt="" class="tlw-control">',
"</a>","</div>"].join("");jQuery(b).each(function(){var p=jQuery(this);if(p.is(".tlw-processed"))return;p._count=0;var z=arguments.callee,t=(z._list=z._list||[]).length;z._list.push(p);p.addClass("tlw-processed tlw-instance-"+t);p.find("a + span.new").each(function(){var u=jQuery(this),x=u.prev(),A=jQuery("<span>");A.css("textDecoration",x.css("textDecoration"));A.append(x.html());x.css("textDecoration","none").empty();x.append(A).append(this)});p.find(h).each(function(){var u=jQuery(this),x=[t,"sub",
p._count].join("-"),A=u.prev(),v=jQuery(m),s=jQuery("img.tlw-control:first",v),G=CODESITE_msgs.treelist.EXPAND.replace(/@1/g,A.text()),I=CODESITE_msgs.treelist.COLLAPSE.replace(/@1/g,A.text());if(A.is(".tlw-ignore"))return;var B={$open:function(){if(u.is(":hidden")){l(true,s,G,I);CODESITE_createTreeLists._init&&j(x,true)}},$close:function(){if(u.is(":visible")){l(false,s,G,I);CODESITE_createTreeLists._init&&j(x,false)}},$toggle:function(){var C=u.is(":hidden");l(C,s,G,I);CODESITE_createTreeLists._init&&
j(x,C)}};jQuery.extend(this,B);jQuery.extend(s.parent()[0],B);u.attr("id",x);u.before(v);v.append(A);v.addClass("tlw-branch");v.parent().css({paddingTop:"0",paddingBottom:"0"});this.$close();s.parent().click(function(){this.$toggle()});p._count++})});var y=f();jQuery.each(y,function(p){if(p=="toString")return;try{jQuery("#"+p)[0].$open()}catch(z){}});window.ontreelistcomplete&&typeof ontreelistcomplete=="function"&&window.ontreelistcomplete(b)};window.CODESITE_convertTableOfContents=function(){jQuery("#gc-toc ul:first, #gc-toc ol:first").addClass("treelist tlw-nested-only").siblings("ul, ol").addClass("treelist tlw-nested-only");
for(var b=0,l=jQuery(".treelist.tlw-nested-only").children();b<l.length;b++)jQuery(l[b]).children(":first").next(h).prev().addClass("tlw-ignore")};window.CODESITE_tocHighlighter=function(){var b=jQuery("#gc-toc a[@href]"),l=window.location.href,f=null,j=null,m=null,y=/\/\/([^\/]*)?(\/[^\#\?]*)?([^\#]*)?(.*)$/.exec(l);if(y)l=y[2];l=l.replace(/\/intl\/.*?\//,"/").replace(/\/index\.html$/,"/");for(var p=0;p<b.length;p++){j=/\/\/([^\/]*)?(\/[^\#\?]*)?([^\#]*)?(.*)$/.exec(b[p].href);if(j){m=jQuery(b[p]);
f=(j[2]+j[4]).replace(/\/intl\/.*?\//,"/").replace(/\/index\.html$/,"/");if(l==f){m.parent().addClass("selected");m.is(".tlw-hidden")&&m.parent().addClass("tlw-hidden");var z=m.siblings("a.tlw-control");for(var t=0;t<z.length;t++)z[t].$open();var u=m.parents("ul").siblings(".tlw-branch").find("a.tlw-control");for(var x=0;x<u.length;x++)u[x].$open()}}}var A=jQuery(".tlw-branch .tlw-expanded"),v=jQuery(".tlw-branch .tlw-collapsed"),s;for(var p=0;p<A.length;p++){s=A[p].previousSibling;s&&s.$open&&s.$open()}for(var p=
0;p<v.length;p++){s=v[p].previousSibling;s&&s.$close&&s.$close()}window.ontreelisthighlight&&typeof ontreelisthighlight=="function"&&window.ontreelisthighlight()};window.CODESITE_buildTreelistWidgetCalled=false;window.CODESITE_buildTreelistWidget=function(){if(!CODESITE_buildTreelistWidgetCalled){CODESITE_convertTableOfContents();CODESITE_createTreeLists();CODESITE_tocHighlighter();window.CODESITE_buildTreelistWidgetCalled=true}};jQuery(document).ready(function(){CODESITE_buildTreelistWidget()});
jQuery(window).load(function(){CODESITE_createTreeLists._init=true})})(jQuery);(function(){function h(a){this.parentElem=a.parent;this.controlsElem=a.controls;this.contentElem=a.content;if(!this.parentElem||!this.controlsElem||!this.contentElem)return;h.active[this.index=h.active.length]=this;var c=this;this.toggleElem=jQuery('<img src="images/cleardot.gif">').addClass("collapsible-control").mouseover(function(){var e=jQuery(this);e.addClass("collapsible-hover")}).mouseout(function(){var e=jQuery(this);e.removeClass("collapsible-hover")});this.controlsElem.mousedown(function(){var e=
jQuery(c.toggleElem),b=jQuery(c.contentElem);if(b.is(":visible")){e.addClass("collapsible-plus").removeClass("collapsible-minus");b.hide()}else{e.addClass("collapsible-minus").removeClass("collapsible-plus");b.show()}});if(this.parentElem.is(".closed"))a.opened=false;if(this.parentElem.is(".opened"))a.opened=true;if(a.opened===true)this.toggleElem.addClass("collapsible-minus");else{this.toggleElem.addClass("collapsible-plus");this.contentElem.hide()}this.controlsElem.prepend(this.toggleElem);this.parentElem.addClass("collapsible-done")}
h.prototype={index:-1,parentElem:null,controlsElem:null,contentElem:null,toggleElem:null};jQuery.extend(h,{active:[],convert:function(){var a=jQuery(".collapsible");for(var c=0;c<a.length;c++){if(a[c].className.indexOf("collapsible-done")!=-1)continue;var e=jQuery(".collapsible-controls",a[c]),b=jQuery(".collapsible-content",a[c]);if(!e.length||!b.length)continue;new h({parent:jQuery(a[c]),controls:e,content:b})}}});window.CODESITE_collapsible=h;jQuery(function(){CODESITE_collapsible.convert()})})();

