//::: Prototype 00:00:00

var Prototype={
Version:'1.4.0',
ScriptFragment:'(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
emptyFunction:function(){},
K:function(x){return x}}
var Class={
create:function(){
return function(){
this.initialize.apply(this,arguments);}}}
var Abstract=new Object();
Object.extend=function(destination,source){
for(property in source){
destination[property]=source[property];}
return destination;}
Object.inspect=function(object){
try{
if(object==undefined)return 'undefined';
if(object==null)return 'null';
return object.inspect?object.inspect():object.toString();}catch(e){
if(e instanceof RangeError)return '...';
throw e;}}
Function.prototype.bind=function(){
var __method=this,args=$A(arguments),object=args.shift();
return function(){
return __method.apply(object,args.concat($A(arguments)));}}
Function.prototype.bindAsEventListener=function(object){
var __method=this;
return function(event){
return __method.call(object,event||window.event);}}
Object.extend(Number.prototype,{
toColorPart:function(){
var digits=this.toString(16);
if(this<16)return '0'+digits;
return digits;},
succ:function(){
return this +1;},
times:function(iterator){
$R(0,this,true).each(iterator);
return this;}});
var Try={
these:function(){
var returnValue;
for(var i=0;i<arguments.length;i++){
var lambda=arguments[i];
try{
returnValue=lambda();
break;}catch(e){}}
return returnValue;}}
var PeriodicalExecuter=Class.create();
PeriodicalExecuter.prototype={
initialize:function(callback,frequency){
this.callback=callback;
this.frequency=frequency;
this.currentlyExecuting=false;
this.registerCallback();},
registerCallback:function(){
setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},
onTimerEvent:function(){
if(!this.currentlyExecuting){
try{
this.currentlyExecuting=true;
this.callback();}finally{
this.currentlyExecuting=false;}}}}
function $(){
var elements=new Array();
for(var i=0;i<arguments.length;i++){
var element=arguments[i];
if(typeof element=='string')
element=document.getElementById(element);
if(arguments.length==1)
return element;
elements.push(element);}
return elements;}
Object.extend(String.prototype,{
stripTags:function(){
return this.replace(/<\/?[^>]+>/gi,'');},
stripScripts:function(){
return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'');},
extractScripts:function(){
var matchAll=new RegExp(Prototype.ScriptFragment,'img');
var matchOne=new RegExp(Prototype.ScriptFragment,'im');
return(this.match(matchAll)||[]).map(function(scriptTag){
return(scriptTag.match(matchOne)||['',''])[1];});},
evalScripts:function(){
return this.extractScripts().map(eval);},
escapeHTML:function(){
var div=document.createElement('div');
var text=document.createTextNode(this);
div.appendChild(text);
return div.innerHTML;},
unescapeHTML:function(){
var div=document.createElement('div');
div.innerHTML=this.stripTags();
return div.childNodes[0]?div.childNodes[0].nodeValue:'';},
toQueryParams:function(){
var pairs=this.match(/^\??(.*)$/)[1].split('&');
return pairs.inject({},function(params,pairString){
var pair=pairString.split('=');
params[pair[0]]=pair[1];
return params;});},
toArray:function(){
return this.split('');},
camelize:function(){
var oStringList=this.split('-');
if(oStringList.length==1)return oStringList[0];
var camelizedString=this.indexOf('-')==0?oStringList[0].charAt(0).toUpperCase()+oStringList[0].substring(1):oStringList[0];
for(var i=1,len=oStringList.length;i<len;i++){
var s=oStringList[i];
camelizedString+=s.charAt(0).toUpperCase()+s.substring(1);}
return camelizedString;},
inspect:function(){
return "'"+this.replace('\\','\\\\').replace("'",'\\\'') + "'";}});
String.prototype.parseQuery=String.prototype.toQueryParams;
var $break=new Object();
var $continue=new Object();
var Enumerable={
each:function(iterator){
var index=0;
try{
this._each(function(value){
try{
iterator(value,index++);}catch(e){
if(e!=$continue)throw e;}});}catch(e){
if(e!=$break)throw e;}},
all:function(iterator){
var result=true;
this.each(function(value,index){
result=result&&!!(iterator||Prototype.K)(value,index);
if(!result)throw $break;});
return result;},
any:function(iterator){
var result=true;
this.each(function(value,index){
if(result=!!(iterator||Prototype.K)(value,index))
throw $break;});
return result;},
collect:function(iterator){
var results=[];
this.each(function(value,index){
results.push(iterator(value,index));});
return results;},
detect:function(iterator){
var result;
this.each(function(value,index){
if(iterator(value,index)){
result=value;
throw $break;}});
return result;},
findAll:function(iterator){
var results=[];
this.each(function(value,index){
if(iterator(value,index))
results.push(value);});
return results;},
grep:function(pattern,iterator){
var results=[];
this.each(function(value,index){
var stringValue=value.toString();
if(stringValue.match(pattern))
results.push((iterator||Prototype.K)(value,index));})
return results;},
include:function(object){
var found=false;
this.each(function(value){
if(value==object){
found=true;
throw $break;}});
return found;},
inject:function(memo,iterator){
this.each(function(value,index){
memo=iterator(memo,value,index);});
return memo;},
invoke:function(method){
var args=$A(arguments).slice(1);
return this.collect(function(value){
return value[method].apply(value,args);});},
max:function(iterator){
var result;
this.each(function(value,index){
value=(iterator||Prototype.K)(value,index);
if(value>=(result||value))
result=value;});
return result;},
min:function(iterator){
var result;
this.each(function(value,index){
value=(iterator||Prototype.K)(value,index);
if(value<=(result||value))
result=value;});
return result;},
partition:function(iterator){
var trues=[],falses=[];
this.each(function(value,index){((iterator||Prototype.K)(value,index)?
trues:falses).push(value);});
return[trues,falses];},
pluck:function(property){
var results=[];
this.each(function(value,index){
results.push(value[property]);});
return results;},
reject:function(iterator){
var results=[];
this.each(function(value,index){
if(!iterator(value,index))
results.push(value);});
return results;},
sortBy:function(iterator){
return this.collect(function(value,index){
return{value:value,criteria:iterator(value,index)};}).sort(function(left,right){
var a=left.criteria,b=right.criteria;
return a<b?-1:a>b?1:0;}).pluck('value');},
toArray:function(){
return this.collect(Prototype.K);},
zip:function(){
var iterator=Prototype.K,args=$A(arguments);
if(typeof args.last()=='function')
iterator=args.pop();
var collections=[this].concat(args).map($A);
return this.map(function(value,index){
iterator(value=collections.pluck(index));
return value;});},
inspect:function(){
return '#<Enumerable:'+this.toArray().inspect()+'>';}}
Object.extend(Enumerable,{
map:Enumerable.collect,
find:Enumerable.detect,
select:Enumerable.findAll,
member:Enumerable.include,
entries:Enumerable.toArray});
var $A=Array.from=function(iterable){
if(!iterable)return[];
if(iterable.toArray){
return iterable.toArray();}else{
var results=[];
for(var i=0;i<iterable.length;i++)
results.push(iterable[i]);
return results;}}
Object.extend(Array.prototype,Enumerable);
Array.prototype._reverse=Array.prototype.reverse;
Object.extend(Array.prototype,{
_each:function(iterator){
for(var i=0;i<this.length;i++)
iterator(this[i]);},
clear:function(){
this.length=0;
return this;},
first:function(){
return this[0];},
last:function(){
return this[this.length-1];},
compact:function(){
return this.select(function(value){
return value!=undefined||value!=null;});},
flatten:function(){
return this.inject([],function(array,value){
return array.concat(value.constructor==Array?
value.flatten():[value]);});},
without:function(){
var values=$A(arguments);
return this.select(function(value){
return !values.include(value);});},
indexOf:function(object){
for(var i=0;i<this.length;i++)
if(this[i]==object)return i;
return -1;},
reverse:function(inline){
return(inline!==false?this:this.toArray())._reverse();},
shift:function(){
var result=this[0];
for(var i=0;i<this.length-1;i++)
this[i]=this[i+1];
this.length--;
return result;},
inspect:function(){
return '['+this.map(Object.inspect).join(', ')+']';}});
var Hash={
_each:function(iterator){
for(key in this){
var value=this[key];
if(typeof value=='function')continue;
var pair=[key,value];
pair.key=key;
pair.value=value;
iterator(pair);}},
keys:function(){
return this.pluck('key');},
values:function(){
return this.pluck('value');},
merge:function(hash){
return $H(hash).inject($H(this),function(mergedHash,pair){
mergedHash[pair.key]=pair.value;
return mergedHash;});},
toQueryString:function(){
return this.map(function(pair){
return pair.map(encodeURIComponent).join('=');}).join('&');},
inspect:function(){
return '#<Hash:{'+this.map(function(pair){
return pair.map(Object.inspect).join(': ');}).join(', ')+'}>';}}
function $H(object){
var hash=Object.extend({},object||{});
Object.extend(hash,Enumerable);
Object.extend(hash,Hash);
return hash;}
ObjectRange=Class.create();
Object.extend(ObjectRange.prototype,Enumerable);
Object.extend(ObjectRange.prototype,{
initialize:function(start,end,exclusive){
this.start=start;
this.end=end;
this.exclusive=exclusive;},
_each:function(iterator){
var value=this.start;
do{
iterator(value);
value=value.succ();}while(this.include(value));},
include:function(value){
if(value<this.start)
return false;
if(this.exclusive)
return value<this.end;
return value<=this.end;}});
var $R=function(start,end,exclusive){
return new ObjectRange(start,end,exclusive);}
var Ajax={
getTransport:function(){
return Try.these(
function(){return new ActiveXObject('Msxml2.XMLHTTP')},
function(){return new ActiveXObject('Microsoft.XMLHTTP')},
function(){return new XMLHttpRequest()})||false;},
activeRequestCount:0}
Ajax.Responders={
responders:[],
_each:function(iterator){
this.responders._each(iterator);},
register:function(responderToAdd){
if(!this.include(responderToAdd))
this.responders.push(responderToAdd);},
unregister:function(responderToRemove){
this.responders=this.responders.without(responderToRemove);},
dispatch:function(callback,request,transport,json){
this.each(function(responder){
if(responder[callback]&&typeof responder[callback]=='function'){
try{
responder[callback].apply(responder,[request,transport,json]);}catch(e){}}});}};
Object.extend(Ajax.Responders,Enumerable);
Ajax.Responders.register({
onCreate:function(){
Ajax.activeRequestCount++;},
onComplete:function(){
Ajax.activeRequestCount--;}});
Ajax.Base=function(){};
Ajax.Base.prototype={
setOptions:function(options){
this.options={
method:'post',
asynchronous:true,
parameters:''}
Object.extend(this.options,options||{});},
responseIsSuccess:function(){
return this.transport.status==undefined||this.transport.status==0||(this.transport.status>=200&&this.transport.status<300);},
responseIsFailure:function(){
return !this.responseIsSuccess();}}
Ajax.Request=Class.create();
Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];
Ajax.Request.prototype=Object.extend(new Ajax.Base(),{
initialize:function(url,options){
this.transport=Ajax.getTransport();
this.setOptions(options);
this.request(url);},
request:function(url){
var parameters=this.options.parameters||'';
if(parameters.length>0)parameters+='&_=';
try{
this.url=url;
if(this.options.method=='get'&&parameters.length>0)
this.url+=(this.url.match(/\?/)?'&':'?')+parameters;
Ajax.Responders.dispatch('onCreate',this,this.transport);
this.transport.open(this.options.method,this.url,
this.options.asynchronous);
if(this.options.asynchronous){
this.transport.onreadystatechange=this.onStateChange.bind(this);
setTimeout((function(){this.respondToReadyState(1)}).bind(this),10);}
this.setRequestHeaders();
var body=this.options.postBody?this.options.postBody:parameters;
this.transport.send(this.options.method=='post'?body:null);}catch(e){
this.dispatchException(e);}},
setRequestHeaders:function(){
var requestHeaders=['X-Requested-With','XMLHttpRequest',
'X-Prototype-Version',Prototype.Version];
if(this.options.method=='post'){
requestHeaders.push('Content-type',
'application/x-www-form-urlencoded');
if(this.transport.overrideMimeType)
requestHeaders.push('Connection','close');}
if(this.options.requestHeaders)
requestHeaders.push.apply(requestHeaders,this.options.requestHeaders);
for(var i=0;i<requestHeaders.length;i+=2)
this.transport.setRequestHeader(requestHeaders[i],requestHeaders[i+1]);},
onStateChange:function(){
var readyState=this.transport.readyState;
if(readyState!=1)
this.respondToReadyState(this.transport.readyState);},
header:function(name){
try{
return this.transport.getResponseHeader(name);}catch(e){}},
evalJSON:function(){
try{
return eval(this.header('X-JSON'));}catch(e){}},
evalResponse:function(){
try{
return eval(this.transport.responseText);}catch(e){
this.dispatchException(e);}},
respondToReadyState:function(readyState){
var event=Ajax.Request.Events[readyState];
var transport=this.transport,json=this.evalJSON();
if(event=='Complete'){
try{(this.options['on'+this.transport.status]||this.options['on'+(this.responseIsSuccess()?'Success':'Failure')]||Prototype.emptyFunction)(transport,json);}catch(e){
this.dispatchException(e);}
if((this.header('Content-type')||'').match(/^text\/javascript/i))
this.evalResponse();}
try{(this.options['on'+event]||Prototype.emptyFunction)(transport,json);
Ajax.Responders.dispatch('on'+event,this,transport,json);}catch(e){
this.dispatchException(e);}
if(event=='Complete')
this.transport.onreadystatechange=Prototype.emptyFunction;},
dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);
Ajax.Responders.dispatch('onException',this,exception);}});
Ajax.Updater=Class.create();
Object.extend(Object.extend(Ajax.Updater.prototype,Ajax.Request.prototype),{
initialize:function(container,url,options){
this.containers={
success:container.success?$(container.success):$(container),
failure:container.failure?$(container.failure):(container.success?null:$(container))}
this.transport=Ajax.getTransport();
this.setOptions(options);
var onComplete=this.options.onComplete||Prototype.emptyFunction;
this.options.onComplete=(function(transport,object){
this.updateContent();
onComplete(transport,object);}).bind(this);
this.request(url);},
updateContent:function(){
var receiver=this.responseIsSuccess()?
this.containers.success:this.containers.failure;
var response=this.transport.responseText;
if(!this.options.evalScripts)
response=response.stripScripts();
if(receiver){
if(this.options.insertion){
new this.options.insertion(receiver,response);}else{
Element.update(receiver,response);}}
if(this.responseIsSuccess()){
if(this.onComplete)
setTimeout(this.onComplete.bind(this),10);}}});
Ajax.PeriodicalUpdater=Class.create();
Ajax.PeriodicalUpdater.prototype=Object.extend(new Ajax.Base(),{
initialize:function(container,url,options){
this.setOptions(options);
this.onComplete=this.options.onComplete;
this.frequency=(this.options.frequency||2);
this.decay=(this.options.decay||1);
this.updater={};
this.container=container;
this.url=url;
this.start();},
start:function(){
this.options.onComplete=this.updateComplete.bind(this);
this.onTimerEvent();},
stop:function(){
this.updater.onComplete=undefined;
clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments);},
updateComplete:function(request){
if(this.options.decay){
this.decay=(request.responseText==this.lastText?
this.decay*this.options.decay:1);
this.lastText=request.responseText;}
this.timer=setTimeout(this.onTimerEvent.bind(this),
this.decay*this.frequency*1000);},
onTimerEvent:function(){
this.updater=new Ajax.Updater(this.container,this.url,this.options);}});
document.getElementsByClassName=function(className,parentElement){
var children=($(parentElement)||document.body).getElementsByTagName('*');
return $A(children).inject([],function(elements,child){
if(child.className.match(new RegExp("(^|\\s)"+className+"(\\s|$)")))
elements.push(child);
return elements;});}
if(!window.Element){
var Element=new Object();}
Object.extend(Element,{
visible:function(element){
return $(element).style.display!='none';},
toggle:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
Element[Element.visible(element)?'hide':'show'](element);}},
hide:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
element.style.display='none';}},
show:function(){
for(var i=0;i<arguments.length;i++){
var element=$(arguments[i]);
element.style.display='';}},
remove:function(element){
element=$(element);
element.parentNode.removeChild(element);},
update:function(element,html){
$(element).innerHTML=html.stripScripts();
setTimeout(function(){html.evalScripts()},10);},
getHeight:function(element){
element=$(element);
return element.offsetHeight;},
classNames:function(element){
return new Element.ClassNames(element);},
hasClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).include(className);},
addClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).add(className);},
removeClassName:function(element,className){
if(!(element=$(element)))return;
return Element.classNames(element).remove(className);},
cleanWhitespace:function(element){
element=$(element);
for(var i=0;i<element.childNodes.length;i++){
var node=element.childNodes[i];
if(node.nodeType==3&&!/\S/.test(node.nodeValue))
Element.remove(node);}},
empty:function(element){
return $(element).innerHTML.match(/^\s*$/);},
scrollTo:function(element){
element=$(element);
var x=element.x?element.x:element.offsetLeft,
y=element.y?element.y:element.offsetTop;
window.scrollTo(x,y);},
getStyle:function(element,style){
element=$(element);
var value=element.style[style.camelize()];
if(!value){
if(document.defaultView&&document.defaultView.getComputedStyle){
var css=document.defaultView.getComputedStyle(element,null);
value=css?css.getPropertyValue(style):null;}else if(element.currentStyle){
value=element.currentStyle[style.camelize()];}}
if(window.opera&&['left','top','right','bottom'].include(style))
if(Element.getStyle(element,'position')=='static')value='auto';
return value=='auto'?null:value;},
setStyle:function(element,style){
element=$(element);
for(name in style)
element.style[name.camelize()]=style[name];},
getDimensions:function(element){
element=$(element);
if(Element.getStyle(element,'display')!='none')
return{width:element.offsetWidth,height:element.offsetHeight};
var els=element.style;
var originalVisibility=els.visibility;
var originalPosition=els.position;
els.visibility='hidden';
els.position='absolute';
els.display='';
var originalWidth=element.clientWidth;
var originalHeight=element.clientHeight;
els.display='none';
els.position=originalPosition;
els.visibility=originalVisibility;
return{width:originalWidth,height:originalHeight};},
makePositioned:function(element){
element=$(element);
var pos=Element.getStyle(element,'position');
if(pos=='static'||!pos){
element._madePositioned=true;
element.style.position='relative';
if(window.opera){
element.style.top=0;
element.style.left=0;}}},
undoPositioned:function(element){
element=$(element);
if(element._madePositioned){
element._madePositioned=undefined;
element.style.position=
element.style.top=
element.style.left=
element.style.bottom=
element.style.right='';}},
makeClipping:function(element){
element=$(element);
if(element._overflow)return;
element._overflow=element.style.overflow;
if((Element.getStyle(element,'overflow')||'visible')!='hidden')
element.style.overflow='hidden';},
undoClipping:function(element){
element=$(element);
if(element._overflow)return;
element.style.overflow=element._overflow;
element._overflow=undefined;}});
var Toggle=new Object();
Toggle.display=Element.toggle;
Abstract.Insertion=function(adjacency){
this.adjacency=adjacency;}
Abstract.Insertion.prototype={
initialize:function(element,content){
this.element=$(element);
this.content=content.stripScripts();
if(this.adjacency&&this.element.insertAdjacentHTML){
try{
this.element.insertAdjacentHTML(this.adjacency,this.content);}catch(e){
if(this.element.tagName.toLowerCase()=='tbody'){
this.insertContent(this.contentFromAnonymousTable());}else{
throw e;}}}else{
this.range=this.element.ownerDocument.createRange();
if(this.initializeRange)this.initializeRange();
this.insertContent([this.range.createContextualFragment(this.content)]);}
setTimeout(function(){content.evalScripts()},10);},
contentFromAnonymousTable:function(){
var div=document.createElement('div');
div.innerHTML='<table><tbody>'+this.content+'</tbody></table>';
return $A(div.childNodes[0].childNodes[0].childNodes);}}
var Insertion=new Object();
Insertion.Before=Class.create();
Insertion.Before.prototype=Object.extend(new Abstract.Insertion('beforeBegin'),{
initializeRange:function(){
this.range.setStartBefore(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.parentNode.insertBefore(fragment,this.element);}).bind(this));}});
Insertion.Top=Class.create();
Insertion.Top.prototype=Object.extend(new Abstract.Insertion('afterBegin'),{
initializeRange:function(){
this.range.selectNodeContents(this.element);
this.range.collapse(true);},
insertContent:function(fragments){
fragments.reverse(false).each((function(fragment){
this.element.insertBefore(fragment,this.element.firstChild);}).bind(this));}});
Insertion.Bottom=Class.create();
Insertion.Bottom.prototype=Object.extend(new Abstract.Insertion('beforeEnd'),{
initializeRange:function(){
this.range.selectNodeContents(this.element);
this.range.collapse(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.appendChild(fragment);}).bind(this));}});
Insertion.After=Class.create();
Insertion.After.prototype=Object.extend(new Abstract.Insertion('afterEnd'),{
initializeRange:function(){
this.range.setStartAfter(this.element);},
insertContent:function(fragments){
fragments.each((function(fragment){
this.element.parentNode.insertBefore(fragment,
this.element.nextSibling);}).bind(this));}});
Element.ClassNames=Class.create();
Element.ClassNames.prototype={
initialize:function(element){
this.element=$(element);},
_each:function(iterator){
this.element.className.split(/\s+/).select(function(name){
return name.length>0;})._each(iterator);},
set:function(className){
this.element.className=className;},
add:function(classNameToAdd){
if(this.include(classNameToAdd))return;
this.set(this.toArray().concat(classNameToAdd).join(' '));},
remove:function(classNameToRemove){
if(!this.include(classNameToRemove))return;
this.set(this.select(function(className){
return className!=classNameToRemove;}).join(' '));},
toString:function(){
return this.toArray().join(' ');}}
Object.extend(Element.ClassNames.prototype,Enumerable);
var Field={
clear:function(){
for(var i=0;i<arguments.length;i++)
$(arguments[i]).value='';},
focus:function(element){
$(element).focus();},
present:function(){
for(var i=0;i<arguments.length;i++)
if($(arguments[i]).value=='')return false;
return true;},
select:function(element){
$(element).select();},
activate:function(element){
element=$(element);
element.focus();
if(element.select)
element.select();}}
var Form={
serialize:function(form){
var elements=Form.getElements($(form));
var queryComponents=new Array();
for(var i=0;i<elements.length;i++){
var queryComponent=Form.Element.serialize(elements[i]);
if(queryComponent)
queryComponents.push(queryComponent);}
return queryComponents.join('&');},
getElements:function(form){
form=$(form);
var elements=new Array();
for(tagName in Form.Element.Serializers){
var tagElements=form.getElementsByTagName(tagName);
for(var j=0;j<tagElements.length;j++)
elements.push(tagElements[j]);}
return elements;},
getInputs:function(form,typeName,name){
form=$(form);
var inputs=form.getElementsByTagName('input');
if(!typeName&&!name)
return inputs;
var matchingInputs=new Array();
for(var i=0;i<inputs.length;i++){
var input=inputs[i];
if((typeName&&input.type!=typeName)||(name&&input.name!=name))
continue;
matchingInputs.push(input);}
return matchingInputs;},
disable:function(form){
var elements=Form.getElements(form);
for(var i=0;i<elements.length;i++){
var element=elements[i];
element.blur();
element.disabled='true';}},
enable:function(form){
var elements=Form.getElements(form);
for(var i=0;i<elements.length;i++){
var element=elements[i];
element.disabled='';}},
findFirstElement:function(form){
return Form.getElements(form).find(function(element){
return element.type!='hidden'&&!element.disabled&&['input','select','textarea'].include(element.tagName.toLowerCase());});},
focusFirstElement:function(form){
Field.activate(Form.findFirstElement(form));},
reset:function(form){
$(form).reset();}}
Form.Element={
serialize:function(element){
element=$(element);
var method=element.tagName.toLowerCase();
var parameter=Form.Element.Serializers[method](element);
if(parameter){
var key=encodeURIComponent(parameter);
if(key.length==0)return;
if(parameter[1].constructor !=Array)
parameter[1]=[parameter[1]];
return parameter[1].map(function(value){
return key+'='+encodeURIComponent(value);}).join('&');}},
getValue:function(element){
element=$(element);
var method=element.tagName.toLowerCase();
var parameter=Form.Element.Serializers[method](element);
if(parameter)
return parameter[1];}}
Form.Element.Serializers={
input:function(element){
switch(element.type.toLowerCase()){
case 'submit':
case 'hidden':
case 'password':
case 'text':
return Form.Element.Serializers.textarea(element);
case 'checkbox':
case 'radio':
return Form.Element.Serializers.inputSelector(element);}
return false;},
inputSelector:function(element){
if(element.checked)
return[element.name,element.value];},
textarea:function(element){
return[element.name,element.value];},
select:function(element){
return Form.Element.Serializers[element.type=='select-one'?
'selectOne':'selectMany'](element);},
selectOne:function(element){
var value='',opt,index=element.selectedIndex;
if(index>=0){
opt=element.options[index];
value=opt.value;
if(!value&&!('value' in opt))
value=opt.text;}
return[element.name,value];},
selectMany:function(element){
var value=new Array();
for(var i=0;i<element.length;i++){
var opt=element.options[i];
if(opt.selected){
var optValue=opt.value;
if(!optValue&&!('value' in opt))
optValue=opt.text;
value.push(optValue);}}
return[element.name,value];}}
var $F=Form.Element.getValue;
Abstract.TimedObserver=function(){}
Abstract.TimedObserver.prototype={
initialize:function(element,frequency,callback){
this.frequency=frequency;
this.element=$(element);
this.callback=callback;
this.lastValue=this.getValue();
this.registerCallback();},
registerCallback:function(){
setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},
onTimerEvent:function(){
var value=this.getValue();
if(this.lastValue!=value){
this.callback(this.element,value);
this.lastValue=value;}}}
Form.Element.Observer=Class.create();
Form.Element.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{
getValue:function(){
return Form.Element.getValue(this.element);}});
Form.Observer=Class.create();
Form.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{
getValue:function(){
return Form.serialize(this.element);}});
Abstract.EventObserver=function(){}
Abstract.EventObserver.prototype={
initialize:function(element,callback){
this.element=$(element);
this.callback=callback;
this.lastValue=this.getValue();
if(this.element.tagName.toLowerCase()=='form')
this.registerFormCallbacks();
else
this.registerCallback(this.element);},
onElementEvent:function(){
var value=this.getValue();
if(this.lastValue!=value){
this.callback(this.element,value);
this.lastValue=value;}},
registerFormCallbacks:function(){
var elements=Form.getElements(this.element);
for(var i=0;i<elements.length;i++)
this.registerCallback(elements[i]);},
registerCallback:function(element){
if(element.type){
switch(element.type.toLowerCase()){
case 'checkbox':
case 'radio':
Event.observe(element,'click',this.onElementEvent.bind(this));
break;
case 'password':
case 'text':
case 'textarea':
case 'select-one':
case 'select-multiple':
Event.observe(element,'change',this.onElementEvent.bind(this));
break;}}}}
Form.Element.EventObserver=Class.create();
Form.Element.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{
getValue:function(){
return Form.Element.getValue(this.element);}});
Form.EventObserver=Class.create();
Form.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{
getValue:function(){
return Form.serialize(this.element);}});
if(!window.Event){
var Event=new Object();}
Object.extend(Event,{
KEY_BACKSPACE:8,
KEY_TAB:9,
KEY_RETURN:13,
KEY_ESC:27,
KEY_LEFT:37,
KEY_UP:38,
KEY_RIGHT:39,
KEY_DOWN:40,
KEY_DELETE:46,
element:function(event){
return event.target||event.srcElement;},
isLeftClick:function(event){
return(((event.which)&&(event.which==1))||((event.button)&&(event.button==1)));},
pointerX:function(event){
return event.pageX||(event.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft));},
pointerY:function(event){
return event.pageY||(event.clientY+(document.documentElement.scrollTop||document.body.scrollTop));},
stop:function(event){
if(event.preventDefault){
event.preventDefault();
event.stopPropagation();}else{
event.returnValue=false;
event.cancelBubble=true;}},
findElement:function(event,tagName){
var element=Event.element(event);
while(element.parentNode&&(!element.tagName||(element.tagName.toUpperCase()!=tagName.toUpperCase())))
element=element.parentNode;
return element;},
observers:false,
_observeAndCache:function(element,name,observer,useCapture){
if(!this.observers)this.observers=[];
if(element.addEventListener){
this.observers.push([element,name,observer,useCapture]);
element.addEventListener(name,observer,useCapture);}else if(element.attachEvent){
this.observers.push([element,name,observer,useCapture]);
element.attachEvent('on'+name,observer);}},
unloadCache:function(){
if(!Event.observers)return;
for(var i=0;i<Event.observers.length;i++){
Event.stopObserving.apply(this,Event.observers[i]);
Event.observers[i][0]=null;}
Event.observers=false;},
observe:function(element,name,observer,useCapture){
var element=$(element);
useCapture=useCapture||false;
if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.attachEvent))
name='keydown';
this._observeAndCache(element,name,observer,useCapture);},
stopObserving:function(element,name,observer,useCapture){
var element=$(element);
useCapture=useCapture||false;
if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.detachEvent))
name='keydown';
if(element.removeEventListener){
element.removeEventListener(name,observer,useCapture);}else if(element.detachEvent){
element.detachEvent('on'+name,observer);}}});
Event.observe(window,'unload',Event.unloadCache,false);
var Position={
includeScrollOffsets:false,
prepare:function(){
this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;
this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;},
realOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.scrollTop||0;
valueL+=element.scrollLeft||0;
element=element.parentNode;}while(element);
return[valueL,valueT];},
cumulativeOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
element=element.offsetParent;}while(element);
return[valueL,valueT];},
positionedOffset:function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
element=element.offsetParent;
if(element){
p=Element.getStyle(element,'position');
if(p=='relative'||p=='absolute')break;}}while(element);
return[valueL,valueT];},
offsetParent:function(element){
if(element.offsetParent)return element.offsetParent;
if(element==document.body)return element;
while((element=element.parentNode)&&element!=document.body)
if(Element.getStyle(element,'position')!='static')
return element;
return document.body;},
within:function(element,x,y){
if(this.includeScrollOffsets)
return this.withinIncludingScrolloffsets(element,x,y);
this.xcomp=x;
this.ycomp=y;
this.offset=this.cumulativeOffset(element);
return(y>=this.offset[1]&&
y<this.offset[1]+element.offsetHeight&&
x>=this.offset[0]&&
x<this.offset[0]+element.offsetWidth);},
withinIncludingScrolloffsets:function(element,x,y){
var offsetcache=this.realOffset(element);
this.xcomp=x+offsetcache[0]-this.deltaX;
this.ycomp=y+offsetcache[1]-this.deltaY;
this.offset=this.cumulativeOffset(element);
return(this.ycomp>=this.offset[1]&&
this.ycomp<this.offset[1]+element.offsetHeight&&
this.xcomp>=this.offset[0]&&
this.xcomp<this.offset[0]+element.offsetWidth);},
overlap:function(mode,element){
if(!mode)return 0;
if(mode=='vertical')
return((this.offset[1]+element.offsetHeight)-this.ycomp)/
element.offsetHeight;
if(mode=='horizontal')
return((this.offset[0]+element.offsetWidth)-this.xcomp)/
element.offsetWidth;},
clone:function(source,target){
source=$(source);
target=$(target);
target.style.position='absolute';
var offsets=this.cumulativeOffset(source);
target.style.top=offsets[1]+'px';
target.style.left=offsets[0]+'px';
target.style.width=source.offsetWidth+'px';
target.style.height=source.offsetHeight+'px';},
page:function(forElement){
var valueT=0,valueL=0;
var element=forElement;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);
element=forElement;
do{
valueT-=element.scrollTop||0;
valueL-=element.scrollLeft||0;}while(element=element.parentNode);
return[valueL,valueT];},
clone:function(source,target){
var options=Object.extend({
setLeft:true,
setTop:true,
setWidth:true,
setHeight:true,
offsetTop:0,
offsetLeft:0},arguments[2]||{})
source=$(source);
var p=Position.page(source);
target=$(target);
var delta=[0,0];
var parent=null;
if(Element.getStyle(target,'position')=='absolute'){
parent=Position.offsetParent(target);
delta=Position.page(parent);}
if(parent==document.body){
delta[0]-=document.body.offsetLeft;
delta[1]-=document.body.offsetTop;}
if(options.setLeft)target.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';
if(options.setTop)target.style.top=(p[1]-delta[1]+options.offsetTop)+'px';
if(options.setWidth)target.style.width=source.offsetWidth+'px';
if(options.setHeight)target.style.height=source.offsetHeight+'px';},
absolutize:function(element){
element=$(element);
if(element.style.position=='absolute')return;
Position.prepare();
var offsets=Position.positionedOffset(element);
var top=offsets[1];
var left=offsets[0];
var width=element.clientWidth;
var height=element.clientHeight;
element._originalLeft=left-parseFloat(element.style.left||0);
element._originalTop=top-parseFloat(element.style.top||0);
element._originalWidth=element.style.width;
element._originalHeight=element.style.height;
element.style.position='absolute';
element.style.top=top+'px';;
element.style.left=left+'px';;
element.style.width=width+'px';;
element.style.height=height+'px';;},
relativize:function(element){
element=$(element);
if(element.style.position=='relative')return;
Position.prepare();
element.style.position='relative';
var top=parseFloat(element.style.top||0)-(element._originalTop||0);
var left=parseFloat(element.style.left||0)-(element._originalLeft||0);
element.style.top=top+'px';
element.style.left=left+'px';
element.style.height=element._originalHeight;
element.style.width=element._originalWidth;}}
if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)){
Position.cumulativeOffset=function(element){
var valueT=0,valueL=0;
do{
valueT+=element.offsetTop||0;
valueL+=element.offsetLeft||0;
if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;
element=element.offsetParent;}while(element);
return[valueL,valueT];}}

//::: Common 00:00:00.0156250

function $I(id){Claim.isString(id,"$I.id");var element=$(id);Claim.isObject(element,"Required HTML element id: "+id);return element;}
function $F(id){Claim.isString(id,"$F.id")
Claim.isObject($(id),"Required form element id: "+id)
return Form.Element.getValue(id)}
function $T(tagName){var element=document.getElementsByTagName(tagName).item(0)
Claim.isObject(element,"Required HTML element tag: "+tagName)
return element}
function $SO(id){return $I(id).options[$I(id).selectedIndex]}
Number.prototype.toText=function(base,width){Claim.isNumber(base,"Number.toText.base")
Claim.isTrue(base>0,"Number.toText.base")
Claim.isNumber(width,"Number.toText.width")
Claim.isTrue(width>=0,"Number.toText.width")
var text=this.toString(base||10)+""
while(text.length<width)
text="0"+text
return text}
Number.prototype.toDec=function(width){Claim.isNumber(width,"Number.toText.width")
Claim.isTrue(width>=0,"Number.toText.width")
return this.toText(10,width)}
Number.prototype.toHex=function(width){Claim.isNumber(width,"width","Number.toText.width")
Claim.isTrue(width>=0,"width","Number.toText.width")
return this.toText(16,width)}
Date.prototype.toText=function(){var year=this.getUTCFullYear().toDec(4)
var month=this.getUTCMonth().toDec(2)
var day=this.getUTCDate().toDec(2)
var hours=this.getUTCHours().toDec(2)
var minutes=this.getUTCMinutes().toDec(2)
var seconds=this.getUTCSeconds().toDec(2)
var milliseconds=this.getUTCMilliseconds().toDec(3)
return year+"-"+month+"-"+day+" "+hours+":"+minutes+":"+seconds+"."+milliseconds}
var PreLoad={}
PreLoad.preLoad=function(){PreLoad.log=new Log4Js.Logger("PreLoad")}
PreLoad.onLoad=function(){PreLoad.log.debug("Done pre-load")}
PreLoad.actions=[]
PreLoad.actions.push(PreLoad.preLoad)
Event.observe(window,"load",PreLoad.onLoad)
var Url={}
Url.parse=function(url){Claim.isString(url,"Url.parse.url")
var parsed={}
parsed.full=url
parsed.base=url.replace(/\?.*$/,'')
parsed.protocol=url.replace(/:.*$/,'')
parsed.domain=parsed.base.replace(/^[^:]*:\/[\/]/,'').replace(/[:\/].*$/,'')
parsed.path=parsed.base.replace(/^[^\/]*\/\/[^\/]*[\/]/,'/')
parsed.query=url.replace(/^[^?]*\??/,'')
parsed.params=parsed.query.split("&").inject({},function(params,paramValue){pair=paramValue.split("=")
params[pair[0]]=unescape(pair[1])
return params})
return parsed}
Url.trimAnchor=function(url){var i=url.lastIndexOf("#");var isHasSharpMark=i>-1
var isHasQMark=url.lastIndexOf("?")>-1
if(isHasSharpMark&&((isHasQMark&&i>url.lastIndexOf("="))||!isHasQMark)){url=url.substr(0,i);}
return url;}
Url.appendParams=function(url,params){Claim.isString(url,"Url.appendParams.url")
if(!params||params=="")
return url
if(typeof(params)=="string")
return url+(url.match(/\?/)?"&":"?")+params
return $A($H(params).keys().sort()).inject(url,function(url,param){return Url.appendParamValue(url,param,params[param])})}
Url.appendParamValue=function(url,param,value){Claim.isString(url,"Url.appendParamValue.url")
Claim.isString(param,"Url.appendParamValue.param")
Claim.isScalar(value,"Url.appendParamValue.value")
return url+(url.match(/\?/)?"&":"?")+escape(param)+"="+escape(value)}
Url.relativeUrl=function(options){Claim.isObject(options,"Url.relativeUrl.options")
var protocol=options.protocol||Url.here.protocol
Claim.isString(protocol,"Url.relativeUrl.options.protocol")
var domain=options.domain||Url.here.domain
Claim.isString(domain,"Url.relativeUrl.options.domain")
var path=options.path||Url.here.path
Claim.isString(path,"Url.relativeUrl.options.path")
if(!path.match(/^[\/]/)){var base=Url.here.path
path="../"+path
while(path.match(/^\.\.[\/]/)){path=path.replace(/^\.\.[\/]/,"")
base=base.replace(/\/[^\/]+$/,"")}
path=base+"/"+path}
var params={}
var withHereParams=options.withHereParams||false
Claim.isBoolean(withHereParams,"Url.relativeUrl.options.withHereParams")
if(withHereParams)
Object.extend(params,Url.here.params)
var withClearanceParams=options.withClearanceParams
if(withClearanceParams==undefined)
withClearanceParams=domain!=Url.here.domain
Claim.isBoolean(withClearanceParams,"Url.relativeUrl.options.withClearanceParams")
if(withClearanceParams){Object.extend(params,Clearance.getAllLevelParams())}
var optionsParams=options.params||{}
Claim.isObject(optionsParams,"Url.relativeUrl.options.params")
Object.extend(params,options.params||{})
return Url.appendParams(protocol+":/"+"/"+domain+path,params)}
Url.here=undefined
Url.preLoad=function(){Url.here=Url.parse(location.href)}
PreLoad.actions.push(Url.preLoad)
var Claim={}
Claim.check=function(condition,claim,comment){if(!comment)
comment=claim
else
comment=claim+": "+comment
var log=Claim.log
Claim.log=undefined
try{if(condition){if(log)
log.debug(comment)}
else{if(log)
log.error(comment)
else
alert(comment)
throw new Error(comment)}}
finally{Claim.log=log}}
Claim.valueType=function(object){if(object==undefined)
return"undefined"
if(object==null)
return"null"
return typeof(object)+"("+object+")"}
Claim.isTrue=function(condition,comment){Claim.check(condition,"isTrue("+Claim.valueType(condition)+")",comment)}
Claim.isFalse=function(condition,comment){Claim.check(!condition,"isFalse("+Claim.valueType(condition)+")",comment)}
Claim.isNull=function(object,comment){Claim.check(typeof(object)==null,"isNull("+Claim.valueType(object)+")",comment)}
Claim.isNotNull=function(object,comment){Claim.check(typeof(object)!=null,"isNotNull("+Claim.valueType(object)+")",comment)}
Claim.isUndefined=function(object,comment){Claim.check(typeof(object)=='undefined',"isUndefined("+Claim.valueType(object)+")",comment)}
Claim.isNotUndefined=function(object,comment){Claim.check(typeof(object)!='undefined',"isNotUndefined("+Claim.valueType(object)+")",comment)}
Claim.isObject=function(object,comment){Claim.check(!!object,"isObject("+Claim.valueType(object)+")",comment)}
Claim.isNumber=function(object,comment){Claim.check(typeof(object)=="number","isNumber("+Claim.valueType(object)+")",comment)}
Claim.isBoolean=function(object,comment){Claim.check(typeof(object)=="boolean","isBoolean("+Claim.valueType(object)+")",comment)}
Claim.isString=function(object,comment){Claim.check(typeof(object)=="string","isString("+Claim.valueType(object)+")",comment)}
Claim.isScalar=function(object,comment){Claim.check(typeof(object)=="string"||typeof(object)=="number"||typeof(object)=="boolean","isScalar("+Claim.valueType(object)+")",comment)}
Claim.isArray=function(object,comment){Claim.check(object&&object.length!=undefined,"isArray("+Claim.valueType(object)+")",comment)}
Claim.areEqual=function(object1,object2,comment){Claim.check(object1==object2,"areEqual("+Claim.valueType(object1)+" ? "+Claim.valueType(object2)+")",comment)}
Claim.isFunction=function(object,comment){Claim.check(typeof(object)=='function',"isFunction("+Claim.valueType(object)+")",comment)}
Claim.preLoad=function(){Claim.log=new Log4Js.Logger("Claim")}
PreLoad.actions.push(Claim.preLoad)
var Cookies={}
Cookies.defaultOptions={}
Cookies.rawByName={}
Cookies.valueByName={}
Cookies.set=function(name,value,options){Claim.isString(name,"Cookies.set.name")
Claim.isObject(value,"Cookies.set.value")
var fullOptions=Cookies.fullOptions(name,options)
var raw=Cookies.toJson(value)
Cookies.valueByName[name]=value
Cookies.rawByName[name]=raw
var cookie=Cookies.fullCookie(name,raw,fullOptions)
Cookies.log.info("Set cookie: "+cookie)
document.cookie=cookie}
Cookies.get=function(name){Claim.isString(name,"Cookies.get.name")
return Cookies.valueByName[name]}
Cookies.clear=function(name,options){Claim.isString(name,"Cookies.clear.name")
var fullOptions=Cookies.fullOptions(name,options)
fullOptions.expires=Cookies.expiration(-1)
var cookie=Cookies.fullCookie(name,"",fullOptions)
delete(Cookies.rawByName[name])
delete(Cookies.valueByName[name])
Cookies.log.info("Clear cookie: "+cookie)
document.cookie=cookie}
Cookies.fullOptions=function(name,options){Claim.isString(name,"Cookies.fullOptions.name")
var fullOptions=Object.extend({},Cookies.defaultOptions)
fullOptions=Object.extend(fullOptions,options||{})
if(!fullOptions.path){var error="Set cookie name: "+name+" without a path"
Cookies.log.error(error)
throw error}
if(fullOptions.path.charAt(0)!="/"){var error="Set cookie name: "+name+" invalid path: "+fullOptions.path
Cookies.log.error(error)
throw error}
if(!fullOptions.domain){var error="Set cookie name: "+name+" without a domain"
Cookies.log.error(error)
throw error}
if(fullOptions.domain.charAt(0)!="."){var error="Set cookie name: "+name+" invalid domain: "+fullOptions.domain
Cookies.log.error(error)
throw error}
return fullOptions}
Cookies.expiration=function(millis){Claim.isNumber(millis,"Cookies.expiration.millis")
var today=new Date()
var now=Date.parse(today)
today.setTime(now+1*millis)
return today.toUTCString()}
Cookies.fullCookie=function(name,raw,options){Claim.isString(name,"Cookies.fullCookie.name")
var cookie=name+"="+raw
$H(options).each(function(pair){if(pair[1]!=undefined)
cookie+=";"+pair[0]+"="+pair[1]})
return cookie}
Cookies.toJson=function(object){if(object==undefined)
return"undefined"
if(object==null)
return"null"
if(typeof(object)=="string")
return"\""+Cookies.jsonEscape(object.toString())+"\""
if(typeof(object)=="number"||typeof(object)=="boolean")
return object.toString()
if(object.toJson)
return object.toJson()
var json=""
var seperator=""
if(typeof object=='object'&&object.constructor.toString().match(/array/i)!=null){$A(object).each(function(value){json+=seperator+Cookies.toJson(value)
seperator=","})
return"["+json+"]"}
else{var json=""
$H(object).each(function(pair){json+=seperator+Cookies.toJson(pair[0])+":"+Cookies.toJson(pair[1])
seperator=","})
return"{"+json+"}"}}
Cookies.jsonEscape=function(text){Claim.isString(text,"Claim.jsonEscape.text")
var escaped=""
for(var i=0;i<text.length;i++){var code=text.charCodeAt(i)
if(code<32||code==59){escaped+="\\u"+code.toHex(4)}
else{var nextChar=text.charAt(i)
if(nextChar=="\""||nextChar=="\\")
escaped+="\\"
escaped+=nextChar}}
return escaped}
Cookies.preLoad=function(){Cookies.log=new Log4Js.Logger("Cookies")
Cookies.defaultOptions.path="/"
Cookies.defaultOptions.domain="."+Url.here.domain.replace(/^[a-zA-Z0-9\-]+./,'')
document.cookie.split(';').each(function(cookie){if(!cookie){if(Cookies.rawByName!=undefined){Cookies.rawByName={};Cookies.valueByName={};}
throw $break}
var name=cookie.replace(/^\s*([^=]+)=.*$/,'$1')
var raw=cookie.replace(/^[^=]*=/,'')
Cookies.rawByName[name]=raw
Cookies.log.info("Load cookie name: "+name+" value: "+raw)
try{var value=undefined
eval("value="+raw)
Cookies.valueByName[name]=value}
catch(error){Cookies.log.error("Invalid cookie name: "+name+" value: "+value+" error: "+error)
Cookies.valueByName[name]=null}})}
Cookies.pop=function(){var each,s=[];for(each in this.rawByName){s[s.length]=each
s[s.length]=":"
s[s.length]=this.rawByName[each]
s[s.length]="\n"}
alert(unescape(s.join("")));}
PreLoad.actions.push(Cookies.preLoad)
var Log4Js={}
Log4Js.levelNames=["All","Debug","Info","Warn","Error","Fatal","None"]
Log4Js.ALL=0
Log4Js.DEBUG=1
Log4Js.INFO=2
Log4Js.WARN=3
Log4Js.ERROR=4
Log4Js.FATAL=5
Log4Js.NONE=6
Log4Js.configVersion=0
Log4Js.targetsByName={"*":[]}
Log4Js.setTargets=function(name,targets){Claim.isString(name,"Log4Js.setTargets.name")
Claim.isArray(targets,"Log4Js.setTargets.targets")
Log4Js.targetsByName[name]=targets
Log4Js.configVersion++}
Log4Js.removeTargets=function(name){Claim.isString(name,"Log4Js.removeTargets.name")
if(name=="*")
Log4Js.targetsByName[name]=[]
else
delete(Log4Js.targetsByName[name])
Log4Js.configVersion++}
Log4Js.getTargets=function(name){Claim.isString(name,"Log4Js.getTargets.name")
return Log4Js.targetsByName[name]}
Log4Js.findPrefix=function(name){Claim.isString(name,"Log4Js.findPrefix.name")
while(true){if(name=="")
name="*"
var targets=Log4Js.targetsByName[name]
if(targets)
return name
var lastDot=name.lastIndexOf(".")
name=lastDot>0?name.substring(0,lastDot):""}}
Log4Js.findTargets=function(name){Claim.isString(name,"Log4Js.findTargets.name")
return this.getTargets(this.findPrefix(name))}
Log4Js.toConfig=function(){var anchorsByName={}
var targetAnchorByJson={}
var targetByAnchor={}
var nextAnchor=1
$H(Log4Js.targetsByName).each(function(pair){var name=pair[0]
var targets=pair[1]
anchorsByName[name]=targets.inject([],function(anchors,target){var json=target.toJson()
var anchor=targetAnchorByJson[json]
if(!anchor){anchor=targetAnchorByJson[json]="t"+nextAnchor++
targetByAnchor[anchor]=target}
anchors.push(anchor)
return anchors})})
return{targetByAnchor:targetByAnchor,anchorsByName:anchorsByName}}
Log4Js.fromConfig=function(config){Claim.isObject(config,"Log4Js.fromConfig.config")
Claim.isObject(config.anchorsByName,"Log4Js.fromConfig.config.anchorsByName")
Claim.isObject(config.targetByAnchor,"Log4Js.fromConfig.config.targetByAnchor")
var targetsByName=$H(config.anchorsByName).inject({},function(targetsByName,pair){var name=pair[0]
var anchors=pair[1]
targetsByName[name]=$A(anchors).inject([],function(targets,anchor){targets.push(config.targetByAnchor[anchor])
return targets})
return targetsByName})
Log4Js.targetsByName=targetsByName
Log4Js.configVersion++}
Log4Js.pop=function(conf){if(!conf||typeof(conf)!='object'){conf={anchorsByName:{"*":["t1"],Claim:["t2"]},targetByAnchor:{t1:new Log4Js.PopupTarget(Log4Js.ALL,"log4js-%U-%T",true),t2:new Log4Js.PopupTarget(Log4Js.FATAL,"log4js-%U-%T",true)}};}
Cookies.set("log4js.config",conf,{});this.fromConfig(conf);}
Log4Js.add=function(sClassName,enLEVEL){Claim.isString(sClassName,"Log4Js.add(sClassName, enLEVEL) - sClassName must be a string");Claim.isString(enLEVEL,"Log4Js.add(sClassName, enLEVEL) - enLEVEL must Log Level ALL, DEBUG, WARN, ...");var iLevel=this[enLEVEL.toUpperCase()];Claim.isNumber(iLevel,"Log4Js.add(sClassName, enLEVEL) - Log4Js."+enLEVEL+" is not a valid warn-level");Claim.check(iLevel>=0&&iLevel<=6,"0 <= iLevel <= 6","Log4Js.add(sClassName, enLEVEL) - Log4Js[enLEVEL must be between 0 to 6");var conf=this.toConfig();conf.targetByAnchor.newAnchor=new Log4Js.PopupTarget(iLevel,"log4js-%U-%T",true)
conf.anchorsByName[sClassName]=["newAnchor"];this.pop(conf);}
Log4Js.clear=function(sClassName){Claim.isString(sClassName,"Log4Js.clear(sClassName) - sClassName must be a string");var conf=this.toConfig();delete conf.anchorsByName[sClassName];this.pop(conf);}
Log4Js.stop=function(){var conf={anchorsByName:{"*":["t1"]},targetByAnchor:{t1:new Log4Js.PopupTarget(Log4Js.NONE,"log4js-%U-%T",true)}};Cookies.set("log4js.config",conf,{});this.fromConfig(conf);}
Log4Js.preLoad=function(){var config=Cookies.get("log4js.config")
if(config)
Log4Js.fromConfig(config)
PreLoad.log.debug("Start pre-load")}
PreLoad.actions.push(Log4Js.preLoad)
Log4Js.Logger=Class.create()
Log4Js.Logger.prototype={}
Log4Js.Logger.prototype.initialize=function(name){Claim.isString(name,"Log4Js.Logger.name")
this.name=name
this.configVersion=-1}
Log4Js.Logger.prototype.debug=function(text){this.emit(Log4Js.DEBUG,text)}
Log4Js.Logger.prototype.info=function(text){this.emit(Log4Js.INFO,text)}
Log4Js.Logger.prototype.warn=function(text){this.emit(Log4Js.WARN,text)}
Log4Js.Logger.prototype.error=function(text){this.emit(Log4Js.ERROR,text)}
Log4Js.Logger.prototype.fatal=function(text){this.emit(Log4Js.FATAL,text)}
Log4Js.Logger.prototype.emit=function(level,text){if(this.configVersion<Log4Js.configVersion){this.targets=Log4Js.findTargets(this.name)
this.configVersion=Log4Js.configVersion}
if(this.targets.length>0){Claim.isNumber(level,"Log4Js.Logger.emit.level")
Claim.isTrue(Log4Js.DEBUG<=level&&level<=Log4Js.FATAL)
Claim.isScalar(text,"text")
var event={time:new Date().toText(),level:level,name:this.name,text:text,url:location.href}
this.targets.each(function(target){target.emit(event)})}}
Log4Js.AbstractTarget=function(){}
Log4Js.AbstractTarget.prototype={}
Log4Js.AbstractTarget.prototype.emit=function(event){Claim.isObject(event,"Log4Js.AbstractTarget.emit.event")
Claim.isNumber(event.level,"Log4Js.AbstractTarget.emit.event.level")
if(event.level>=this.level)
this._emit(event)}
Log4Js.AlertTarget=Class.create()
Log4Js.AlertTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.AlertTarget.prototype.initialize=function(level){Claim.isNumber(level,"Log4Js.AlertTarget.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.AlertTarget.level")
this.level=level}
Log4Js.AlertTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.AlertTarget._emit.event")
alert(event.time+" "+event.url+" "+Log4Js.levelNames[event.level]+" "+event.name+":\n"+event.text)}
Log4Js.AlertTarget.prototype.toJson=function(){return"new Log4Js.AlertTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+")"}
Log4Js.TableTarget=Class.create()
Log4Js.TableTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.TableTarget.prototype.backLog=[]
Log4Js.TableTarget.prototype.initialize=function(level,table,isLastOnTop){Claim.isNumber(level,"Log4Js.TableTarget.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.TableTarget.level")
Claim.isObject(table,"Log4Js.TableTarget.table")
Claim.isBoolean(isLastOnTop,"Log4Js.TableTarget.isLastOnTop")
this.level=level
this.isLastOnTop=isLastOnTop
if(typeof(table)=="string"){this.name=table
this.table=$(table)}
else{this.name=table.id
this.table=table}}
Log4Js.TableTarget.prototype.initTable=function(event){Claim.isObject(event,"Log4Js.TableTarget.initTable.event")
this.table=this.table||$(this.name)
if(!this.table)
return false
if(this.table.rows.length>0)
return true
var row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML="Time"
row.insertCell(-1).innerHTML="Level"
row.insertCell(-1).innerHTML="Name"
row.insertCell(-1).innerHTML="Text"
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML="<hr />"
row.insertCell(-1).innerHTML="LOG4JS"
row.insertCell(-1).innerHTML=event.url
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML="<hr />"
row.insertCell(-1).innerHTML="LOG4JS"
row.insertCell(-1).innerHTML=event.url
row=this.table.insertRow(-1)
row.insertCell(-1).innerHTML="Time"
row.insertCell(-1).innerHTML="Level"
row.insertCell(-1).innerHTML="Name"
row.insertCell(-1).innerHTML="Text"
return true}
Log4Js.TableTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.TableTarget._emit.event")
this.backLog.push(event)
if(!this.initTable(event))
return
while(this.backLog.length>0){var event=this.backLog.shift()
var row=this.table.insertRow(this.isLastOnTop?2:-1)
row.insertCell(-1).innerHTML=event.time
row.insertCell(-1).innerHTML=Log4Js.levelNames[event.level]
row.insertCell(-1).innerHTML=event.name
row.insertCell(-1).innerHTML=event.text}}
Log4Js.TableTarget.prototype.toJson=function(){return"new Log4Js.TableTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+","+Cookies.toJson(this.name)+","+Cookies.toJson(this.isLastOnTop)+")"}
Log4Js.PopupTarget=Class.create()
Log4Js.PopupTarget.prototype=new Log4Js.AbstractTarget()
Log4Js.PopupTarget.windows={}
Log4Js.PopupTarget.prototype.initialize=function(level,name,isLastOnTop){Claim.isNumber(level,"Log4Js.Prototype.level")
Claim.isTrue(Log4Js.ALL<=level&&level<=Log4Js.NONE,"Log4Js.Prototype.level")
Claim.isString(name,"Log4Js.Prototype.name")
Claim.isBoolean(isLastOnTop,"Log4Js.Prototype.isLastOnTop")
this.name=name
name=name.replace(/%T/,new Date().toText())
name=name.replace(/%U/,location.href)
name=name.replace(/\W+/g,'_')
name=name.replace(/[_]+/g,'_')
this.windowName=name
this.level=level
this.isLastOnTop=isLastOnTop}
Log4Js.PopupTarget.prototype._emit=function(event){Claim.isObject(event,"Log4Js.Prototype._emit.event")
if(!this.window||this.window.closed){this.window=Log4Js.PopupTarget.windows[name]
if(!this.window||this.window.closed){this.window=Log4Js.PopupTarget.windows[name]=window.open("",this.windowName,'width=640,height=480,'+'scrollbars=1,status=0,toolbars=0,resizable=1')
if(!this.window||this.window.closed){alert("A popup window manager is blocking the logger "+"popup display.\n"+"You need to allow popups to see the logged events.")
this.emit=function(event){}
return}
this.window.document.writeln("<table id='log-table'></table>")
this.window.document.close()}
this.table=this.window.document.getElementById("log-table")
this.target=new Log4Js.TableTarget(this.level,this.table,this.isLastOnTop)}
this.target._emit(event)}
Log4Js.PopupTarget.prototype.toJson=function(){return"new Log4Js.PopupTarget(Log4Js."+Log4Js.levelNames[this.level].toUpperCase()+","+Cookies.toJson(this.name)+","+Cookies.toJson(this.isLastOnTop)+")"}
var Clearance={}
Clearance.MEMBER=0;Clearance.GUEST=1;Clearance.levelNames=["Anonymnous","Unclassified","Restricted","Confidential"]
Clearance.ANONYMOUS=0
Clearance.UNCLASSIFIED=1
Clearance.RESTRICTED=2
Clearance.CONFIDENTIAL=3
Clearance.level=undefined
Clearance.userId=undefined
Clearance.isLevel=function(level){return Clearance.level==level}
Clearance.hasLevel=function(level){Claim.isNumber(level,"Clearance.hasLevel.level")
Claim.isTrue(0<=level&&level<=Clearance.CONFIDENTIAL,"Clearance.hasLevel.level")
if(Clearance.hasLoginType()==true){return Clearance.level>=level}return false;}
Clearance.requireLevel=function(requiredLevel,loginUrl,urlParam){Claim.isNumber(requiredLevel,"Clearance.requireLevel.requiredLevel")
var minLevel=Clearance.ANONYMOUS
var maxLevel=Url.here.protocol=="https"?Clearance.CONFIDENTIAL:Clearance.UNCLASSIFIED
Claim.isTrue(minLevel<=requiredLevel&&requiredLevel<=maxLevel,"Clearance.requireLevel.requiredLevel")
Claim.isString(loginUrl,"Clearance.requireLevel.loginUrl")
Claim.isString(urlParam,"Clearance.requireLevel.urlParam")
Clearance.log.debug("Required: "+requiredLevel+" level: "+Clearance.level)
if(Clearance.level<requiredLevel){var url=Url.appendParamValue(loginUrl,urlParam,location.href)
Clearance.log.info("Redirect to "+url)
location=url}}
Clearance.isUnclassified=function(){return Clearance.isLevel(Clearance.UNCLASSIFIED)}
Clearance.hasUnclassified=function(){return Clearance.hasLevel(Clearance.UNCLASSIFIED)}
Clearance.isGuest=function(){var currentLoginType=Clearance.loginType();if(currentLoginType){if(currentLoginType==Clearance.GUEST)
return true;return false;}}
Clearance.isMember=function(){var currentLoginType=Clearance.loginType();if(currentLoginType){if(currentLoginType==Clearance.MEMBER)
return true;return false;}}
Clearance.hasLoginType=function(){if(Clearance.loginType())
return true;return false;}
Clearance.loginType=function(){var unclCookie=Cookies.get(Clearance.cookieName(Clearance.UNCLASSIFIED,true));if(unclCookie){var cookieParams=unclCookie.en.toQueryParams()
if(cookieParams["LT"])
return cookieParams["LT"];}
return null}
Clearance.refresh=function(){Cookies.preLoad();Clearance.preLoad();}
Clearance.load=function(sessionToken){var sessionQuerystring=sessionToken.replace(/^[^?]*\??/,'');if(sessionQuerystring.length==0)
sessionQuerystring=sessionToken;Url.here.params=sessionQuerystring.split("&").inject({},function(params,paramValue){pair=paramValue.split("=")
params[pair[0]]=unescape(pair[1])
return params})
Clearance.refresh();}
Clearance.requireUnclassified=function(loginUrl,param){Clearance.requireLevel(Clearance.UNCLASSIFIED,loginUrl,param)}
Clearance.isRestricted=function(){return Clearance.isLevel(Clearance.RESTRICTED)}
Clearance.hasRestricted=function(){return Clearance.hasLevel(Clearance.RESTRICTED)},Clearance.requireRestricted=function(loginUrl,param){Clearance.requireLevel(Clearance.RESTRICTED,loginUrl,param)}
Clearance.isConfidential=function(){return Clearance.isLevel(Clearance.CONFIDENTIAL)}
Clearance.hasConfidential=function(){return Clearance.hasLevel(Clearance.CONFIDENTIAL)}
Clearance.requireConfidential=function(loginUrl,param){Clearance.requireLevel(Clearance.CONFIDENTIAL,loginUrl,param)}
Clearance.getExpiration=function(expiration){if(typeof(expiration)!="number")
return
var dateExpiration=new Date(expiration)
var dateNow=new Date()
shouldbeexpired=Number(dateExpiration.getTime())-Number(dateNow.getTime());if(shouldbeexpired>0)
return shouldbeexpired
else
return}
Clearance.getParams=function(level){Claim.isNumber(level,"Clearance.getEncrypted.level")
Claim.isTrue(level>=Clearance.UNCLASSIFIED&&level<=Clearance.CONFIDENTIAL,"Clearance.getEncrypted.level")
if(!Clearance.hasLevel(level))
return null
var params={}
params.ux=Clearance.getExpiration(Clearance.params.ux)
if(params.ux){params.un=Clearance.params.un
params.ui=Clearance.params.ui}else{Clearance.level=0;return null}
if(level>=Clearance.RESTRICTED){params.rx=Clearance.getExpiration(Clearance.params.rx)
if(params.rx)
params.rn=Clearance.params.rn}
if(level>=Clearance.CONFIDENTIAL){params.cx=Clearance.getExpiration(Clearance.params.cx)
if(params.cx)
params.cn=Clearance.params.cn}
return params}
Clearance.getAllLevelParams=function(){var params={}
for(level=1;level<=3;level=level+1){Object.extend(params,Clearance.getParams(level))}
return params;}
Clearance.getMagic=function(level){params=Clearance.getParams(level)
if(params)
return Url.appendParams("",params)
return null}
Clearance.prefix=["Oberon1.A.","Oberon1.U.","Oberon1.R.","Oberon1.C."],Clearance.cookieName=function(level,isTimed){Claim.isNumber(level,"Clearance.cookieName.level")
Claim.isTrue(level>=Clearance.ANONYMOUS&&level<=Clearance.CONFIDENTIAL,"Clearance.cookieName.level")
Claim.isBoolean(isTimed,"Clearance.cookieName.isTimed")
if(level>Clearance.UNCLASSIFIED)
return Clearance.prefix[level]+(isTimed?"T":"S")
else
return Clearance.prefix[level]}
Clearance.setCookies=function(level,userId,encrypted,expires){Claim.isNumber(level,"Clearance.setCookies.level")
Claim.isTrue(level>=Clearance.ANONYMOUS&&level<=Clearance.CONFIDENTIAL,"Clearance.setCookies.level")
if(level!=Clearance.ANONYMOUS)
Claim.isString(userId,"Clearance.setCookies.userId")
Claim.isString(encrypted,"Clearance.setCookies.encrypted")
var value={ui:userId,en:encrypted}
if(expires){value.ex=expires
var date=new Date()
date.setSeconds(date.getSeconds()+Math.round(expires/1000))
Cookies.set(Clearance.cookieName(level,true),value,{expires:date.toUTCString()})
if(level>Clearance.UNCLASSIFIED){Cookies.set(Clearance.cookieName(level,false),value,{expires:undefined})}}
else{Claim.isTrue(level==Clearance.UNCLASSIFIED||level==Clearance.ANONYMOUS,"Clearance.setCookies.level")
Cookies.set(Clearance.cookieName(level,true),value,{expires:undefined})}}
Clearance.clearCookies=function(level){Claim.isNumber(level,"Clearance.clearCookies.level")
Claim.isTrue(level>=Clearance.UNCLASSIFIED&&level<=Clearance.CONFIDENTIAL,"Clearance.clearCookies.level")
Cookies.clear(Clearance.cookieName(level,false),{})
Cookies.clear(Clearance.cookieName(level,true),{})}
Clearance.forget=function(url){Clearance.log.debug("Forget user")
Clearance.clearCookies(Clearance.UNCLASSIFIED)
Clearance.clearCookies(Clearance.RESTRICTED)
Clearance.clearCookies(Clearance.CONFIDENTIAL)
var url=Url.appendParamValue(url,"ui","none")
Clearance.log.info("Redirect to "+url)
location=url}
Clearance.params={},Clearance.preLoad=function(){Clearance.urlParamsToCookies()
Clearance.level=Clearance.ANONYMOUS
Clearance.log.debug("Achieved Anonymnous")
if(Clearance.processCookies(Clearance.UNCLASSIFIED,"un","ux"))
if(Clearance.processCookies(Clearance.RESTRICTED,"rn","rx"))
Clearance.processCookies(Clearance.CONFIDENTIAL,"cn","cx")}
Clearance.urlParamsToCookies=function(){Clearance.log=new Log4Js.Logger("Clearance")
Clearance.level=Clearance.ANONYMOUS
Clearance.log.debug("Try to access current URL clearance parameters")
if(Url.here.params.an){Clearance.setCookies(Clearance.ANONYMOUS,Url.here.params.ui,Url.here.params.an);}
if(Url.here.params.ui){if(Url.here.params.un&&Url.here.params.ux)
Clearance.setCookies(Clearance.UNCLASSIFIED,Url.here.params.ui,Url.here.params.un,((typeof(Url.here.params.ux)=="number")?(Url.here.params.ux*1000.0):Url.here.params.ux))
else if(Url.here.params.un)
Clearance.setCookies(Clearance.UNCLASSIFIED,Url.here.params.ui,Url.here.params.un,null)
else
Clearance.clearCookies(Clearance.UNCLASSIFIED)}
Clearance.log.debug("Strip clearance params from URL")
delete(Url.here.params["ui"])
delete(Url.here.params["un"])
delete(Url.here.params["ux"])
delete(Url.here.params["rn"])
delete(Url.here.params["rx"])
delete(Url.here.params["cn"])
delete(Url.here.params["cx"])
delete(Url.here.params["an"])}
Clearance.processCookies=function(level,en,ex){Claim.isNumber(level,"Clearance.processCookies.level")
Claim.isTrue(level>Clearance.level&&level<=Clearance.CONFIDENTIAL,"Clearance.processCookies.level")
Clearance.log.debug("Process "+Clearance.prefix[level]+" cookies")
var sessionName=Clearance.cookieName(level,false)
var timedName=Clearance.cookieName(level,true)
var session=Cookies.get(sessionName)
var timed=Cookies.get(timedName)
if(!session){Clearance.log.debug("No "+sessionName+" cookie => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed){Clearance.log.debug("No "+timedName+" cookie => "+Clearance.levelNames[Clearance.level])
return false}
if(!session.ui){Clearance.log.debug("No "+sessionName+".ui => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed.ui){Clearance.log.debug("No "+timedName+".ui => "+Clearance.levelNames[Clearance.level])
return false}
if(session.ui!=timed.ui){Clearance.log.debug("Mismatch {"+sessionName+","+timedName+"}.ui => "+Clearance.levelNames[Clearance.level])
return false}
if(!session.en){Clearance.log.debug("No "+sessionName+".en => "+Clearance.levelNames[Clearance.level])
return false}
if(!timed.en){Clearance.log.debug("No "+timedName+".en => "+Clearance.levelNames[Clearance.level])
return false}
if(session.en!=timed.en){Clearance.log.debug("Mismatch {"+sessionName+","+timedName+"}.en => "+Clearance.levelNames[Clearance.level])
return false}
if(level>Clearance.UNCLASSIFIED){if(session.ui!=Clearance.userId){Clearance.log.debug("Mismatch "+sessionName+".ui => "+Clearance.levelNames[Clearance.level])
return false}}
else{Clearance.params.ui=session.ui
Clearance.userId=session.ui}
Clearance.params[en]=session.en
var dateExpired=new Date()
var millExp=timed.ex?timed.ex:1
Clearance.params[ex]=Number(dateExpired.getTime())+Number(millExp)
Clearance.level=level
Clearance.log.debug("Achieved "+Clearance.levelNames[Clearance.level])
return true}
PreLoad.actions.push(Clearance.preLoad)
var Jast={}
Jast.timeout=20000
Jast.pendingRequestByUrl={}
Jast.pendingRequestById={}
Jast.isPreLoad=true
Jast.nextRequestId=0
Jast.activeRequestCount=0
Jast.response=function(id,isOk,result,caching){Claim.isNumber(id,"Jast.response.id")
Claim.isBoolean(isOk,"Jast.response.isOk")
request=Jast.pendingRequestById[id]
if(!request){Jast.Request.log.warn("Unknown load request id: "+id+" isOk: "+isOk)
return}
request.loaded(isOk,result,caching)}
Jast.clearCache=function(){$H(Cookies.valueByName).keys.each(function(name){if(name.substr(0,5)=="Jast.")
Cookies.clear(name)})}
Jast.Request=Class.create()
Jast.Request.prototype={}
Jast.Request.stateNames=["Uninitialized","Loading","Loaded","Interactive","Complete"]
Jast.Request.UNINITIALIZED=0
Jast.Request.LOADING=1
Jast.Request.LOADED=2
Jast.Request.INTERACTIVE=3
Jast.Request.COMPLETE=4
Jast.Request.statusNames=["Create","Success","Failure","Timeout"]
Jast.Request.CREATE=0
Jast.Request.SUCCESS=1
Jast.Request.FAILURE=2
Jast.Request.TIMEOUT=3
Jast.Request.preLoad=function(){Jast.Request.log=new Log4Js.Logger("Jast.Request")}
PreLoad.actions.push(Jast.Request.preLoad)
Jast.Request.onLoad=function(){Jast.isPreLoad=false
var length=Jast.nextRequestId
Jast.Request.log.debug("Complete "+length+" pre-load request(s)")
length.times(function(id){request=Jast.pendingRequestById[id]
if(request&&!request.uses)
if(request.result)
request.complete()
else{if(request.options.timeout>0){request.setTimeout=setTimeout(request.timedOut.bind(request),request.options.timeout)
Jast.Request.log.debug("Reset timeout for Preloaded Request. Request id: "+request.id+" setTimeout: "+request.setTimeout)}}})}
Event.observe(window,"load",Jast.Request.onLoad)
Jast.Request.prototype.initialize=function(url,options){Claim.isString(url,"Jast.Request.url")
this.url=url
this.options={timeout:Jast.timeout,toReuse:true,unimportant:[]}
Object.extend(this.options,options||{})
var parsed=Url.parse(url)
$A(this.options.unimportant).each(function(param){delete(parsed.params[param])})
$A(["un","ux","rn","rx","cn","cx"]).each(function(param){delete(parsed.params[param])})
this.cacheId=Url.appendParams(parsed.base,parsed.params)
this.cacheId="Just."+this.cacheId.replace(/[=;]/g,'_')
this.usedBy=[]
this.id=Jast.nextRequestId++
this.state=-1
this.status=Jast.Request.CREATE
Jast.Request.log.debug("Create request id: "+this.id+" url: "+this.url+" unimportant: "+Cookies.toJson(this.options.unimportant)+" cacheId: "+this.cacheId+" toReuse: "+this.options.toReuse+" timeout: "+this.options.timeout)
this.advanceTo(Jast.Request.UNINITIALIZED)
this.dispatch("onCreate")
var name
var cached=Cookies.get(name=this.cacheId+".T")||Cookies.get(name=this.cacheId+".S")
if(cached){Jast.Request.log.debug("Fetch request id: "+this.id+" from cookie name: "+name)
if(Jast.isPreLoad){Jast.pendingRequestByUrl[this.cacheId]=this
Jast.pendingRequestById[this.id]=this}
this.loaded(cached.isOk,cached.result,undefined)
return}
var request=Jast.pendingRequestByUrl[this.cacheId]
if(request&&this.options.toReuse&&request.options.toReuse&&request.state<=Jast.Request.LOADED){Jast.Request.log.debug("Merge request id: "+this.id+" with request id: "+request.id+" state: "+Jast.Request.stateNames[request.state]+" status: "+Jast.Request.statusNames[request.status])
this.uses=request
this.advanceTo(request.state)
this.result=request.result
this.status=request.status
request.usedBy.push(this)}
else{this.makeRequest()}}
Jast.Request.prototype.makeRequest=function(){this.fullUrl=Url.appendParamValue(this.url,"jastId",this.id)
Jast.Request.log.info("Make request id: "+this.id+" fullUrl: "+this.fullUrl)
this.scriptId="jast-script-"+this.id
Jast.pendingRequestByUrl[this.cacheId]=this
Jast.pendingRequestById[this.id]=this
var isHeadNotExists=(0==document.getElementsByTagName("HEAD").length);if(Jast.isPreLoad&&isHeadNotExists){Jast.Request.log.debug("Write script id: "+this.scriptId+" for request id: "+this.id)
document.write("<"+"script")
document.write(' id="'+this.scriptId+'"')
document.write(' type="text/javascript"')
document.write(' src="'+this.fullUrl+'"')
document.write("></"+"script"+">")}
else{Jast.Request.log.debug("Create script id: "+this.scriptId+" for request id: "+this.id)
script=document.createElement("script")
script.setAttribute("id",this.scriptId)
script.setAttribute("type","text/javascript")
script.setAttribute("src",this.fullUrl)
$T("head").appendChild(script)
if(this.options.timeout>0){this.setTimeout=setTimeout(this.timedOut.bind(this),this.options.timeout)
Jast.Request.log.debug("Request id: "+this.id+" setTimeout: "+this.setTimeout)}}
this.advanceTo(Jast.Request.LOADING)}
Jast.Request.prototype.loaded=function(isOk,result,caching){Claim.isBoolean(isOk,"Jast.Request.loaded.isOk")
if(this.state>=Jast.Request.LOADED){Jast.Request.log.warn("Reloaded request id: "+this.id+" isOk: "+isOk)
return}
Jast.Request.log.info("Loaded request id: "+this.id+" isOk: "+isOk)
if(this.setTimeout){clearTimeout(this.setTimeout)
Jast.Request.log.debug("Request id: "+this.id+" clearTimeout: "+this.setTimeout)
delete(this["setTimeout"])}
if(caching&&caching.expires||session){var value={isOk:isOk,result:result}
var session=caching.session
delete(caching["session"])
if(caching.expires){Jast.Request.log.debug("Cache in: "+this.cacheId+".T for "+caching.expires+"ms")
Cookies.set(this.cacheId+".T",value,caching)}
delete(caching["expires"])
if(session){Jast.Request.log.debug("Cache in: "+this.cacheId+".S for rest of session")
Cookies.set(this.cacheId+".S",value,caching)}}
this.advanceTo(Jast.Request.LOADED)
this.result=result
this.status=isOk?Jast.Request.SUCCESS:Jast.Request.FAILURE
var status=this.status
this.usedBy.each(function(request){request.result=result
request.status=status})
if(!Jast.isPreLoad)
this.complete()}
Jast.Request.prototype.timedOut=function(){if(this.state>=Jast.Request.LOADED){Jast.Request.log.warn("Retimedout request id: "+this.id)
return}
Jast.Request.log.info("Timedout request id: "+this.id)
this.advanceTo(Jast.Request.LOADED)
this.status=Jast.Request.TIMEOUT
this.usedBy.each(function(request){request.status=Jast.Request.TIMEOUT})
this.complete()}
Jast.Request.prototype.complete=function(){Jast.Request.log.debug("Complete request id: "+this.id)
this.advanceTo(Jast.Request.INTERACTIVE)
this.dispatchUsed("on"+Jast.Request.statusNames[this.status])
this.advanceTo(Jast.Request.COMPLETE)
delete(Jast.pendingRequestByUrl[this.cacheId])
delete(Jast.pendingRequestById[this.id])
this.usedBy.each(function(request){delete(Jast.pendingRequestById[request.id])})
if(this.scriptId){Jast.Request.log.debug("Remove script id: "+this.scriptId+" for request id: "+this.id)
var script=$I(this.scriptId)
script.parentNode.removeChild(script)}}
Jast.Request.prototype.advanceTo=function(state){Claim.isNumber(state,"Jast.Remove.advanceTo.state")
Claim.isTrue(0<=state&&state<=Jast.Request.COMPLETE,"Jast.Remove.advanceTo.state")
while(this.state<state){var nextState=this.state++
this.dispatch("on"+Jast.Request.stateNames[this.state])
this.usedBy.each(function(request){request.advanceTo(nextState)})}}
Jast.Request.prototype.dispatch=function(event){Claim.isString(event,"Jast.Request.dispatch.event")
Jast.Request.log.debug("Dispatch event: "+event+" for request id: "+this.id)
if(this.options[event]){try{this.options[event](this)}
catch(e){Jast.Request.log.warn("Exception in "+event+" for request id: "+request.id+" exception: "+e.message);}}
Jast.Responders.dispatch(event,this)}
Jast.Request.prototype.dispatchUsed=function(event){Claim.isString(event,"Jast.Responders.dispatchUsed.event")
Jast.Request.log.debug("DispatchUsed event: "+event+" for request id: "+this.id)
this.dispatch(event)
this.usedBy.each(function(request){request.dispatchUsed(event)})}
Jast.Responders={}
Jast.Responders.responders=[]
Jast.Responders._each=function(iterator){Claim.isObject(iterator,"Jast.Responders._each.iterator")
this.responders._each(iterator)}
Jast.Responders.register=function(responderToAdd){Claim.isObject(responderToAdd,"Jast.Request.register.responderToAdd")
if(!this.include(responderToAdd))
this.responders.push(responderToAdd)}
Jast.Responders.unregister=function(responderToRemove){Claim.isObject(responderToRemove,"Jast.Responders.unregister.responderToRemove")
this.responders=this.responders.without(responderToRemove)}
Jast.Responders.dispatch=function(event,request){Claim.isString(event,"Jast.Responders.dispatch.event")
Claim.isObject(request,"Jast.Responders.dispatch.request")
Claim.isNumber(request.id,"Jast.Responders.dispatch.request.id")
this.log.debug("Dispatch event "+event+" for request id: "+request.id)
this.each(function(responder){if(responder[event]){try{responder[event](request)}
catch(e){this.log.warn(" Exception in "+event+" for request id: "+request.id+" exception: "+e.message);}}})}
Jast.Responders.preLoad=function(){Jast.Responders.log=new Log4Js.Logger("Jast.Responders")}
Object.extend(Jast.Responders,Enumerable)
PreLoad.actions.push(Jast.Responders.preLoad)
Jast.Responders.register({onCreate:function(){Jast.activeRequestCount++
Jast.Responders.log.debug("Active requests up to "+Jast.activeRequestCount)
Claim.isTrue(Jast.activeRequestCount>=1,"Jast.Responders.activeRequestCount")},onComplete:function(){Jast.activeRequestCount--
Jast.Responders.log.debug("Active requests down to "+Jast.activeRequestCount)
Claim.isTrue(Jast.activeRequestCount>=0,"Jast.Responders.activeRequestCount")}})
$A(PreLoad.actions).each(function(action){action()})//::: UserAccount 00:00:00.0312500

Object.extend(Class,{isInheritable:function(parentClassName){if(!parentClassName)return false;var parentClass;switch(typeof(parentClassName)){case"function":parentClass=parentClassName;parentClassName=parentClass.toString();return(!parantClassName.match(/function\(/gi)&&window[parentClassName]!=null&&window[parentClassName]==eval(parentClassName));case"string":try{parentClass=eval(parentClassName);}catch(ex){return false;}
return(parentClass!=null&&typeof(parentClass)=='function');default:return false;}},createSubclass:function(parentClassName){var parentClass;if(!Class.isInheritable(parentClassName))
throw"Illegal parameter for Class.createSubclass:"+parentClassName+". Class.create accepts a valid class-name as string, or a reference to the class if the class has a static override for the toString(), providing its class name as string.";if(typeof(parentClassName)=='string'){parentClass=eval(parentClassName);}else{parentClass=parentClass;parentClassName=parentClass.toString();}
Claim.isString(parentClassName,"Class.createSubclass(parentClassName)");Claim.check(typeof(parentClass)=='function'&&typeof(parentClass.prototype.initialize)=='function',"typeof(eval(parentClassName).prototype.initialize) == 'function'","Class.createSubclass(parentClassName): parentClassName is not inheritable using the createSubclass mechanizm.");var f=new Function(parentClassName+".prototype.initialize.apply(this, arguments);\n"
+"this.initialize.apply(this, arguments)");return f;}});Object.extend(Claim,{isFunction:function(object,comment)
{{Claim.check(typeof(object)=='function',"isFunction("+Claim.valueType(object)+")",comment)}}});Object.extend(Element,{log:new Log4Js.Logger("Element"),setText:function(e,sText){var tag=e.tagName.toUpperCase();switch(tag){case"INPUT":case"TEXTAREA":e.value=sText;break;case"SELECT":e.value=sText;break;default:try{e.innerHTML=sText;}catch(ex){try{if(typeof e.innerText=='undefined')
e.textContent=sText;else
e.innerText=sText;}catch(ex){this.log.error("Element.setText: failed to set to element the text: "+sText);}}}}});Serialize=function(obj){if(!obj)return'null';var str='';var psik='';for(each in obj){str+=psik;psik=",";str+=each+":"
switch(typeof(obj[each])){case'function':break;case'object':str+=Serialize(obj[each]);break;case'string':str+='"'+obj[each].replace(/\"/,"\"")+'"';break;default:str+=obj[each];}}
return"{"+str+"}";}
Function.prototype.insert=function(sCodeLine){var a=this.toString().split("{");a[1]="\n\t"+sCodeLine+a[1];return(eval("a = "+a.join("{")));}
Glossary={_terms:{},addPair:function addPair(key,value){this._terms[key]=value;},term:function term(key){return this._terms[key];}};Glossary.addPair('{JAST_REQUEST_TIMEOUT_DEF_MSG}','Problems connecting to the server.');Glossary.addPair('{JAST_REQUEST_REFUSED_DEF_MSG}','Server failes the request');function ask(){var s='';while(s!="STOP"){s=prompt('To close - enter "STOP"',s);if(s=="STOP")return;alert(eval(s));}}
function CreateHiddenInput(sName,sValue)
{var input=document.createElement("input");input.setAttribute("type","hidden");input.setAttribute("name",sName);input.setAttribute("value",sValue);return input;}
function PostIframeRequest(form,callback){var parts=window.location.hostname.split(".");document.domain=parts[parts.length-2]+"."+parts[parts.length-1];var remotingDiv=document.createElement("div");document.body.appendChild(remotingDiv);remotingDiv.id="remotingDiv";remotingDiv.innerHTML="<iframe name='remotingFrame' id='remotingFrame' style='border:0;width:0;height:0;'></iframe>";remotingDiv.iframe=document.getElementById('remotingFrame');remotingDiv.form=form;remotingDiv.form.setAttribute('target','remotingFrame');remotingDiv.form.target='remotingFrame';remotingDiv.appendChild(remotingDiv.form);remotingDiv.callback=callback;remotingDiv.form.submit();}
function InvokeCallback(returnStatus){try
{document.getElementById('remotingDiv').callback(returnStatus);}
catch(ex){}}
if(!window.UA)UA={};UA.UserUtils=Class.create();UA.UserUtils.prototype.Callback;UA.UserUtils.DoLogIn=function(tickInterval,numOfTicks,callback,paramsList){UA.UserUtils.prototype.Callback=callback;UserLogIn();UA.UserUtils.runPolling(tickInterval,numOfTicks,paramsList);}
UA.UserUtils.DoLogOut=function(callback){UserLogOut();}
UA.UserUtils.DoRegister=function(callback){UserRegister();}
UA.UserUtils.DoEndGameFlow=function(launcherObjects){EndGameFlow(launcherObjects);}
UA.UserUtils.runPolling=function(tickInterval,numOfTicks,paramsList){var funcStringBuilder="UA.UserUtils.polling("+tickInterval+","+numOfTicks;if(paramsList!=null&&paramsList!=undefined)
funcStringBuilder+=(",'"+paramsList+"')");else
funcStringBuilder+=")";setTimeout(funcStringBuilder,tickInterval);}
UA.UserUtils.polling=function(tickInterval,numOfTicks,paramsList){if(numOfTicks==0)
{UA.UserUtils.prototype.Callback("User is still Logged off.");return;}
if(!UA.User.prototype.IsLoggedOn())
{numOfTicks=numOfTicks-1;UA.UserUtils.runPolling(tickInterval,numOfTicks,paramsList);return;}
UA.UserUtils.InitializeUA(UA.UserUtils.prototype.Callback,paramsList);}
UA.UserUtils.InitializeUA=function(callback,paramsList){var methodsArr=new Array(UA.User.Methods.ISSUBSCRIBED,UA.User.Methods.GETUSER,UA.User.Methods.HASFREETRIAL,UA.User.Methods.GET_OBERON_CLIENT_USERID,UA.User.Methods.GET_PARTNER_PROGRAM_ID);if(paramsList==undefined)
paramsList=null;else
methodsArr.push(UA.User.Methods.ISAUTHORIZED);UA.UserUtils.prototype.Callback=callback;UA.User.prototype.GetData(methodsArr,paramsList,InitializeUASuccess,InitializeUAFail,InitializeUATimeout);}
function InitializeUASuccess(request){var user={};user.IsSuccessful=true;user.IsCompleted=true;if(request.IsAuthorized!=undefined){if(request.IsAuthorized.Status!="ACCOUNT_ERROR")
user.IsAuthorized=request.IsAuthorized.Data.isAuthorized;else
user.IsCompleted=false;}
if(request.IsSubscribed.Status!="ACCOUNT_ERROR")
user.IsSubscribed=(request.IsSubscribed.Data.isSubscribed=="True")?true:false;else
user.IsCompleted=false;if(request.HasFreeTrial.Status!="ACCOUNT_ERROR")
user.HasFreeTrial=(request.HasFreeTrial.Data.hasFreeTrial=="True")?true:false;else
user.IsCompleted=false;if(request.GetOberonClientUserId.Status!="ACCOUNT_ERROR")
user.OberonClientUserId=request.GetOberonClientUserId.Data.userGuid;else
user.IsCompleted=false;if(request.GetPartnerProgramId.Status!="ACCOUNT_ERROR")
user.PartnerProgramId=request.GetPartnerProgramId.Data.ProgramId;else
user.IsCompleted=false;if(request.GetBasicUserDetails.Status!="ACCOUNT_ERROR"){user.Nickname=request.GetBasicUserDetails.Data.Nickname;user.AvatarURL=request.GetBasicUserDetails.Data.AvatarURL;user.AvatarName=request.GetBasicUserDetails.Data.AvatarName;}
else
user.IsCompleted=false;UA.UserUtils.prototype.Callback(user);}
function InitializeUAFail(request){var user={};user.IsSuccessful=false;user.ErrorMessage=request.Status;UA.UserUtils.prototype.Callback(user);}
function InitializeUATimeout(request){var user={};user.IsSuccessful=false;user.ErrorMessage="Timeout";UA.UserUtils.prototype.Callback(user);}
UA.daysToDate=function(){var i,arr=[];for(i=0;i<arguments.length;i++)
arr[i]=new Date(arguments[i]*86400000);return arr;}
if(!window.UA)UA={};UA.Request=Class.create();UA.Request.STATUS_OK="OK";UA.Request.STATUS_GENERAL_ERROR="GENERAL_ERROR";UA.Request.toString=function(){return"UA.Request";}
UA.Request.AsPrototype=function(){return new UA.Request({},new Function());}
UA.Request.prototype.initialize=function(oBoss,fSuccessCallback,fFailCallback,fTimeoutCallback){this.log=Object.extend({},this.log);this.boss=this.log.boss=oBoss;this.successCallbacks=[];this.failiorCallbacks=[];this.timeoutCallbacks=[];Claim.isFunction(fSuccessCallback,"fSuccessCallback not provided in constructor for: "+this.toString());this.successCallbacks.push(fSuccessCallback);if(!fFailCallback)fFailCallback=oBoss.defaultOnFailior;if(typeof(fFailCallback)=='function')this.failiorCallbacks.push(fFailCallback);if(!fTimeoutCallback)fTimeoutCallback=oBoss.defaultOnTimeout;if(typeof(fTimeoutCallback)=='function')this.timeoutCallbacks.push(fTimeoutCallback);this.parameters={};}
UA.Request.prototype.log={emit:function(iLevel,sText){if(this.boss.log&&typeof(this.boss.log.emit)=='function'){this.boss.log.emit(iLevel,sText);}else
this.log.error("Cannot log for caller-object: "+this.boss.toString()+". Level: "+iLevel+", Message: "+sText);},fatal:function(sText){this.emit(Log4Js.FATAL,sText);},error:function(sText){this.emit(Log4Js.ERROR,sText);},warn:function(sText){this.emit(Log4Js.WARN,sText);},info:function(sText){this.emit(Log4Js.INFO,sText);},debug:function(sText){this.emit(Log4Js.DEBUG,sText);},log:new Log4Js.Logger("UA.Request.log"),boss:null,toString:function(){return"UA.Request.log";}}
UA.Request.prototype.url="UNSET-VALUE";UA.Request.prototype.isSent=false;UA.Request.prototype.dispatch=function request_Dispatch(retObj,arrHandlers,sEventName){if(arrHandlers.length==0){this.log.info(sEventName+' from '+this.toString()+' contained no handlers.');return;}
this.log.info('Dispatching '+sEventName+' from '+this.toString());var i,cb;for(i=0;i<arrHandlers.length;i++){cb=arrHandlers[i];if(cb&&typeof(cb)=='function'){cb.call(this.boss,retObj,this.parameters);}}}
UA.Request.prototype.toString=function(){return"[UA.Request("+this.id+")] of "+this.boss.toString();}
UA.Request.prototype.onSuccess=function(request){this.dispatch(request.result.Data,this.successCallbacks,"onSuccess");}
UA.Request.prototype.onFailure=function(request){this.log.error("Failed on request of: "+this.boss.toString()+" to url: "+this.urlWithParams+", Status: "+request.result.Status);this.dispatch(request.result,this.failiorCallbacks,"onFailure");}
UA.Request.prototype.onTimeout=function(request){this.log.error("Timeout on request of: "+this.boss.toString()+" to url: "+this.urlWithParams);this.dispatch(request,this.timeoutCallbacks,"onTimeout");}
UA.Request.prototype.apply=function(){if(this.isSent)
return;this.isSent=true;if(Clearance.level>=Clearance.UNCLASSIFIED)
this.parameters.cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);var url=Url.appendParams(this.url,this.parameters);this.urlWithParams=url;this._JAST=new Jast.Request(url,this);}
var EMPTY_RESULT="EMPTY_RESULT";window.OK="OK";if(!window.UA)UA={};UA.Game=Class.create();UA.Game.Requests=[];UA.Game.Methods={GAMEHIGHSCORES:"GetGameHighScores",USERSCORE:"GetUserScoreData",SESSION_CERT:"GetSingleSessionCert",GRACE_CERTS:"GetGraceCerts",GETGAMEEVERHIGHSCORES:"GetGameEverHighScores",GETGAMEWEEKLYHIGHSCORES:"GetGameWeeklyHighScores",GETGAMEHOURLYHIGHSCORES:"GetGameHourlyHighScores"}
UA.Game.Scores={};UA.Game.Scores.Periods={};UA.Game.Scores.Periods.WEEK="WEEK";UA.Game.Scores.Periods.HOUR="HOUR";UA.Game.Scores.Periods.EVER="EVER";UA.Game.Avatar={};UA.Game.Avatar.Size={};UA.Game.Avatar.Size.Size150x200="Size150x200";UA.Game.Avatar.Size.Size65x87="Size65x87";UA.Game.Avatar.Size.Size86x115="Size86x115";UA.Game.Avatar.Size.Size98x131="Size98x131";UA.Game.Avatar.Size.Size124x165="Size124x165";UA.Game.Avatar.Size.Size24x24="Size24x24";UA.Game.Avatar.Size.Size48x48="Size48x48";UA.Game.prototype.SEND_GAME_DATA_POST_URL="UNSET_VALUE";UA.Game.prototype.isCachedResponse=false;UA.Game.prototype.initialize=function(p_sku){this._prv={Sku:p_sku,scores:{}};this.log=new Log4Js.Logger(this.toString())
this.log.info("UA.Game("+p_sku+") initiated.");}
UA.Game.GameRequest=Class.createSubclass("UA.Request");UA.Game.GameRequest.prototype=UA.Request.AsPrototype()
UA.Game.GameRequest.prototype.initialize=function gameCtor(oGame,fSuccessCallback,fFailCallback,fTimeoutCallback){if(oGame.isCachedResponse){this.url=this.boss.USER_CACHED_HANDLER_URL}else{this.url=this.boss.PRIME_HANDLER_URL;}
this.parameters={Sku:oGame._prv.Sku,Period:"",Mode:""};}
UA.Game.prototype.getGameRequest=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.Game.GameRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.id=UA.Game.Requests.length;UA.Game.Requests[r.id]=r;return r;}
UA.Game.prototype.defaultOnFailior=null;UA.Game.prototype.defaultOnTimeout=null;UA.Game.prototype.toString=function gameToString(){return"[UI.Game("+this._prv.Sku+")]";}
UA.Game.prototype.GetUserHighScore=function(iMode,fSuccess,fFailure,fTimeout){if(iMode==null||isNaN(iMode))iMode=0;var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.Mode=iMode;r.parameters.MethodName=UA.Game.Methods.USERSCORE;r.apply();return r;}
UA.Game.prototype.GetSingleSessionCert=function(iMode,fSuccess,fFailure,fTimeout){var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.methodName=UA.User.Methods.GETDATA;r.parameters.MethodList=UA.Game.Methods.SESSION_CERT;r.apply();return r;}
UA.Game.prototype.GetGraceCerts=function(iMode,fSuccess,fFailure,fTimeout){var r=this.getGameRequest(fSuccess,fFailure,fTimeout);r.parameters.MethodName=UA.User.Methods.GETDATA;r.parameters.MethodList=UA.Game.Methods.GRACE_CERTS;r.apply();return r;}
UA.Game.prototype.GetGameHighScores=function(iMode,iAmount,ePeriod,fSuccess,fFail,fTimeout,eSize){var r=this.getGameRequest(fSuccess,fFail,fTimeout);r.parameters.Mode=iMode;r.parameters.TopScores=iAmount;r.parameters.Period=ePeriod;if(eSize==null||eSize==undefined)
delete r.parameters.Size;else
r.parameters.Size=eSize;r.parameters.MethodName=UA.Game.Methods.GAMEHIGHSCORES;r.apply();}
UA.Game.prototype.SendGameData=function(gameData,callback){var formSendGameData=document.createElement("form");formSendGameData.setAttribute("method","POST");formSendGameData.setAttribute("action",UA.Game.prototype.SEND_GAME_DATA_POST_URL);formSendGameData.appendChild(CreateHiddenInput("GameData",gameData));formSendGameData.appendChild(CreateHiddenInput("channel",UA.CHANNEL));PostIframeRequest(formSendGameData,callback);}
if(!window.UA)UA={};UA.StaticUser=Class.create();UA.User=Class.create();UA.User.Requests=[];UA.User.Methods={GETUSERDETAILS:"GetUserDetails",GETALLSCORES:"GetAllScores",GETUSERGAMES:"GetUserGames",HASFREETRIAL:"HasFreeTrial",ISSUBSCRIBED:"IsSubscribed",ISAUTHORIZED:"IsAuthorized",GETCURRENTPERMITTEDSKUS:"GetCurrentPermittedSKUs",GETPLANNEDPERMITTEDSKUS:"GetPlannedPermittedSKUs",GETPACKAGEEXPIRATIONUTCDATE:"GetPackageExpirationUTCDate",ISNICKNAMEAVAILABLE:"IsNicknameAvailable",GETAVATARXML:"GetAvatarXml",GETWARDROBEXML:"GetWardrobeXml",ISUSERNAMEAVAILABLE:"IsUsernameAvailable",ISCAPTCHAMATCH:"IsCaptchaMatch",GETUSERTOKENS:"GetUserTokens",GETUSERLOGINDAYS:"GetUserLoginDays",GETHIGHESTMEDAL:"GetHighestMedal",GETPERSONADATABYNICKNAME:"GetPersonaDataByNickname",GETDATA:"GetData",GET_OBERON_CLIENT_USERID:"GetOberonClientUserId",GET_PARTNER_PROGRAM_ID:"GetPartnerProgramId"}
UA.User.USER_HANDLER_URL="UNSET-VALUE";UA.User.POST_DATA_REDIRECT_URL="UNSET-VALUE";UA.User.LOGGED_IN="LoggedIn";UA.User.ANONYMOUS="Anonymous";UA.User.prototype.initialize=function(){this.log=new Log4Js.Logger("[UA.User]");this.params={};}
UA.User.prototype.IsLoggedOn=function(dontReloadCookies){if(dontReloadCookies==undefined||dontReloadCookies==false)
Clearance.refresh();return Clearance.hasUnclassified();}
UA.User.prototype.isGuest=function(dontReloadCookies){return(!UA.User.prototype.IsLoggedOn(dontReloadCookies)||Clearance.isGuest());}
UA.User.prototype.LogOff=function(){Clearance.forget(Url.relativeUrl({withClearanceParams:false,withHereParams:true}));}
UA.User.prototype.getCookieData=function(isEscaped){var cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);if(isEscaped)
cookieData=escape(cookieData);return cookieData;}
UA.User.UserRequest=Class.createSubclass("UA.Request");UA.User.UserRequest.prototype=UA.Request.AsPrototype()
UA.User.UserRequest.prototype.initialize=function userReqCTor(oUser,fSuccessCallback,fFailCallback,fTimeoutCallback){var curUrl=this.boss.USER_HANDLER_URL;if((oUser.params.isSecured)&&(curUrl.indexOf('HTTPS')==-1)&&(curUrl.indexOf('https')==-1))
curUrl=curUrl.replace('HTTP','HTTPS').replace('http','https');this.url=curUrl;delete oUser.params.isSecured;this.boss=this.log.boss=oUser;this.parameters=Object.extend({},this.boss.params);}
UA.User.UserRequest.prototype.addParameter=function(key,val){this.parameters[key]=val;}
UA.User.prototype.GetUserDetails=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERDETAILS;r.apply();}
UA.User.prototype.GetUserGames=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERGAMES;r.apply();}
UA.User.prototype.IsNicknameAvailable=function(sNickname,sLanguage,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.Nickname=sNickname;r.parameters.Language=sLanguage;r.parameters.methodName=UA.User.Methods.ISNICKNAMEAVAILABLE;r.apply();}
UA.User.prototype.IsUsernameAvailable=function(sUsername,sLanguage,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.Username=sUsername;r.parameters.Language=sLanguage;r.parameters.methodName=UA.User.Methods.ISUSERNAMEAVAILABLE;r.apply();}
UA.User.prototype.IsCaptchaMatch=function(sUsername,sRandomNum,sCaptchaUserText,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.username=sUsername;r.parameters.randomNum=sRandomNum;r.parameters.captchaUserText=sCaptchaUserText;r.parameters.methodName=UA.User.Methods.ISCAPTCHAMATCH;r.apply();}
UA.User.prototype.GetAvatarXml=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETAVATARXML;r.apply();}
UA.User.prototype.GetWardrobeXml=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETWARDROBEXML;r.apply();}
UA.User.prototype.GetUserTokens=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERTOKENS;r.apply();}
UA.User.prototype.GetUserLoginDays=function(fSuccessCallback,fFailCallback,fTimeoutCallback){if(this.isGuest()){var data={};data.Status="ACCOUNT_NOT_CREATED";fFailCallback(data);return;}
var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETUSERLOGINDAYS;r.apply();}
UA.User.prototype.GetHighestMedal=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETHIGHESTMEDAL;r.apply();}
UA.User.prototype.GetPersonaDataByNickname=function(nickname,avatarSize,sku,fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);if(nickname!=null)
r.parameters.Nickname=encodeURIComponent(nickname);r.parameters.AvatarSize=avatarSize;r.parameters.Sku=sku;r.parameters.methodName=UA.User.Methods.GETPERSONADATABYNICKNAME;r.apply();}
UA.User.prototype.GetPersonaData=function(fSuccessCallback,fFailCallback,fTimeoutCallback){var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETPERSONADATABYNICKNAME;r.apply();}
UA.User.prototype.GetCaptchaUrl=function(username,randomNum){var url;url=UA.User.prototype.CAPTCHA_IMAGE_URL;url=Url.appendParamValue(url,"username",username);url=Url.appendParamValue(url,"randomNum",randomNum);return url;}
UA.User.ReportAbuse=function(abusingNickname,description,utcTime,retURL){var formReportAbuse=document.createElement("form");formReportAbuse.setAttribute("method","POST");formReportAbuse.setAttribute("action",UA.User.POST_DATA_REDIRECT_URL);cookieData=Clearance.getMagic(Clearance.UNCLASSIFIED);formReportAbuse.appendChild(CreateHiddenInput("cookieData",cookieData));formReportAbuse.appendChild(CreateHiddenInput("abusingNickname",abusingNickname));formReportAbuse.appendChild(CreateHiddenInput("description",description));formReportAbuse.appendChild(CreateHiddenInput("utcTime",utcTime));formReportAbuse.appendChild(CreateHiddenInput("retUrl",retURL));formReportAbuse.appendChild(CreateHiddenInput("failUrl",Url.here.full));formReportAbuse.appendChild(CreateHiddenInput("methodName","ReportAbuse"));formReportAbuse.appendChild(CreateHiddenInput("channel",UA.CHANNEL));document.body.insertBefore(formReportAbuse,null);formReportAbuse.submit();}
UA.User.prototype.defaultOnFailior=null;UA.User.prototype.defaultOnTimeout=null;UA.User.prototype.toString=function(){return"[User: "+this.Nickname+"]";}
UA.User.prototype.getUserRequest=function(fSuccessCallback){var r=new UA.User.UserRequest(this,fSuccessCallback);r.id=UA.User.Requests.length;UA.User.Requests[r.id]=r;return r;}
UA.User.prototype.GetData=function(methodsArr,paramsList,fSuccessCallback,fFailCallback,fTimeoutCallback){if(methodsArr.length==0){return;}
var r=new UA.User.UserRequest(this,fSuccessCallback,fFailCallback,fTimeoutCallback);r.parameters.methodName=UA.User.Methods.GETDATA;var methodsStr=methodsArr[0];for(var i=1;i<methodsArr.length;i++)
{methodsStr+=(","+methodsArr[i]);}
r.parameters.MethodList=methodsStr;if(paramsList!=null)
{var paramsArr=paramsList.split(",");for(var i=0;i<paramsArr.length;i++)
{var kNv=paramsArr[i].split(":");r.addParameter(kNv[0],kNv[1]);}}
r.apply();}
UA.User.prototype.getCachedData=function(fSuccessCallback,fFailCallback,fTimeoutCallback)
{UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME='uaCachedData';this.getCachedData_OnSuccess=fSuccessCallback;this.log.debug('getCachedData - Searching for cached data in cookie.');this.cachedData=Cookies.get(UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME);if(this.cachedData!=undefined&&this.cachedData!=null)
{this.log.debug('getCachedData - Cached data found in cookie.');this.getCachedData_OnSuccess(this.cachedData);}
else
{this.log.debug('getCachedData - No cached data in cookie. Retreiving data from server.');this.GetUserDetails(UA.User.prototype.getCachedData_OnSuccess,fFailCallback,fTimeoutCallback);}}
UA.User.prototype.getCachedData_OnSuccess=function(userDetails)
{this.cachedData={};this.cachedData.gender=userDetails.gender;this.cachedData.birthYear=parseInt(userDetails.birthYear);this.cachedData.zipCode=parseInt(userDetails.zipCode);this.log.debug('getCachedData - Writing cached data in cookie.');Cookies.set(UA.User.prototype.getCachedData.CACHED_DATA_COOKIE_NAME,this.cachedData,{expires:Cookies.expiration(86400000)});this.getCachedData_OnSuccess(this.cachedData);}
UA.User.prototype.PostData=function(methodName){var form=document.createElement("form");form.setAttribute("method","POST");form.setAttribute("action",UA.User.POST_DATA_REDIRECT_URL);form.appendChild(CreateHiddenInput("methodName",methodName));if(this.params!=null)
for(var paramName in this.params)
form.appendChild(CreateHiddenInput(paramName,this.params[paramName]));document.body.insertBefore(form,null);form.submit();}//::: UserAccount Channel=11045473 00:00:00.0468750
try{
  UA.Game.prototype.PRIME_HANDLER_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/ProcessJAccount.ashx?channel=11045473';
  UA.Game.prototype.SEND_GAME_DATA_POST_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/SendGameData.ashx';
  UA.User.POST_DATA_REDIRECT_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/PostData.ashx';
  UA.User.prototype.USER_HANDLER_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/ProcessJAccount.ashx?channel=11045473';
  UA.User.prototype.USER_LOGIN_REDIRECT_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/LoginRedirect.ashx';
  UA.User.prototype.SAVE_AVATAR_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/SetAvatar.ashx';
  UA.User.prototype.GET_AVATAR_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/AvatarXML.ashx';
  UA.Game.prototype.USER_CACHED_HANDLER_URL = 'http://userassets.apizone.betaregion.oberon-media.com/UserAccount/Processing/3000/APP/ProcessJAccount.ashx?channel=11045473';
  UA.User.prototype.GET_CACHED_AVATAR_URL = 'http://userassets.apizone.betaregion.oberon-media.com/UserAccount/Processing/3000/APP/AvatarXML.ashx';
  UA.UserUtils.IFrameLoginURL = '';
  UA.CHANNEL = 11045473;
}
catch (e) {}
//::: GameCatalog Code 00:00:00.0625000

Function.prototype.getArgNamesArray=function(){try{return/function[^\(]*\(([^\)]*)\)/.exec(this.toString())[1].replace(/\s*/g,"").split(",");}catch(ex){return[];}}
Array.prototype.cut=function(iStart,iCount)
{var iEnd=undefined;if(iStart==undefined)iStart=0;iEnd=(iCount==undefined)?this.length:iStart+iCount;return this.slice(iStart,iEnd);}
Array.prototype.page=function(iPage,iItemsInPage)
{return this.cut(iPage*iItemsInPage,iItemsInPage);}
if(window.GameCatalog==null)
GameCatalog={};GameCatalog.PRODUCT_CODE_VARNAME="code";GameCatalog.LANGUAGE_VARNAME="lc";GameCatalog.CHANNEL_VARNAME="channel";GameCatalog.BILLING_CNTRY_VARNAME="BillingCountry";GameCatalog.LOBBY_VARNAME="lobby";GameCatalog.language="";GameCatalog.channelCode=-1;GameCatalog.baseBuyURL="";GameCatalog.baseGamePageURL="";GameCatalog.baseLobbyURL="";GameCatalog.billingCountry="";GameCatalog.millisPerDay=24*60*60*1000;GameCatalog.TagSkuLinks=function()
{this.initialize();var e,a=new Array()
for(e in this)a[e]=this[e];for(e=0;e<arguments.length;e++)a[e]=arguments[e];return a;}
GameCatalog.TagSkuLinks.prototype.initialize=function()
{this.dictionary={}}
GameCatalog.TagSkuLinks.prototype.byWeight=function(iStart,iCount,isForceSort)
{if(!this._byWeight||isForceSort)
{this._byWeight=this.concat().sort(function(a,b)
{return b.weight-a.weight;});}
return this._byWeight.cut(iStart,iCount);}
GameCatalog.TagSkuLinks.prototype.bySkuProperty=function(sSkuProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_sku_"+sSkuProp]||isForceSort){var orderVar=-1;if(isDescSort)
orderVar=1;this["_sku_"+sSkuProp]=this.concat().sort(function(a,b){if(b.sku[sSkuProp]==a.sku[sSkuProp])return 0;return(b.sku[sSkuProp]>a.sku[sSkuProp])?orderVar:(orderVar*(-1));});}
return this["_sku_"+sSkuProp].cut(iStart,iCount);}
GameCatalog.SkuTagLinks=function()
{this.initialize();var e,a=new Array()
for(e in this)a[e]=this[e];for(e=0;e<arguments.length;e++)a[e]=arguments[e];return a;}
GameCatalog.SkuTagLinks.prototype.initialize=GameCatalog.TagSkuLinks.prototype.initialize;GameCatalog.SkuTagLinks.prototype.byWeight=GameCatalog.TagSkuLinks.prototype.byWeight;GameCatalog.SkuTagLinks.prototype.byTagProperty=function(sTagProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_tag_"+sTagProp]||isForceSort){var orderVar=-1;if(isDescSort)
orderVar=1;var arr=this.concat().sort(function(a,b){if(b.tag[sTagProp]==a.tag[sTagProp])return 0;return(b.tag[sTagProp]>a.tag[sTagProp])?orderVar:(orderVar*(-1));});this["_tag_"+sTagProp]=arr;}
return this["_tag_"+sTagProp].cut(iStart,iCount);}
GameCatalog.Category=Class.create();GameCatalog.Category.prototype.initialize=function(code,name,internalName,categoryURL)
{var params=this.initialize.getArgNamesArray();for(var i=0;i<params.length;i++)
if(arguments[i]!==undefined)this[params[i]]=arguments[i];this.games={};this.games.All=[];this.games.All.bySkuProperty=GameCatalog.Game.All.bySkuProperty}
GameCatalog.Category.All=[];GameCatalog.Category.All.byCategoryProperty=function(sPropName,iStart,iCount,isForceSort){if(!this[0]||undefined===this[0][sPropName])
return this;if(!this["_"+sPropName]||isForceSort)
{this["_"+sPropName]=this.concat().sort(function(a,b)
{if(a[sPropName]==b[sPropName])return 0;return(a[sPropName]<b[sPropName])?-1:1;});}
return this["_"+sPropName].cut(iStart,iCount);}
GameCatalog.Category.ByCode={};GameCatalog.Game=Class.create();GameCatalog.Game.All=[];GameCatalog.Game.All.bySkuProperty=GameCatalog.Category.All.byCategoryProperty;GameCatalog.Game.All.dictionary={};GameCatalog.Game.All.BySku=GameCatalog.Game.All.dictionary;GameCatalog.Game.prototype.initialize=function(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
{if(typeof(arguments[0])=='object')arguments=arguments[0];var params=this.initialize.getArgNamesArray();for(var i=0;i<params.length;i++)
if(arguments[i]!==undefined)this[params[i]]=arguments[i];this['publishDate']=new Date(this['publishDate']*GameCatalog.millisPerDay);this['gamePageURL']=GameCatalog.Game.generateGamePageURL(this['productCode']);this['buyURL']=GameCatalog.Game.generateBuyURL(this['productCode']);this['lobbyURL']=GameCatalog.Game.generateLobbyURL(this['lobbyUID']);this.tagLinks=new GameCatalog.SkuTagLinks();}
GameCatalog.Game.prototype.getRecentGames=function(count){var isNew="isNew",pDate="publishDate";var a=GameCatalog.Game.All.bySkuProperty(isNew).concat();var arr=[];for(var i=a.length-1;i>=0;i--){if(a[i].isNew==false)
break;arr.push(a[i]);}
arr=arr.sort(function(a,b)
{if(a[pDate]==b[pDate])return 0;return(a[pDate]>b[pDate])?-1:1;});return arr.cut(0,count);}
GameCatalog.Game.addTag=function(oTag,dblWeight){if(this.tagLinks.dictionary[oTag.internalName])
return this.tagLinks.dictionary[oTag.internalName];return this.addTagLink({weight:dblWeight,tag:oTag,sku:this});}
GameCatalog.Game.prototype.addTagLink=function(oLink){if(!this.tagLinks.dictionary[oLink.tag.internalName])
this.tagLinks[this.tagLinks.length]=this.tagLinks.dictionary[oLink.tag.internalName]=oLink;if(!oLink.tag.skuLinks.dictionary[this.sku])
oLink.tag.addSkuLink(oLink);return oLink;}
GameCatalog.Tag=Class.create();GameCatalog.Tag.keyProperty="internalName";GameCatalog.Tag.propertyList="name, count";GameCatalog.Tag.prototype.initialize=function()
{if(typeof(arguments[0])=='object')args=arguments[0];this[GameCatalog.Tag.keyProperty]=args[0];var prop=GameCatalog.Tag.propertyList.replace(/\s*/g,"").split(",");this.tagPageURL=GameCatalog.URLs.tagPageURL.replace(/TAG_INTERNAL_NAME/g,args[0]);for(var i=0;i<prop.length;i++)
if(args[i+1]!==undefined)
{var val=args[i+1];if(prop[i].indexOf('Date')!=-1)
val=new Date(val*GameCatalog.millisPerDay)
this[prop[i]]=val;}
this.skuLinks=new GameCatalog.TagSkuLinks();}
GameCatalog.Tag.prototype.addSkuLink=function(oLink)
{if(!this.skuLinks.dictionary[oLink.sku.sku])
this.skuLinks.dictionary[oLink.sku.sku]=this.skuLinks[this.skuLinks.length]=oLink;if(!oLink.sku.tagLinks.dictionary[this.internalName])
oLink.sku.addTagLink(oLink);}
GameCatalog.Tag.prototype.addSku=function(sku,dblWeight){if(typeof(sku)=='number')sku=GameCatalog.Game.All.dictionary[sku];if(!sku)return;this.addSkuLink({weight:dblWeight,sku:sku,tag:this});}
GameCatalog.Tag.prototype.addSkus=function()
{var i=0;while(i<arguments.length){this.addSku(arguments[i++],arguments[i++]);}}
GameCatalog.Tag.prototype.isFullyLoaded=function()
{return this.count==this.skuLinks.length;}
GameCatalog.Tag.All=[];GameCatalog.Tag.All.byTagProperty=function(sProp,isDescSort,iStart,iCount,isForceSort)
{if(!this["_by_"+sProp]||isForceSort)
{var orderVar=-1;if(isDescSort)
orderVar=1;this["_by_"+sProp]=this.concat().sort(function(a,b)
{if((b[sProp]==a[sProp]))return 0;return(b[sProp]>a[sProp])?orderVar:(orderVar*(-1));});}
return this["_by_"+sProp].cut(iStart,iCount);}
GameCatalog.Tag.All.dictionary={}
GameCatalog.URLs={gamePageURL:'/Deluxe.aspx?code=GAME_SKU&lc=en&channel=110167437',gameImageBase:'/images/games/',buyURL:'http://Jeuxentelechargement-beta.jeu.orange.fr/Checkout.asp?code=CHECKOUT_SKU&channel=110167437&lc=fr&BillingCountry=FR',lobbyURL:'/Lobby.aspx?lobby=LOBBY_ID&channel=110167437&lc=en',categoryURL:'/Category.aspx?code=CATEGORY_CODE',tagPageURL:'/Tag.aspx?tag=TAG_INTERNAL_NAME&ln=en'};GameCatalog.addCategory=function(code,name,internalName)
{var categoryURL=GameCatalog.URLs.categoryURL.replace(/CATEGORY_CODE/g,code);var category=new GameCatalog.Category(code,name,internalName,categoryURL);GameCatalog.Category.ByCode[code]=GameCatalog.Category.All[GameCatalog.Category.All.length]=category;return category;}
GameCatalog.addGame=function(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
{var newGame=new GameCatalog.Game(sku,name,smallThumbnail,categoryCode,productCode,lobbyUID,isMultiPlayer,thumbnail16x16,isNew,publishDate,thumbnail100x75,thumbnail179x135,thumbnail320x240,isLocalized,thumbnail130x75,downloadURL,oneThirdDesc,twoThirdsDesc,isOnline)
GameCatalog.Game.All[GameCatalog.Game.All.length]=newGame;GameCatalog.Game.All.BySku[newGame.sku]=newGame;return newGame;}
GameCatalog.addTag=function(){var tag=this.Tag.All.dictionary[arguments[0]];if(tag)return tag;var newTag=new this.Tag(arguments);this.Tag.All[this.Tag.All.length]=newTag;this.Tag.All.dictionary[arguments[0]]=newTag;return newTag;}
GameCatalog.Game.generateGamePageURL=function(productCode)
{var gamePageURLBuilder=new Array();gamePageURLBuilder=gamePageURLBuilder.concat(GameCatalog.baseGamePageURL,"?",GameCatalog.PRODUCT_CODE_VARNAME,"=",productCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode);return gamePageURLBuilder.join("");}
GameCatalog.Game.generateBuyURL=function(productCode)
{var buyURLBuilder=new Array();buyURLBuilder=buyURLBuilder.concat(GameCatalog.baseBuyURL,"?",GameCatalog.PRODUCT_CODE_VARNAME,"=",productCode,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language,"&",GameCatalog.BILLING_CNTRY_VARNAME,"=",GameCatalog.billingCountry);return buyURLBuilder.join("");}
GameCatalog.Game.generateLobbyURL=function(lobbyUID)
{if(lobbyUID!="")
{var lobbyURLBuilder=new Array();lobbyURLBuilder=lobbyURLBuilder.concat(GameCatalog.baseLobbyURL,"?",GameCatalog.LOBBY_VARNAME,"=",lobbyUID,"&",GameCatalog.CHANNEL_VARNAME,"=",GameCatalog.channelCode,"&",GameCatalog.LANGUAGE_VARNAME,"=",GameCatalog.language);return lobbyURLBuilder.join("");}
return"";}//::: GameCatalog Data 00:00:00.0625000

GameCatalog.CurrentProcessing=function()
{var g=GameCatalog;var ag=g.addGame;var ac=g.addCategory;g.language="en";g.channelCode=11045473;g.baseBuyURL="http://checkout.oberon-media.com/concierge/2500/app/AdapterLandingPage.aspx";g.baseGamePageURL="/game.htm";g.baseLobbyURL="game.htm";g.billingCountry="US";ac(0,'','MP_Texas Hold em Poker');ag(1104993,'Texas Hold ’em Poker','/images/games/texas_mp/texas_mp81x46.gif',0,110500140,'a5d5182b-56a0-4ab7-ac89-3857cd841cf5','true','/images/games/texas_mp/texas_mp16x16.gif',false,11323,'/images/games/texas_mp/texas_mp100x75.jpg','/images/games/texas_mp/texas_mp179x135.jpg','/images/games/texas_mp/texas_mp320x240.jpg','false','/images/games/thumbnails_med_2/texas_mp130x75.gif','','The world famous Poker game!','Play this one-on-one version of the world famous Poker game!','true',true,true,'MP_Texas Hold em Poker');ac(110060583,'Vintage','Ancient Trijong');ag(1105173,'Ancient Trijong','/images/games/ancient_trijong/ancienttrijong81x46.gif',110060583,110518183,'','false','/images/games/ancient_trijong/ancienttrijong16x16.gif',false,11323,'/images/games/ancient_trijong/ancienttrijong100x75.jpg','/images/games/ancient_trijong/ancienttrijong179x135.jpg','/images/games/ancienttrijong/ancienttrijong320x240.jpg','false','/images/games/thumbnails_med_2/ancienttrijong130x75.gif','/exe/ancient_trijong-setup.exe?lc=en&ext=ancient_trijong-setup.exe','A unique blend of Tripeaks and Mahjong!','The best of Tripeaks and Mahjong now in one great game!','false',false,false,'Ancient Trijong');ag(1143087,'Garden Defense','/images/games/garden_defense/garden_defense81x46.gif',110060583,114340583,'','false','/images/games/garden_defense/garden_defense16x16.gif',false,11323,'/images/games/garden_defense/garden_defense100x75.jpg','/images/games/garden_defense/garden_defense179x135.jpg','/images/games/garden_defense/garden_defense320x240.jpg','false','/images/games/thumbnails_med_2/garden_defense130x75.gif','/exe/Garden_Defense-setup.exe?lc=en&ext=Garden_Defense-setup.exe','Protect gardens from malicious pests!','Defend your garden with an arsenal of lawn ornaments, plants and bugs.','false',false,false,'Garden Defense');ac(1007,'Puzzle','7 Artifacts');ag(1146603,'7 Artifacts','/images/games/7_Artifacts/7_Artifacts81x46.gif',1007,114693800,'','false','/images/games/7_Artifacts/7_Artifacts16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/7_artifacts/7_artifacts320x240.jpg','false','/images/games/thumbnails_med_2/7_Artifacts130x75.gif','/exe/7_Artifacts-setup.exe?lc=en&ext=7_Artifacts-setup.exe','Match gems to decrypt a message! ','Decrypt a secret message to avert a war between Greek gods! ','false',false,false,'7 Artifacts');ag(1151867,'Diamond Mine','/images/games/diamond_mine/diamond_mine81x46.gif',0,115219473,'407801b3-0fd0-4fa0-9417-f7a57f5e8a66','false','/images/games/diamond_mine/diamond_mine16x16.gif',false,11323,'/images/games/diamond_mine/diamond_mine100x75.jpg','/images/games/diamond_mine/diamond_mine179x135.jpg','/images/games/diamond_mine/diamond_mine320x240.jpg','false','/images/games/thumbnails_med_2/diamond_mine130x75.gif','','Swap gems to make megapoints!','Make rows of three or more gemstones in this addictive puzzler.','true',true,true,'Diamond Mine OLT1');ag(1152360,'Arctic Quest','/images/games/arctic_quest/arctic_quest81x46.gif',0,115269283,'30bd91d1-7989-4482-af42-6fd67d30ef92','false','/images/games/arctic_quest/arctic_quest16x16.gif',false,11323,'/images/games/arctic_quest/arctic_quest100x75.jpg','/images/games/arctic_quest/arctic_quest179x135.jpg','/images/games/arctic_quest/arctic_quest320x240.jpg','false','/images/games/thumbnails_med_2/arctic_quest130x75.gif','','You set out to solve the puzzles.','You set out to solve the puzzles.','true',false,false,'Arctic Quest OL');ac(1100710,'Hidden Object','Righteous Kill');ag(1154047,'Righteous Kill','/images/games/righteous_kill/righteous_kill81x46.gif',1100710,115439303,'','false','/images/games/righteous_kill/righteous_kill16x16.gif',false,11323,'/images/games/righteous_kill/righteous_kill100x75.jpg','/images/games/righteous_kill/righteous_kill179x135.jpg','/images/games/righteous_kill/righteous_kill320x240.jpg','false','/images/games/thumbnails_med_2/righteous_kill130x75.gif','/exe/righteous_kill-setup.exe?lc=en&ext=righteous_kill-setup.exe','Capture a killer terrorizing New York!','Hunt for a killer in sixteen New York City locations!','false',false,false,'Righteous Kill');ac(110012530,'Arcade','Photo Mania');ag(1154190,'Photo Mania','/images/games/photo_mania/photo_mania81x46.gif',110012530,115454737,'','false','/images/games/photo_mania/photo_mania16x16.gif',false,11323,'/images/games/photo_mania/photo_mania100x75.jpg','/images/games/photo_mania/photo_mania179x135.jpg','/images/games/photo_mania/photo_mania320x240.jpg','false','/images/games/thumbnails_med_2/photo_mania130x75.gif','/exe/photo_mania-setup.exe?lc=en&ext=photo_mania-setup.exe','Open your own photo studio!','Take pictures of people and places and improve your photography skills!','false',false,false,'Photo Mania');ag(1156157,'Luxor: Quest for the Afterlife','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife81x46.gif',0,115650680,'','false','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife16x16.gif',false,11323,'/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife100x75.jpg','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife179x135.jpg','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife320x240.jpg','false','/images/games/thumbnails_med_2/luxor_quest_for_the_afterlife130x75.gif','/exe/luxor_quest_for_the_afterlife-setup.exe?lc=en&ext=luxor_quest_for_the_afterlife-setup.exe','Track down sacred stolen artifacts!','Track down the robbers of Queen Nefertiti’s sacred stolen artifacts!','false',false,false,'Luxor: Quest for the Afterlife');ag(1156617,'House of Wonders: Kitty Kat Wedding','/images/games/house_of_wonders_kitty_kat_wedding/house_of_wonders_kitty_kat_wedding81x46.gif',1007,115696290,'','false','/images/games/house_of_wonders_kitty_kat_wedding/house_of_wonders_kitty_kat_wedding16x16.gif',false,11323,'/images/games/house_of_wonders_kitty_kat_wedding/house_of_wonders_kitty_kat_wedding100x75.jpg','/images/games/house_of_wonders_kitty_kat_wedding/house_of_wonders_kitty_kat_wedding179x135.jpg','/images/games/house_of_wonders_kitty_kat_wedding/house_of_wonders_kitty_kat_wedding320x240.jpg','false','/images/games/thumbnails_med_2/house_of_wonders_kitty_kat_wedding130x75.gif','/exe/house_of_wonders_kitty_kat_wedding-setup.exe?lc=en&ext=house_of_wonders_kitty_kat_wedding-setup.exe','Help cats finance their wedding!','Help two love struck but penniless cats finance an unforgettable wedding! ','false',false,false,'House of Wonders Kitty Kat We');ag(1166500,'Boonka','/images/games/boonka/boonka81x46.gif',110012530,116686593,'','false','/images/games/boonka/boonka16x16.gif',false,11323,'/images/games/boonka/boonka100x75.jpg','/images/games/boonka/boonka179x135.jpg','/images/games/boonka/boonka320x240.jpg','false','/images/games/thumbnails_med_2/boonka130x75.gif','/exe/boonka-setup.exe?lc=en&ext=boonka-setup.exe','Fight evil invaders in Boonka!','Fight evil invaders and restore peace to the land of Boonka!','false',false,false,'Boonka');ag(1170920,'Tradewinds Odyssey','/images/games/tradewinds_odyssey/tradewinds_odyssey81x46.gif',110012530,117128267,'','false','/images/games/tradewinds_odyssey/tradewinds_odyssey16x16.gif',false,11323,'/images/games/tradewinds_odyssey/tradewinds_odyssey100x75.jpg','/images/games/tradewinds_odyssey/tradewinds_odyssey179x135.jpg','/images/games/tradewinds_odyssey/tradewinds_odyssey320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds_odyssey130x75.gif','/exe/tradewinds_odyssey-setup.exe?lc=en&ext=tradewinds_odyssey-setup.exe','Navigate the high seas of Ancient Greece!','An epic journey across Ancient Greece where gods, heroes and monsters await!','false',false,false,'Tradewinds Odyssey');ag(1174860,'Be a King: Lost Lands','/images/games/be_a_king/be_a_king81x46.gif',110012530,117524547,'','false','/images/games/be_a_king/be_a_king16x16.gif',false,11323,'/images/games/be_a_king/be_a_king100x75.jpg','/images/games/be_a_king/be_a_king179x135.jpg','/images/games/be_a_king/be_a_king320x240.jpg','false','/images/games/thumbnails_med_2/be_a_king130x75.gif','/exe/be_a_king-setup.exe?lc=en&ext=be_a_king-setup.exe','Build and Defend a Medieval Kingdom!','Build and maintain your medieval kingdom, defending villages from monsters and bandits!','false',false,false,'Be A King');ac(1000,'Top','Cooking Dash Diner Town');ag(1175830,'Cooking Dash: Diner Town Studios','/images/games/CookingDash_DT_studios/CookingDash_DT_studios81x46.gif',1000,117622670,'','false','/images/games/CookingDash_DT_studios/CookingDash_DT_studios16x16.gif',false,11323,'/images/games/CookingDash_DT_studios/CookingDash_DT_studios100x75.jpg','/images/games/CookingDash_DT_studios/CookingDash_DT_studios179x135.jpg','/images/games/CookingDash_DT_studios/CookingDash_DT_studios320x240.jpg','false','/images/games/thumbnails_med_2/CookingDash_DT_studios130x75.gif','/exe/cooking_dash_diner_town-setup.exe?lc=en&ext=cooking_dash_diner_town-setup.exe','Lights, Camera, Cook! Short order on the set!','Lights, camera, COOK! Feed the egos and stomachs of a crazy cast and crew!','false',false,false,'Cooking Dash Diner Town');ag(1176780,'Treasures of The Serengeti','/images/games/treasures_of_serengeti/treasures_of_serengeti81x46.gif',1007,117718267,'','false','/images/games/treasures_of_serengeti/treasures_of_serengeti16x16.gif',false,11323,'/images/games/treasures_of_serengeti/treasures_of_serengeti100x75.jpg','/images/games/treasures_of_serengeti/treasures_of_serengeti179x135.jpg','/images/games/treasures_of_serengeti/treasures_of_serengeti320x240.jpg','false','/images/games/thumbnails_med_2/treasures_of_serengeti130x75.gif','/exe/treasures_of_the_serengeti-setup.exe?lc=en&ext=treasures_of_the_serengeti-setup.exe','Restore the Serengeti in this Match-3-Jigsaw puzzle! BONUS: Free Soundtrack!','Embark on a unique musical quest where match-3 & jigsaw collide! BONUS: Free Soundtrack!','false',false,false,'Treasures of The Serengeti');ag(1179593,'Ghost Fleet','/images/games/ghost_fleet/ghost_fleet81x46.gif',1100710,11800820,'','false','/images/games/ghost_fleet/ghost_fleet16x16.gif',false,11323,'/images/games/ghost_fleet/ghost_fleet100x75.jpg','/images/games/ghost_fleet/ghost_fleet179x135.jpg','/images/games/ghost_fleet/ghost_fleet320x240.jpg','false','/images/games/thumbnails_med_2/ghost_fleet130x75.gif','/exe/ghost_fleet-setup.exe?lc=en&ext=ghost_fleet-setup.exe','National Geographic Exploration of Mysterious Shipwrecks!','Embark on National Geographic explorations of mysterious undersea shipwrecks!','false',false,false,'Nat Geo - Ghost Fleet');ac(110127790,'Time Management','ultraball');ag(11010543,'Ultraball','/images/games/ultraball/ultra_ball81x46.gif',110127790,11011177,'','false','/images/games/ultraball/ultra_ball16x16.gif',false,11323,'/images/games/ultraball/ultra_ball100x75.jpg','/images/games/ultraball/ultra_ball179x135.jpg','/images/games/ultraball/ultra_ball320x240.jpg','false','/images/games/thumbnails_med_2/ultra_ball130x75.gif','/exe/UltraBall-Setup.exe?lc=en&ext=UltraBall-Setup.exe','100 levels of pinball pandemonium!','An adrenaline-filled combination of breakout and pinball games.','false',false,false,'ultraball');ag(11015843,'Ricochet Lost Worlds','/images/games/ricochetlostworlds/ricochetlostworlds81x46.jpg',110060583,110164187,'','false','/images/games/ricochetlostworlds/ricochetlostworlds16x16.gif',false,11323,'/images/games/ricochetlostworlds/ricochetlostworlds100x75.jpg','/images/games/ricochetlostworlds/ricochetlostworlds179x135.jpg','/images/games/ricochetlostworlds/ricochetlostworlds320x240.jpg','false','/images/games/thumbnails_med_2/richchetLostWorlds130x75.gif','/exe/ricochet_lost_worlds-setup.exe?lc=en&ext=ricochet_lost_worlds-setup.exe','160 levels of brick-busting madness!','The sequel to Ricochet Xtreme, featuring 160 levels of breakout action!','false',false,false,'RicochetLostWorlds');ag(11028163,'Reversi','/images/games/reversi_mp/reversi_mp81x46.gif',0,110288360,'2af06781-824a-4738-8123-0936a211b10f','true','/images/games/reversi_mp/reversi_mp16x16.gif',false,11323,'/images/games/reversi_mp/reversi_mp100x75.jpg','/images/games/reversi_mp/reversi_mp179x135.jpg','/images/games/reversi_mp/reversi_mp320x240.jpg','false','/images/games/thumbnails_med_2/reversi_mp130x75.gif','','Win with strategic and tactical thinking in this classic board game!','Strategic thinking is key in this classic board game that takes a minute to learn but can take a lifetime to master!','true',true,true,'MP_Reversi');ag(11029123,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',1007,110298790,'ea43343e-69ec-498f-ac1b-5ee2a07b3ecb','false','/images/games/bricks_of_egypt/bricks_of_egypt16x16.gif',false,11323,'/images/games/bricks_of_egypt/bricks_of_egypt100x75.jpg','/images/games/bricks_of_egypt/bricks_of_egypt179x135.jpg','/images/games/bricks_of_egypt/bricks_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt130x75.gif','/exe/bricks_of_egypt-setup.exe?lc=en&ext=bricks_of_egypt-setup.exe','Brick breaking action, Egyptian style!','8 levels of classic brick breaking action with an Egyptian theme!','false',false,true,'bricks_of_egypt');ag(11037623,'Tradewinds 2','/images/games/tradewinds2/tradewinds281x46.gif',110060583,110379990,'bd6a9065-11be-468d-8433-9408895cb97e','false','/images/games/tradewinds2/tradewinds216x16.gif',false,11323,'/images/games/tradewinds2/tradewinds2100x75.jpg','/images/games/tradewinds2/tradewinds2179x135.jpg','/images/games/tradewinds2/tradewinds2320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds2130x75.gif','/exe/tradewinds2-setup.exe?lc=en&ext=tradewinds2-setup.exe','Battle pirates to build up your fortunes.','A trading empire in the Caribbean awaits you. Trade goods and fight pirates.','false',false,false,'Tradewinds 2');ag(11050883,'Bricks of Atlantis','/images/games/bricks_of_atlantis/bricks_of_atlantis81x46.gif',110012530,110509177,'cffb515b-2f10-4790-b3e6-8c0ab3d0b56c','false','/images/games/bricks_of_atlantis/bricks_of_atlantis16x16.gif',false,11323,'/images/games/bricks_of_atlantis/bricks_of_atlantis100x75.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis179x135.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_atlantis130x75.jpg','/exe/bricks_of_atlantis-setup.exe?lc=en&ext=bricks_of_atlantis-setup.exe','A deep sea break-out!','Grab your harpoon and dive into a deep sea blockbusting adventure!','false',false,true,'Bricks of Atlantis');ag(11052313,'Magic Match','/images/games/magic_match/magic_match81x46.gif',1007,110524983,'c9701142-fd0b-458a-94e7-18a20fce1d5a','false','/images/games/magic_match/magic_match16x16.gif',false,11323,'/images/games/magic_match/magic_match100x75.jpg','/images/games/magic_match/magic_match179x135.jpg','/images/games/magic_match/magic_match320x240.jpg','false','/images/games/thumbnails_med_2/magic_match130x75.gif','/exe/magic_match_1hr-setup.exe?lc=en&ext=magic_match_1hr-setup.exe','Explore six engrossing fantasy realms!','Explore six mystical realms in the Lands of the Arcane!','false',false,false,'Magic Match');ag(11109097,'Luxor: Amun Rising','/images/games/luxor_amun/luxor_amun81x46.gif',110060583,111103570,'','false','/images/games/luxor_amun/luxor_amun16x16.gif',false,11323,'/images/games/luxor_amun/luxor_amun100x75.jpg','/images/games/luxor_amun/luxor_amun179x135.jpg','/images/games/luxor_amun/luxor_amun320x240.jpg','false','/images/games/thumbnails_med_2/luxor_amun130x75.gif','/exe/Luxor_Amun_Rising-setup.exe?lc=en&ext=Luxor_Amun_Rising-setup.exe','Save ancient Egypt from doom!','Destroy invading spheres before they reach the pyramids of ancient Egypt!','false',false,false,'Luxor: Amun Rising');ag(11117633,'Professor Fizzwizzle','/images/games/Professor_Fizzwizzle/Professor_Fizzwizzle81x46.gif',110127790,111189803,'12ebbb7e-9236-4d29-b745-33ed7439f1a9','false','/images/games/Professor_Fizzwizzle/Professor_Fizzwizzle16x16.gif',false,11323,'/images/games/Professor_Fizzwizzle/Professor_Fizzwizzle100x75.jpg','/images/games/Professor_Fizzwizzle/Professor_Fizzwizzle179x135.jpg','/images/games/Professor_Fizzwizzle/Professor_Fizzwizzle320x240.jpg','false','/images/games/thumbnails_med_2/Professor_Fizzwizzle130x75.gif','/exe/Professor_Fizzwizzle-setup.exe?lc=en&ext=Professor_Fizzwizzle-setup.exe','Gadget geniuses needed now!','Use gadgets and your genius to help the prof solve puzzles!','false',false,false,'Professor Fizzwizzle');ag(11120457,'Tumble Bees','/images/games/Tumble_Bees_To_Go/TumbleBeesToGo81x46.gif',0,111216963,'','false','/images/games/Tumble_Bees_To_Go/TumbleBeesToGo16x16.gif',false,11323,'/images/games/Tumble_Bees_To_Go/TumbleBeesToGo100x75.jpg','/images/games/Tumble_Bees_To_Go/TumbleBeesToGo179x135.jpg','/images/games/TumbleBeesToGo/tumblebeestogo320x240.jpg','false','/images/games/thumbnails_med_2/tumblebeestogo130x75.gif','/exe/Tumble_Bees_Regular-setup.exe?lc=en&ext=Tumble_Bees_Regular-setup.exe','Showoff your spelling-bee talents!','Form words to fill a honeypot and win great prizes!','false',false,false,'Tumble Bees (Regular)');ag(11123740,'Atlantis Quest','/images/games/Atlantis_Quest/Atlantis_Quest81x46.gif',110060583,111249247,'f8f21e8c-37ab-47eb-915e-e145d346b456','false','/images/games/Atlantis_Quest/Atlantis_Quest16x16.gif',false,11323,'/images/games/Atlantis_Quest/Atlantis_Quest100x75.jpg','/images/games/Atlantis_Quest/Atlantis_Quest179x135.jpg','/images/games/Atlantis_Quest/Atlantis_Quest320x240.jpg','false','/images/games/thumbnails_med_2/Atlantis_Quest130x75.gif','/exe/Atlantis_Quest-setup.exe?lc=en&ext=Atlantis_Quest-setup.exe','Search the Mediterranean for Atlantis!','Journey the Mediterranean in search of the lost continent of Atlantis!','false',false,false,'Atlantis Quest');ag(11131240,'Charm Tale','/images/games/charm_tale/charm_tale81x46.gif',1007,111324897,'','false','/images/games/charm_tale/charm_tale16x16.gif',false,11323,'/images/games/charm_tale/charm_tale100x75.jpg','/images/games/charm_tale/charm_tale179x135.jpg','/images/games/charm_tale/charm_tale320x240.jpg','false','/images/games/thumbnails_med_2/charm_tale130x75.gif','/exe/CharmTale_new-setup.exe?lc=en&ext=CharmTale_new-setup.exe','Break the bonds of a curse!','Fill mosaics to break the bonds of a wicked curse!','false',false,false,'CharmTale_new');ag(11144067,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',110012530,11145467,'14be2b10-6898-4170-991c-eea1e76fb580','false','/images/games/bricks_of_egypt2/bricks_of_egypt216x16.gif',false,11323,'/images/games/bricks_of_egypt2/bricks_of_egypt2100x75.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2179x135.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt2130x75.gif','/exe/Bricks_of_Egypt_2-setup.exe?lc=en&ext=Bricks_of_Egypt_2-setup.exe','Explore a pyramid’s secret passage! ','Explore a pyramid’s secret passage in search of Pharaoh’s ancient plaques!','false',false,false,'Bricks of Egypt 2');ag(11144640,'Glyph','/images/games/glyph/glyph81x46.gif',110060583,111460587,'a836498b-3ee6-49f0-96e6-452a0a4c89a6','false','/images/games/glyph/glyph16x16.gif',false,11323,'/images/games/glyph/glyph100x75.jpg','/images/games/glyph/glyph179x135.jpg','/images/games/glyph/glyph320x240.jpg','false','/images/games/thumbnails_med_2/glyph130x75.gif','/exe/Glyph-setup.exe?lc=en&ext=Glyph-setup.exe','Save the dying world of Kuros!','Save the dying world of Kuros by assembling ancient glyphs!','false',false,false,'Glyph');ag(11187383,'Rainbow Mystery','/images/games/rainbowmystery/rainbowmystery81x46.gif',1007,111889130,'','false','/images/games/rainbowmystery/rainbowmystery16x16.gif',false,11323,'/images/games/rainbowmystery/rainbowmystery100x75.jpg','/images/games/rainbowmystery/rainbowmystery179x135.jpg','/images/games/rainbowmystery/rainbowmystery320x240.jpg','false','/images/games/thumbnails_med_2/rainbowmystery130x75.jpg','/exe/Rainbow_Mystery-setup.exe?lc=en&ext=Rainbow_Mystery-setup.exe','Restore color to a cursed rainbow!','Break a curse to restore color to the Rainbow World!  ','false',false,false,'Rainbow Mystery');ag(11198580,'Fizzball','/images/games/Fizzball/Fizzball81x46.gif',110012530,112002863,'','false','/images/games/Fizzball/fizzball16x16.gif',false,11323,'/images/games/Fizzball/Fizzball100x75.jpg','/images/games/Fizzball/Fizzball179x135.jpg','/images/games/Fizzball/Fizzball320x240.jpg','false','/images/games/thumbnails_med_2/fizzball130x75.gif','/exe/Fizzball-setup.exe?lc=en&ext=Fizzball-setup.exe','Feed and rescue hungry animals! ','Rescue hungry animals in this thrilling brick-busting adventure!','false',false,false,'Fizzball');ag(11219217,'Cradle of Rome','/images/games/cradle_rome/cradle_rome81x46.gif',1007,11221030,'','false','/images/games/cradle_rome/cradle_rome16x16.gif',false,11323,'/images/games/cradle_rome/cradle_rome100x75.jpg','/images/games/cradle_rome/cradle_rome179x135.jpg','/images/games/cradle_rome/cradle_rome320x240.jpg','false','/images/games/thumbnails_med_2/cradle_rome130x75.gif','/exe/Cradle_of_Rome-setup.exe?lc=en&ext=Cradle_of_Rome-setup.exe','Rebuild the Ancient Roman Empire! ','Rebuild the Ancient Roman Empire and become its emperor! ','false',false,false,'Cradle of Rome');ag(11223730,'Treasures of Montezuma','/images/games/treasures_montezuma/treasures_montezuma81x46.gif',1007,112255903,'','false','/images/games/treasures_montezuma/treasures_montezuma16x16.gif',false,11323,'/images/games/treasures_montezuma/treasures_montezuma100x75.jpg','/images/games/treasures_montezuma/treasures_montezuma179x135.jpg','/images/games/treasures_montezuma/treasures_montezuma320x240.jpg','false','/images/games/thumbnails_med_2/treasures_montezuma130x75.gif','/exe/Treasures_of_Montezuma-setup.exe?lc=en&ext=Treasures_of_Montezuma-setup.exe','Make astounding archeological discoveries! ','Make astounding archeological discoveries with Dr. Emily Jones!  ','false',false,false,'Treasures of Montezuma');ag(11231247,'Peggle','/images/games/peggle/peggle81x46.gif',110012530,112330860,'','false','/images/games/peggle/peggle16x16.gif',false,11323,'/images/games/peggle/peggle100x75.jpg','/images/games/peggle/peggle179x135.jpg','/images/games/peggle/peggle320x240.jpg','false','/images/games/thumbnails_med_2/peggle130x75.gif','/exe/Peggle-setup.exe?lc=en&ext=Peggle-setup.exe','Ready, aim ... bounce!','Aim, shoot and clear pegs in 55 levels of bouncy fun! ','false',false,false,'Peggle');ag(11273477,'Amazonia','/images/games/amazonia/amazonia81x46.gif',1007,112761873,'983732de-aea1-40ca-8174-e5b5bbdc9928','false','/images/games/amazonia/amazonia16x16.gif',false,11323,'/images/games/amazonia/amazonia100x75.jpg','/images/games/amazonia/amazonia179x135.jpg','/images/games/amazonia/amazonia320x240.jpg','false','/images/games/thumbnails_med_2/amazonia130x75.gif','/exe/Amazonia-setup.exe?lc=en&ext=Amazonia-setup.exe','Hexagonal matching and hidden treasures! ','Claim wonderful treasures in Amazonia in this hexagonal matching game! ','false',false,false,'Amazonia');ag(11283823,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',0,11286810,'ea43343e-69ec-498f-ac1b-5ee2a07b3ecb','false','/images/games/bricks_of_egypt/bricks_of_egypt16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt130x75.gif','/exe/bricks_of_egypt-setup.exe?lc=en&ext=bricks_of_egypt-setup.exe','Brick breaking action, Egyptian style!','8 levels of classic brick breaking action with an Egyptian theme!','true',true,true,'Bricks of Egypt Online');ag(11284190,'Flip Words','/images/games/flipwords/flipwords81x46.gif',0,11287173,'0c96de64-a387-4361-8822-b0f5abebd3e6','false','/images/games/flipwords/flipwords16x16.gif',false,11323,'/images/games/flipwords/flipwords100x75.jpg','/images/games/flipwords/flipwords179x135.jpg','/images/games/flipwords/flipwords320x240.jpg','false','/images/games/thumbnails_med_2/flipwords130x75.gif','/exe/Flip_Words-Setup.exe?lc=en&ext=Flip_Words-Setup.exe','A puzzle game for word wizards!','Click on letters to make words and solve familiar phrases.','true',true,true,'Flip Words Online');ag(11302980,'Spider Solitaire','/images/games/Spider_Solitaire/Spider_Solitaire81x46.gif',0,113059813,'fc739522-b24f-4bfd-b70f-15d550500334','false','/images/games/Spider_Solitaire/Spider_Solitaire16x16.gif',false,11323,'/images/games/Spider_Solitaire/Spider_Solitaire100x75.jpg','/images/games/Spider_Solitaire/Spider_Solitaire179x135.jpg','/images/games/Spider_Solitaire/Spider_Solitaire320x240.jpg','false','/images/games/thumbnails_med_2/Spider_Solitaire130x75.gif','','It’s classic Solitaire, with a spidery twist!','Use your classic Solitaire skills with a spidery twist of building eight card sequences from King to Ace.','true',true,true,'Spider Solitaire_Online');ag(11313343,'7 Wonders II','/images/games/7_wonders_2/7_wonders_281x46.gif',1000,113164700,'','false','/images/games/7_wonders_2/7_wonders_216x16.gif',false,11323,'/images/games/7_wonders_2/7_wonders_2100x75.jpg','/images/games/7_wonders_2/7_wonders_2179x135.jpg','/images/games/7_wonders_2/7_wonders_2320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders_2130x75.gif','/exe/7_Wonders_2-setup.exe?lc=en&ext=7_Wonders_2-setup.exe','Build the worlds’ most magnificent structures! ','Use your match-3 skills to build the worlds’ most magnificent structures! ','false',false,false,'7 Wonders 2');ag(11318463,'Secrets of Great Art','/images/games/secrets-of-great-art/secrets-of-great-art81x46.gif',1100710,113215907,'','false','/images/games/secrets-of-great-art/secrets-of-great-art16x16.gif',false,11323,'/images/games/secrets-of-great-art/secrets-of-great-art100x75.jpg','/images/games/secrets-of-great-art/secrets-of-great-art179x135.jpg','/images/games/secrets-of-great-art/secrets-of-great-art320x240.jpg','false','/images/games/thumbnails_med_2/secrets-of-great-art130x75.gif','/exe/Secrets_of_Great_Art-setup.exe?lc=en&ext=Secrets_of_Great_Art-setup.exe','Find objects disguised in paintings! ','Can you solve the mystery hidden within the brush strokes?  ','false',false,false,'Secrets of Great Art');ag(11356953,'Word Monaco','/images/games/wordmonaco/wordmonaco81x46.gif',0,113600757,'5d2ec417-e71b-4a15-a699-f45d695ca08a','false','/images/games/wordmonaco/wordmonaco16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/wordmonaco130x75.gif','','Where wordplay meets solitaire!','A blend of word-creation and solitaire in 6 Mediterranean locales!','true',false,false,'Word Monaco_Online');ag(11369860,'Chicken Invaders 2','/images/games/chickeninvaders2/chickeninvaders2_81x46.jpg',0,11372927,'5f7b8c27-da02-48bf-9506-46381ee69d67','false','/images/games/chickeninvaders2/chickeninvaders216x16.gif',false,11323,'/images/games/chickeninvaders2/Chickeninvader2100x75.jpg','/images/games/chickeninvaders2/Chickeninvader2179x135.jpg','/images/games/chickeninvaders2/Chickeninvader2320x240.jpg','false','/images/games/thumbnails_med_2/chickeninvaders130x75.gif','','Save the world from chickens!','Save the world from coo-coo chickens taking revenge on humans!','true',true,true,'Chicken Invaders 2 OLT1');ag(11384030,'Knights of Rock','/images/games/knights_of_rock/knights_of_rock81x46.gif',0,113872860,'cec5195b-95cc-42f5-a61d-892252f11c2d','false','/images/games/knights_of_rock/knights_of_rock16x16.gif',false,11323,'/images/games/knights_of_rock/knights_of_rock100x75.jpg','/images/games/knights_of_rock/knights_of_rock179x135.jpg','/images/games/knights_of_rock/knights_of_rock320x240.jpg','false','/images/games/thumbnails_med_2/knights_of_rock130x75.gif','','Keep a rhythm to fight! ','Fight and keep to the rhythm of a rock song! ','true',false,false,'Knights of Rock OL');ag(11386547,'Farm Frenzy','/images/games/farm_frenzy/farm_frenzy81x46.gif',1000,113897860,'','false','/images/games/farm_frenzy/farm_frenzy16x16.gif',false,11323,'/images/games/farm_frenzy/farm_frenzy100x75.jpg','/images/games/farm_frenzy/farm_frenzy179x135.jpg','/images/games/farm_frenzy/farm_frenzy320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy130x75.gif','/exe/Farm_Frenzy-setup.exe?lc=en&ext=Farm_Frenzy-setup.exe','Feed and raise farm animals! ','Live the country life cultivating fields and feeding livestock! ','false',false,false,'Farm Frenzy');ag(11388713,'Indestructotank 2','/images/games/Indestructotank_2/Indestructotank_281x46.gif',0,113919797,'9fdc19da-e3d4-4040-815a-a4119ea9e3bb','false','/images/games/Indestructotank_2/Indestructotank_216x16.gif',false,11323,'/images/games/Indestructotank_2/Indestructotank_2100x75.jpg','/images/games/Indestructotank_2/Indestructotank_2179x135.jpg','/images/games/Indestructotank_2/Indestructotank_2320x240.jpg','false','/images/games/thumbnails_med_2/Indestructotank_2130x75.gif','','Destroy enemies with yourself! ','Launch yourself into enemies to rack up combos and experience! ','true',false,false,'Indestructotank 2 OL');ag(11391370,'Mr. Bigshot','/images/games/Mr_Big_Shot/Mr_Big_Shot81x46.gif',0,113945837,'de21f42d-5ca8-4a75-b1b3-6c6a3dcf712f','false','/images/games/Mr_Big_Shot/Mr_Big_Shot16x16.gif',false,11323,'/images/games/Mr_Big_Shot/Mr_Big_Shot100x75.jpg','/images/games/Mr_Big_Shot/Mr_Big_Shot179x135.jpg','/images/games/Mr_Big_Shot/Mr_Big_Shot320x240.jpg','false','/images/games/thumbnails_med_2/Mr_Big_Shot130x75.gif','','Select, track and trade stocks!','Select, track and trade stocks in this market simulation game!','true',false,false,'Mr Big Shot OL');ag(11407490,'Season Match','/images/games/seasonmatch/seasonmatch81x46.gif',110012530,114106903,'','false','/images/games/seasonmatch/seasonmatch16x16.gif',false,11323,'/images/games/seasonmatch/seasonmatch100x75.jpg','/images/games/seasonmatch/seasonmatch179x135.jpg','/images/games/seasonmatch/seasonmatch320x240.jpg','false','/images/games/thumbnails_med_2/seasonmatch130x75.gif','/exe/Season_Match-setup.exe?lc=en&ext=Season_Match-setup.exe','Save Fairyland from everlasting winter! ','Reassemble a shattered mirror to save Fairyland from everlasting winter!  ','false',false,false,'Season Match');ag(11408540,'Magic Match Adventures','/images/games/magic_match_adventures/magic_match_adventures81x46.gif',110012530,114117383,'','false','/images/games/magic_match_adventures/magic_match_adventures16x16.gif',false,11323,'/images/games/magic_match_adventures/magic_match_adventures100x75.jpg','/images/games/magic_match_adventures/magic_match_adventures179x135.jpg','/images/games/magic_match_adventures/magic_match_adventures320x240.jpg','false','/images/games/thumbnails_med_2/magic_match_adventures130x75.gif','/exe/Magic_Match_Adventures-setup.exe?lc=en&ext=Magic_Match_Adventures-setup.exe','Restore the imp villages in this puzzling adventure.  ','Restore the imp villages in this magical puzzle adventure.','false',false,false,'Magic Match Adventures');ag(11446430,'Vogue Tales','/images/games/vogue_tales/vogue_tales81x46.gif',110012530,11449730,'','false','/images/games/vogue_tales/vogue_tales16x16.gif',false,11323,'/images/games/vogue_tales/vogue_tales100x75.jpg','/images/games/vogue_tales/vogue_tales179x135.jpg','/images/games/vogue_tales/vogue_tales320x240.jpg','false','/images/games/thumbnails_med_2/vogue_tales130x75.gif','/exe/Vogue_Tales-setup.exe?lc=en&ext=Vogue_Tales-setup.exe','A fashion-filled London adventure! ','Join Wendy in London in this fashion-filled time management adventure! ','false',false,false,'Vogue Tales');ag(11446517,'Heart of Egypt','/images/games/heart_of_egypt/heart_of_egypt81x46.gif',1007,114498390,'','false','/images/games/heart_of_egypt/heart_of_egypt16x16.gif',false,11323,'/images/games/heart_of_egypt/heart_of_egypt100x75.jpg','/images/games/heart_of_egypt/heart_of_egypt179x135.jpg','/images/games/heart_of_egypt/heart_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/heart_of_egypt130x75.gif','/exe/Heart_of_Egypt-setup.exe?lc=en&ext=Heart_of_Egypt-setup.exe','Dig for ancient Egyptian treasures! ','Follow an archaeologist on an excavation rich with Egyptian treasures! ','false',false,false,'Heart of Egypt');ag(11465737,'Sprill - The Mystery of The Bermuda Triangle','/images/games/sprill/sprill81x46.gif',1100710,114690410,'','false','/images/games/sprill/sprill16x16.gif',false,11323,'/images/games/sprill/sprill100x75.jpg','/images/games/sprill/sprill179x135.jpg','/images/games/sprill/sprill320x240.jpg','false','/images/games/thumbnails_med_2/sprill130x75.gif','/exe/Sprill_The_Mystery_of_The_Bermuda_Triangle-setup.exe?lc=en&ext=Sprill_The_Mystery_of_The_Bermuda_Triangle-setup.exe','Investigate boat & plane disappearances!  ','Search for boats and planes lost over the Bermuda Triangle! ','false',false,false,'Sprill - The Mystery of The Be');ag(11470857,'CattlePult','/images/games/cattlepult/cattlepult81x46.gif',0,114741430,'b09aae91-2aae-44fd-b580-bc74123b31e6','false','/images/games/cattlepult/cattlepult16x16.gif',false,11323,'/images/games/cattlepult/cattlepult100x75.jpg','/images/games/cattlepult/cattlepult179x135.jpg','/images/games/cattlepult/cattlepult320x240.jpg','false','/images/games/thumbnails_med_2/cattlepult130x75.gif','','Destroy plates by firing cattle.','Use your launching pad to fire cattle into the delicate china!','true',false,false,'CattlePult OL');ag(11473793,'Amazonia','/images/games/amazonia/amazonia81x46.gif',0,11477017,'983732de-aea1-40ca-8174-e5b5bbdc9928','false','/images/games/amazonia/amazonia16x16.gif',false,11323,'/images/games/amazonia/amazonia100x75.jpg','/images/games/amazonia/amazonia179x135.jpg','/images/games/amazonia/amazonia320x240.jpg','false','/images/games/thumbnails_med_2/amazonia130x75.gif','/exe/Amazonia-setup.exe?lc=en&ext=Amazonia-setup.exe','Hexagonal matching and hidden treasures! ','Claim wonderful treasures in Amazonia in this hexagonal matching game! ','true',true,true,'Amazonia OLT1');ag(11477363,'In Living Colors!','/images/games/in_living_colors/in_living_colors81x46.gif',110012530,114806750,'','false','/images/games/in_living_colors/in_living_colors16x16.gif',false,11323,'/images/games/in_living_colors/in_living_colors100x75.jpg','/images/games/in_living_colors/in_living_colors179x135.jpg','/images/games/in_living_colors/in_living_colors320x240.jpg','false','/images/games/thumbnails_med_2/in_living_colors130x75.gif','/exe/In_Living_Colors-setup.exe?lc=en&ext=In_Living_Colors-setup.exe','Color-in exotic plants and animals! ','Color-in exotic plants and adorable animals you encounter on an excursion. ','false',false,false,'In Living Colors');ag(11481587,'Bubble Town','/images/games/bubble_town/bubble_town81x46.gif',0,114848900,'492b522f-49b4-4741-9a4d-e75d4682c183','false','/images/games/bubble_town/bubble_town16x16.gif',false,11323,'/images/games/bubble_town/bubble_town100x75.jpg','/images/games/bubble_town/bubble_town179x135.jpg','/images/games/bubble_town/bubble_town320x240.jpg','false','/images/games/thumbnails_med_2/bubble_town130x75.gif','','Save Borb Bay from calamity!','Save Borb Bay from calamity in this addictive arcade-puzzler!','true',true,true,'Bubble Town OLT1');ag(11499560,'Spikey&rsquo;s Bounce Around','/images/games/spikeys_bounce_around/spikeys_bounce_around81x46.gif',0,115028480,'fff768d3-9659-41b1-97ef-e2b423f97786','false','/images/games/spikeys_bounce_around/spikeys_bounce_around16x16.gif',false,11323,'/images/games/spikeys_bounce_around/spikeys_bounce_around100x75.jpg','/images/games/spikeys_bounce_around/spikeys_bounce_around179x135.jpg','/images/games/spikeys_bounce_around/spikeys_bounce_around320x240.jpg','false','/images/games/thumbnails_med_2/spikeys_bounce_around130x75.gif','','Rescue all the butterflies!','Help Spikey rescue all the butterflies!','true',true,true,'Spikeys Bounce Around OLT1');ag(11502630,'Micro Olympics','/images/games/micro_olympics/micro_olympics81x46.gif',0,115059750,'32937c38-1fe9-4525-be6c-faa2ed98bc32','false','/images/games/micro_olympics/micro_olympics16x16.gif',false,11323,'/images/games/micro_olympics/micro_olympics100x75.jpg','/images/games/micro_olympics/micro_olympics179x135.jpg','/images/games/micro_olympics/micro_olympics320x240.jpg','false','/images/games/thumbnails_med_2/micro_olympics130x75.gif','','Launch your plane as far as you can...','Launch your plane as far as you can...','true',true,true,'Micro Olympics OLT1');ag(11505173,'Airport Mania: First Flight','/images/games/airport_mania_first_flight/airport_mania_first_flight81x46.gif',110012530,115084950,'','false','/images/games/airport_mania_first_flight/airport_mania_first_flight16x16.gif',false,11323,'/images/games/airport_mania_first_flight/airport_mania_first_flight100x75.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight179x135.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight320x240.jpg','false','/images/games/thumbnails_med_2/airport_mania_first_flight130x75.gif','/exe/Airport_Mania_First_Flight-setup.exe?lc=en&ext=Airport_Mania_First_Flight-setup.exe','Manage a busy airport! ','Land planes and avoid delays as the manager of an airport! ','false',false,false,'Airport Mania First Flight');ag(11515487,'Gold Miner Vegas','/images/games/gold_miner_vegas/gold_miner_vegas81x46.gif',0,115187350,'98e922d9-acdc-4b2d-b7a3-30165eabc6f2','false','/images/games/gold_miner_vegas/gold_miner_vegas16x16.gif',false,11323,'/images/games/gold_miner_vegas/gold_miner_vegas100x75.jpg','/images/games/gold_miner_vegas/gold_miner_vegas179x135.jpg','/images/games/gold_miner_vegas/gold_miner_vegas320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_vegas130x75.gif','/exe/Gold_Miner_Vegas-setup.exe?lc=en&ext=Gold_Miner_Vegas-setup.exe','Mine gold with all-new gadgets! ','With all-new gold-grabbing gadgets, the action is better than ever! ','true',true,true,'Gold Miner Vegas OLT1');ag(11518240,'Master Qwan’s Mahjong Deluxe','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe81x46.gif',0,115215103,'11b2b801-7fbb-4289-9b36-257b26334630','false','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe16x16.gif',false,11323,'/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe100x75.jpg','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe179x135.jpg','/images/games/master_qwans_mahjongg_deluxe/master_qwans_mahjongg_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/master_qwans_mahjongg_deluxe130x75.gif','','Master Qwan is back in this mahjong classic!','Master Qwan is back with a new spin on mahjong.','true',true,true,'Master Qwanâ€™s Mahjongg D');ag(11518310,'Tower Blaster','/images/games/tower_blaster/tower_blaster81x46.gif',0,115216277,'d6864891-b258-4c32-ab66-e4c54ec30e7f','false','/images/games/tower_blaster/tower_blaster16x16.gif',false,11323,'/images/games/tower_blaster/tower_blaster100x75.jpg','/images/games/tower_blaster/tower_blaster179x135.jpg','/images/games/tower_blaster/tower_blaster320x240.jpg','false','/images/games/thumbnails_med_2/tower_blaster130x75.gif','','Fast-action puzzle solving!','Blast the other guy’s tower and win in this fast puzzler!','true',true,true,'Tower Blaster OLT1');ag(11518413,'SpeedX2','/images/games/speed_x2/speed_x281x46.gif',0,115217860,'d8623039-8cd1-44af-aade-cbd7eb51fba6','false','/images/games/speed_x2/speed_x216x16.gif',false,11323,'/images/games/speed_x2/speed_x2100x75.jpg','/images/games/speed_x2/speed_x2179x135.jpg','/images/games/speed_x2/speed_x2320x240.jpg','false','/images/games/thumbnails_med_2/speed_x2130x75.gif','','Think you’re fast? Try SpeedX2!','Think you’re fast? Try SpeedX2: Summer Vacation!','true',true,true,'SpeedX2 OLT1');ag(11519340,'Mah Jong Quest 3: Balance of Life','/images/games/mah_jong_quest_3/mah_jong_quest_381x46.gif',1007,115226917,'','false','/images/games/mah_jong_quest_3/mah_jong_quest_316x16.gif',false,11323,'/images/games/mah_jong_quest_3/mah_jong_quest_3100x75.jpg','/images/games/mah_jong_quest_3/mah_jong_quest_3179x135.jpg','/images/games/mah_jong_quest_3/mah_jong_quest_3320x240.jpg','false','/images/games/thumbnails_med_2/mah_jong_quest_3130x75.gif','/exe/Mah_Jong_Quest_III-setup.exe?lc=en&ext=Mah_Jong_Quest_III-setup.exe','Find happiness and spiritual fulfillment! ','Make life choices in a quest for balance and spiritual fulfillment!  ','false',false,false,'Mah Jong Quest III');ag(11522637,'The Secret of Margrave Manor','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor81x46.gif',1000,115259550,'','false','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor16x16.gif',false,11323,'/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor100x75.jpg','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor179x135.jpg','/images/games/the_secret_of_margrave_manor/the_secret_of_margrave_manor320x240.jpg','false','/images/games/thumbnails_med_2/the_secret_of_margrave_manor130x75.gif','/exe/The_Secret_of_Margrave_Manor-setup.exe?lc=en&ext=The_Secret_of_Margrave_Manor-setup.exe','Uncover your family&rsquo;s dark secrets! ','Search spooky Margrave Manor to uncover your family&rsquo;s forgotten past! ','false',false,false,'The Secret of Margrave Manor');ag(11524173,'Turtix','/images/games/turtix/turtix81x46.gif',0,115274810,'8813ccca-a907-4c4c-aff4-2e4ea585efbb','false','/images/games/turtix/turtix16x16.gif',false,11323,'/images/games/turtix/turtix100x75.jpg','/images/games/turtix/turtix179x135.jpg','/images/games/turtix/turtix320x240.jpg','false','/images/games/thumbnails_med_2/turtix130x75.gif','','Help Turtix rescue kidnapped turtles. ','Help Turtix rescue his turtle friends in this charming adventure! ','true',false,false,'Turtix OL');ag(11525223,'Paulo the Penguin','/images/games/paulothepenguin/paulothepenguin81x46.gif',0,11528523,'f3f0b57e-41b4-4bd3-9966-c21ce6bbf29d','false','/images/games/paulothepenguin/paulothepenguin16x16.gif',false,11323,'/images/games/paulothepenguin/paulothepenguin100x75.jpg','/images/games/paulothepenguin/paulothepenguin179x135.jpg','/images/games/paulothepenguin/paulothepenguin320x240.jpg','false','/images/games/thumbnails_med_2/paulothepenguin130x75.gif','','Stay cool with Paulo.','Help Paulo the Penguin beat Global Warming.','true',true,true,'Paulo the Penguin OLT1');ag(11526143,'Snowy: Treasure Hunter 2','/images/games/snowytreasurehunter2/snowytreasurehunter281x46.gif',0,115294417,'8660dff7-7164-48fb-8c53-1064984ff4ed','false','/images/games/snowytreasurehunter2/snowytreasurehunter216x16.gif',false,11323,'/images/games/snowytreasurehunter2/snowytreasurehunter2100x75.jpg','/images/games/snowytreasurehunter2/snowytreasurehunter2179x135.jpg','/images/games/snowytreasurehunter2/snowytreasurehunter2320x240.jpg','false','/images/games/thumbnails_med_2/snowytreasurehunter2130x75.gif','','Join Snowy for an all-new adventure!','Join Snowy for an all-new adventure!','true',false,false,'Snowy: Treasure Hunter 2 OL');ag(11528550,'Pathways','/images/games/pathways/pathways81x46.gif',0,11531850,'f42fb010-4581-42c0-bfb4-2fbab1a66832','false','/images/games/pathways/pathways16x16.gif',false,11323,'/images/games/pathways/pathways100x75.jpg','/images/games/pathways/pathways179x135.jpg','/images/games/pathways/pathways320x240.jpg','false','/images/games/thumbnails_med_2/pathways130x75.gif','','Find the path using basic math.','By following the given mathematical rule, try to find the correct path to end the game.','true',false,false,'Pathways OL');ag(11531173,'Farm Frenzy 2','/images/games/farm_frenzy_2/farm_frenzy_281x46.gif',1000,115344917,'','false','/images/games/farm_frenzy_2/farm_frenzy_216x16.gif',false,11323,'/images/games/farm_frenzy_2/farm_frenzy_2100x75.jpg','/images/games/farm_frenzy_2/farm_frenzy_2179x135.jpg','/images/games/farm_frenzy_2/farm_frenzy_2320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_2130x75.gif','/exe/farm_frenzy_2-setup.exe?lc=en&ext=farm_frenzy_2-setup.exe','Manage a fast-paced farm!','Raise livestock, grow produce and ship your goods off to market!','false',false,false,'Farm Frenzy 2');ag(11531933,'Pool - New and Improved !','/images/games/pool_v2_mp/pool_v2_mp81x46.gif',0,115352427,'8b0dcb6a-806d-4955-b927-355c4ad2b691','true','/images/games/pool_v2_mp/pool_v2_mp16x16.gif',false,11323,'/images/games/pool_v2_mp/pool_v2_mp100x75.jpg','/images/games/pool_v2_mp/pool_v2_mp179x135.jpg','/images/games/pool_v2_mp/pool_v2_mp320x240.jpg','false','/images/games/thumbnails_med_2/pool_v2_mp130x75.gif','','Pool - New and Improved !','New & Improved! New Pool features extend your multiplayer fun.','true',true,true,'Pool v2 MP');ag(11532417,'The Great Chocolate Chase','/images/games/the_great_chocolate_chase/the_great_chocolate_chase81x46.gif',1007,115357610,'','false','/images/games/the_great_chocolate_chase/the_great_chocolate_chase16x16.gif',false,11323,'/images/games/the_great_chocolate_chase/the_great_chocolate_chase100x75.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase179x135.jpg','/images/games/the_great_chocolate_chase/the_great_chocolate_chase320x240.jpg','false','/images/games/thumbnails_med_2/the_great_chocolate_chase130x75.gif','/exe/the_great_chocolate_chase-setup.exe?lc=en&ext=the_great_chocolate_chase-setup.exe','Manage exotic international chocolate shops!','Make chocolate treats for international customers in the early 1900s!','false',false,false,'The Great Chocolate Chase');ag(11543210,'Numba','/images/games/numba/numba81x46.gif',1007,115467820,'','false','/images/games/numba/numba16x16.gif',false,11323,'/images/games/numba/numba100x75.jpg','/images/games/numba/numba179x135.jpg','/images/games/numba/numba320x240.jpg','false','/images/games/thumbnails_med_2/numba130x75.gif','/exe/numba-setup.exe?lc=en&ext=numba-setup.exe','Increase your mental fitness!','Create Numba chains in various sequences and increase your mental fitness!','false',false,false,'Numba');ag(11545430,'School House Shuffle','/images/games/school_house_shuffle/school_house_shuffle81x46.gif',110012530,115489657,'','false','/images/games/school_house_shuffle/school_house_shuffle16x16.gif',false,11323,'/images/games/school_house_shuffle/school_house_shuffle100x75.jpg','/images/games/school_house_shuffle/school_house_shuffle179x135.jpg','/images/games/school_house_shuffle/school_house_shuffle320x240.jpg','false','/images/games/thumbnails_med_2/school_house_shuffle130x75.gif','/exe/school_house_shuffle-setup.exe?lc=en&ext=school_house_shuffle-setup.exe','Help students learn and thrive!','Help the students of Brainiac Elementary School learn and thrive!','false',false,false,'School House Shuffle');ag(11551673,'OPERATION MANIA','/images/games/operation_mania/operation_mania81x46.gif',110012530,115551197,'','false','/images/games/operation_mania/operation_mania16x16.gif',false,11323,'/images/games/operation_mania/operation_mania100x75.jpg','/images/games/operation_mania/operation_mania179x135.jpg','/images/games/operation_mania/operation_mania320x240.jpg','false','/images/games/thumbnails_med_2/operation_mania130x75.gif','/exe/OPERATION_Mania-setup_regular.exe?lc=en&ext=OPERATION_Mania-setup_regular.exe','Medical Mayhem in the ER!','Race against the clock to treat patients with Fanatomy ailments in the ER!','false',false,false,'OPERATION Mania (regular)');ag(11557850,'4 Elements','/images/games/4_elements/4_elements81x46.gif',0,115613850,'b637df9a-0045-44d0-adde-4117f0a5b8ec','false','/images/games/4_elements/4_elements16x16.gif',false,11323,'/images/games/4_elements/4_elements100x75.jpg','/images/games/4_elements/4_elements179x135.jpg','/images/games/4_elements/4_elements320x240.jpg','false','/images/games/thumbnails_med_2/4_elements130x75.gif','','Unlock four ancient books of magic!','Unlock four magical books to restore peace to the kingdom!','true',true,true,'4 Elements OLT1');ag(11558267,'Mark and Mandi’s Love Story','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story81x46.gif',1100710,115617643,'','false','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story16x16.gif',false,11323,'/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story100x75.jpg','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story179x135.jpg','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story320x240.jpg','false','/images/games/thumbnails_med_2/mark_and_mandis_love_story130x75.gif','/exe/mark_and_mandi_love_story-setup.exe?lc=en&ext=mark_and_mandi_love_story-setup.exe','A romantic find-the-difference adventure!','A find-the-difference hidden object adventure filled with romance!','false',false,false,'Mark and Mandi Love Story');ag(11558597,'7 Wonders - Treasures of Seven','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven81x46.gif',1100710,115620987,'','false','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven16x16.gif',false,11323,'/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven100x75.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven179x135.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders_treasures_of_seven130x75.gif','/exe/7_wonders_treasures_of_seven-setup.exe?lc=en&ext=7_wonders_treasures_of_seven-setup.exe','Build nine historical structures!','Puzzle your way into the hidden City of the Gods!','false',false,false,'7 Wonders - Treasures of Seven');ac(1004,'Cards','Solitaire For Dummies - Regula');ag(11560627,'Solitaire for Dummies®','/images/games/solitaire_for_dummies/solitaire_for_dummies81x46.gif',1004,115641887,'','false','/images/games/solitaire_for_dummies/solitaire_for_dummies16x16.gif',false,11323,'/images/games/solitaire_for_dummies/solitaire_for_dummies100x75.jpg','/images/games/solitaire_for_dummies/solitaire_for_dummies179x135.jpg','/images/games/solitaire_for_dummies/solitaire_for_dummies320x240.jpg','false','/images/games/thumbnails_med_2/solitaire_for_dummies130x75.gif','/exe/solitaire_for_dummies_regular-setup.exe?lc=en&ext=solitaire_for_dummies_regular-setup.exe','Learn and master 10 different Solitaire games.','Refine your skills in classic Solitaire games or discover new talents.','false',false,false,'Solitaire For Dummies - Regula');ag(11561070,'Herod’s Lost Tomb ©','/images/games/herods_lost_tomb/herods_lost_tomb81x46.gif',1100710,115645380,'','false','/images/games/herods_lost_tomb/herods_lost_tomb16x16.gif',false,11323,'/images/games/herods_lost_tomb/herods_lost_tomb100x75.jpg','/images/games/herods_lost_tomb/herods_lost_tomb179x135.jpg','/images/games/herods_lost_tomb/herods_lost_tomb320x240.jpg','false','/images/games/thumbnails_med_2/herods_lost_tomb130x75.gif','/exe/herods_lost_tomb-setup.exe?lc=en&ext=herods_lost_tomb-setup.exe','An exciting archaeological adventure!','Embark on an exciting archaeological adventure in this hidden-object game!','false',false,false,'Herods Lost Tomb');ag(11563087,'Brain Training for Dummies®','/images/games/brain_dummies/brain_dummies81x46.gif',1007,115665977,'','false','/images/games/brain_dummies/brain_dummies16x16.gif',false,11323,'/images/games/brain_dummies/brain_dummies100x75.jpg','/images/games/brain_dummies/brain_dummies179x135.jpg','/images/games/brain_dummies/brain_dummies320x240.jpg','false','/images/games/thumbnails_med_2/brain_dummies130x75.gif','/exe/brain_training_regular-setup.exe?lc=en&ext=brain_training_regular-setup.exe','Boost Your Brain Power!','15 games to strengthen your brain power.','false',false,false,'Brain Training For Dummies - R');ag(11565287,'Frogs In Love','/images/games/frogs_in_love/frogs_in_love81x46.gif',110012530,115687400,'','false','/images/games/frogs_in_love/frogs_in_love16x16.gif',false,11323,'/images/games/frogs_in_love/frogs_in_love100x75.jpg','/images/games/frogs_in_love/frogs_in_love179x135.jpg','/images/games/frogs_in_love/frogs_in_love320x240.jpg','false','/images/games/thumbnails_med_2/frogs_in_love130x75.gif','/exe/frogs_in_love-setup.exe?lc=en&ext=frogs_in_love-setup.exe','Find love on an enchanted journey!','Master romantic mini games on a journey for true love!','false',false,false,'Frogs In Love');ag(11651620,'World Voyage','/images/games/world_voyage/world_voyage81x46.gif',110012530,116552770,'','false','/images/games/world_voyage/world_voyage16x16.gif',false,11323,'/images/games/world_voyage/world_voyage100x75.jpg','/images/games/world_voyage/world_voyage179x135.jpg','/images/games/world_voyage/world_voyage320x240.jpg','false','/images/games/thumbnails_med_2/world_voyage130x75.gif','/exe/world_voyage-setup.exe?lc=en&ext=world_voyage-setup.exe','Visit 20 world-famous sights!','Visit the world’s most famous sights in this innovative match-3 adventure!','false',false,false,'World Voyage');ag(11657090,'Wild West Quest 2','/images/games/wild_west_quest_2/wild_west_quest_281x46.gif',1100710,116606963,'','false','/images/games/wild_west_quest_2/wild_west_quest_216x16.gif',false,11323,'/images/games/wild_west_quest_2/wild_west_quest_2100x75.jpg','/images/games/wild_west_quest_2/wild_west_quest_2179x135.jpg','/images/games/wild_west_quest_2/wild_west_quest_2320x240.jpg','false','/images/games/thumbnails_med_2/wild_west_quest_2130x75.gif','/exe/wild_west_quest_2-setup.exe?lc=en&ext=wild_west_quest_2-setup.exe','Round Up the Runaway Outlaw!','Round up the runaway outlaw on this hidden object adventure sequel!','false',false,false,'Wild West Quest 2');ag(11666120,'Call Of Atlantis','/images/games/call_of_atlantis/call_of_atlantis81x46.gif',0,116697363,'8ed93af7-1c20-49ff-b721-307746b35bfd','false','/images/games/call_of_atlantis/call_of_atlantis16x16.gif',false,11323,'/images/games/call_of_atlantis/call_of_atlantis100x75.jpg','/images/games/call_of_atlantis/call_of_atlantis179x135.jpg','/images/games/call_of_atlantis/call_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/call_of_atlantis130x75.gif','','Save the legendary continent of Atlantis!','Acquire the seven crystals of power needed to save Atlantis!','true',true,true,'Call Of Atlantis OLT1');ag(11675450,'Party Down','/images/games/party_down/party_down81x46.gif',0,116790847,'b7e80811-320f-4401-a2a0-d5f816e3a49d','false','/images/games/party_down/party_down16x16.gif',false,11323,'/images/games/party_down/party_down100x75.jpg','/images/games/party_down/party_down179x135.jpg','/images/games/party_down/party_down320x240.jpg','false','/images/games/thumbnails_med_2/party_down130x75.gif','','The Ultimate Party Planning Fantasy!','Live the ultimate party planning fantasy as you cater to Hollywood’s elite!','true',false,false,'Party Down OL');ag(11675557,'Search Quest','/images/games/search_quest/search_quest81x46.gif',0,116791417,'a80b2543-4215-49d9-9ea1-86ec784c2957','false','/images/games/search_quest/search_quest16x16.gif',false,11323,'/images/games/search_quest/search_quest100x75.jpg','/images/games/search_quest/search_quest179x135.jpg','/images/games/search_quest/search_quest320x240.jpg','false','/images/games/thumbnails_med_2/search_quest130x75.gif','','A wonderful exploratory game which consists of discovering the objects in a messy background.','A wonderful exploratory game which consists of discovering the objects in a messy background.','true',true,true,'Search Quest OLT1');ag(11679990,'The Enchanting Islands','/images/games/the_enchanting_islands/the_enchanting_islands81x46.gif',1007,116835607,'','false','/images/games/the_enchanting_islands/the_enchanting_islands16x16.gif',false,11323,'/images/games/the_enchanting_islands/the_enchanting_islands100x75.jpg','/images/games/the_enchanting_islands/the_enchanting_islands179x135.jpg','/images/games/the_enchanting_islands/the_enchanting_islands320x240.jpg','false','/images/games/thumbnails_med_2/the_enchanting_islands130x75.gif','/exe/the_enchanting_islands-setup.exe?lc=en&ext=the_enchanting_islands-setup.exe','Match Elements to Cast Spells!','Restore beauty to the Enchanting Islands by collecting elements and casting spells!','false',false,false,'The Enchanting Islands');ag(11681637,'Jewel Quest Solitaire 3','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_381x46.gif',1000,116852880,'','false','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_316x16.gif',false,11323,'/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3100x75.jpg','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3179x135.jpg','/images/games/jewel_quest_solitaire_3/jewel_quest_solitaire_3320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_solitaire_3130x75.gif','/exe/jewel_quest_solitaire_3-setup.exe?lc=en&ext=jewel_quest_solitaire_3-setup.exe','An Explosive Chase for Exotic Secrets!','An exotic chase through addictive solitaire layouts and NEW Jewel Quest boards!','false',false,false,'Jewel Quest Solitaire 3');ag(11684033,'Success Story','/images/games/success_story/success_story81x46.gif',110012530,11687697,'','false','/images/games/success_story/success_story16x16.gif',false,11323,'/images/games/success_story/success_story100x75.jpg','/images/games/success_story/success_story179x135.jpg','/images/games/success_story/success_story320x240.jpg','false','/images/games/thumbnails_med_2/success_story130x75.gif','/exe/success_story-setup.exe?lc=en&ext=success_story-setup.exe','The Ultimate Fast Food Frenzy!','The ultimate time-management frenzy of burgers, fries, and a fast food franchise!','false',false,false,'Success Story');ag(11689593,'Rusty The Fisherman','/images/games/rusty_fisherman/rusty_fisherman81x46.gif',0,116931830,'412e03a8-355b-4baf-9474-c325b9ff4caf','false','/images/games/rusty_fisherman/rusty_fisherman16x16.gif',false,11323,'/images/games/rusty_fisherman/rusty_fisherman100x75.jpg','/images/games/rusty_fisherman/rusty_fisherman179x135.jpg','/images/games/rusty_fisherman/rusty_fisherman320x240.jpg','false','/images/games/thumbnails_med_2/rusty_fisherman130x75.gif','','Feed Rusty the Fisherman!','Help Rusty to fill the net with fish.','true',true,true,'Rusty Fisherman OLT1 AS3');ag(11697630,'Kyobi','/images/games/kyobi/kyobi81x46.gif',0,117012670,'fb588067-97be-42a5-8ebe-f5e75bcba2a2','false','/images/games/kyobi/kyobi16x16.gif',false,11323,'/images/games/kyobi/kyobi100x75.jpg','/images/games/kyobi/kyobi179x135.jpg','/images/games/kyobi/kyobi320x240.jpg','false','/images/games/thumbnails_med_2/kyobi130x75.gif','','Match-3 meets physics fun!','A heady mix of Match 3 and full-on physics!','true',true,true,'Kyobi OLT1 AS3');ag(11698160,'Laura Jones and the Legacy of Nikola Tesla','/images/games/laura_jones_and_teslas_legacy/laura_jones_and_teslas_legacy81x46.gif',1000,117017730,'','false','/images/games/laura_jones_and_teslas_legacy/laura_jones_and_teslas_legacy16x16.gif',false,11323,'/images/games/laura_jones_and_teslas_legacy/laura_jones_and_teslas_legacy100x75.jpg','/images/games/laura_jones_and_teslas_legacy/laura_jones_and_teslas_legacy179x135.jpg','/images/games/laura_jones_and_teslas_legacy/laura_jones_and_teslas_legacy320x240.jpg','false','/images/games/thumbnails_med_2/laura_jones_and_teslas_legacy130x75.gif','/exe/laura_jones2-setup.exe?lc=en&ext=laura_jones2-setup.exe','Uncover the Inventive Secrets of Nikola Tesla!  ','Uncover the inventive secrets of Nikola Tesla through challenging puzzles and hidden object clues!  ','false',false,false,'Laura Jones 2');ag(11700747,'Flower Paradise','/images/games/flower_paradise/flower_paradise81x46.gif',1007,117043780,'','false','/images/games/flower_paradise/flower_paradise16x16.gif',false,11323,'/images/games/flower_paradise/flower_paradise100x75.jpg','/images/games/flower_paradise/flower_paradise179x135.jpg','/images/games/flower_paradise/flower_paradise320x240.jpg','false','/images/games/thumbnails_med_2/flower_paradise130x75.gif','/exe/flower_paradise-setup.exe?lc=en&ext=flower_paradise-setup.exe','Blooming Gardens of Blossoms, Birds, and Butterflies!','Build blooming gardens of blossoms, birds, and butterflies by completing hundreds of puzzles!  ','false',false,false,'Flower Paradise');ag(11702957,'Drugstore Mania','/images/games/drugstore_mania/drugstore_mania81x46.gif',110127790,117065497,'','false','/images/games/drugstore_mania/drugstore_mania16x16.gif',false,11323,'/images/games/drugstore_mania/drugstore_mania100x75.jpg','/images/games/drugstore_mania/drugstore_mania179x135.jpg','/images/games/drugstore_mania/drugstore_mania320x240.jpg','false','/images/games/thumbnails_med_2/drugstore_mania130x75.gif','/exe/drugstore_mania-setup.exe?lc=en&ext=drugstore_mania-setup.exe','Get Your Dose of Pharmacy Fun! Just what the doctor ordered!','Give customers just what the doctor ordered and build a pharmacy empire!','false',false,false,'Drugstore Mania');ag(11738453,'Burger Shop 2','/images/games/burger_shop_2/burger_shop_281x46.gif',1000,117420850,'','false','/images/games/burger_shop_2/burger_shop_216x16.gif',false,11323,'/images/games/burger_shop_2/burger_shop_2100x75.jpg','/images/games/burger_shop_2/burger_shop_2179x135.jpg','/images/games/burger_shop_2/burger_shop_2320x240.jpg','false','/images/games/thumbnails_med_2/burger_shop_2130x75.gif','/exe/burger_shop_2-setup.exe?lc=en&ext=burger_shop_2-setup.exe','Rebuild Your Fast-food Empire!','Rebuild your fast-food empire! Unwrap the secrets behind your original chain’s demise!','false',false,false,'Burger Shop 2');ag(11740190,'Slingo Supreme','/images/games/slingo_supreme/slingo_supreme81x46.gif',0,117437230,'1f300eb0-6e55-4d4f-b99e-44bea7a2498e','false','/images/games/slingo_supreme/slingo_supreme16x16.gif',false,11323,'/images/games/slingo_supreme/slingo_supreme100x75.jpg','/images/games/slingo_supreme/slingo_supreme179x135.jpg','/images/games/slingo_supreme/slingo_supreme320x240.jpg','false','/images/games/thumbnails_med_2/slingo_supreme130x75.gif','','Create 16,000 different Slingo games!','Unlock all-new power-ups to create 16,000 different Slingo games!','true',false,false,'Slingo Supreme OL');ag(11745870,'Margrave Manor 2: The Lost Ship','/images/games/margrave_manor_2/margrave_manor_281x46.gif',1000,117494990,'','false','/images/games/margrave_manor_2/margrave_manor_216x16.gif',false,11323,'/images/games/margrave_manor_2/margrave_manor_2100x75.jpg','/images/games/margrave_manor_2/margrave_manor_2179x135.jpg','/images/games/margrave_manor_2/margrave_manor_2320x240.jpg','false','/images/games/thumbnails_med_2/margrave_manor_2130x75.gif','/exe/margrave_manor_2-setup.exe?lc=en&ext=margrave_manor_2-setup.exe','Reveal the Secrets of the Aurora Dusk!','Reveal the hidden secrets of the Aurora Dusk, a spooky treasure ship!','false',false,false,'Margrave Manor 2');ag(11757710,'The Mystery of the Mary Celeste','/images/games/mary_celeste/mary_celeste81x46.gif',1100710,117616790,'','false','/images/games/mary_celeste/mary_celeste16x16.gif',false,11323,'/images/games/mary_celeste/mary_celeste100x75.jpg','/images/games/mary_celeste/mary_celeste179x135.jpg','/images/games/mary_celeste/mary_celeste320x240.jpg','false','/images/games/thumbnails_med_2/mary_celeste130x75.gif','/exe/mystery_of_mary_celeste-setup.exe?lc=en&ext=mystery_of_mary_celeste-setup.exe','Set Sail to Solve a Ghostly Mystery!','Set sail to solve the ghostly mystery of a real-life, ill-fated ship!','false',false,false,'Mystery of Mary Celester');ag(11758667,'Magician’s Handbook II: Blacklore','/images/games/magicians_handbook2/magicians_handbook281x46.gif',1100710,117625647,'','false','/images/games/magicians_handbook2/magicians_handbook216x16.gif',false,11323,'/images/games/magicians_handbook2/magicians_handbook2100x75.jpg','/images/games/magicians_handbook2/magicians_handbook2179x135.jpg','/images/games/magicians_handbook2/magicians_handbook2320x240.jpg','false','/images/games/thumbnails_med_2/magicians_handbook2130x75.gif','/exe/the_magicians_handbook_2-setup.exe?lc=en&ext=the_magicians_handbook_2-setup.exe','Stop BlackLore’s Evil Enchantments!','Stop BlackLore’s evil enchantments in this high-seas hidden object adventure!','false',false,false,'The Magicians Handbook 2 Black');ag(11765287,'Burger Time Deluxe','/images/games/burger_time_deluxe/burger_time_deluxe81x46.gif',110012530,117691883,'','false','/images/games/burger_time_deluxe/burger_time_deluxe16x16.gif',false,11323,'/images/games/burger_time_deluxe/burger_time_deluxe100x75.jpg','/images/games/burger_time_deluxe/burger_time_deluxe179x135.jpg','/images/games/burger_time_deluxe/burger_time_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/burger_time_deluxe130x75.gif','/exe/burger_time_deluxe-setup.exe?lc=en&ext=burger_time_deluxe-setup.exe','A Condiment Crusade of Good vs. Evil!','Stack burgers and thwart a vinegar villain in this condiment crusade of good vs. evil!','false',false,false,'Burger Time Deluxe');ag(11778787,'Double Play: Jojo’s Fashion Show 1 & 2','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_281x46.gif',110127790,117829807,'','false','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_216x16.gif',false,11323,'/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2100x75.jpg','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2179x135.jpg','/images/games/jojos_fashion_show1_2/jojos_fashion_show1_2320x240.jpg','false','/images/games/thumbnails_med_2/jojos_fashion_show1_2130x75.gif','/exe/jojos_fashion_show_bundle-setup.exe?lc=en&ext=jojos_fashion_show_bundle-setup.exe','Strut your Styles on the Runway – 2-for-1!  ','Strut your styles on runways round the world – 2 games for the price of 1!  ','false',false,false,'Jojos Fashion Show bundle');ag(11780160,'Hostile Makeover','/images/games/hostile_makeover/hostile_makeover81x46.gif',1100710,117843530,'','false','/images/games/hostile_makeover/hostile_makeover16x16.gif',false,11323,'/images/games/hostile_makeover/hostile_makeover100x75.jpg','/images/games/hostile_makeover/hostile_makeover179x135.jpg','/images/games/hostile_makeover/hostile_makeover320x240.jpg','false','/images/games/thumbnails_med_2/hostile_makeover130x75.gif','/exe/hostile_makeover-setup.exe?lc=en&ext=hostile_makeover-setup.exe','If Looks Could Kill...','Crime meets couture in the mysterious case of a murdered supermodel!','false',false,false,'Hostile Makeover');ag(11781177,'Mystery PI Special Edition Bundle','/images/games/mystery_PI_bundle/mystery_PI_bundle81x46.gif',1100710,117853107,'','false','/images/games/mystery_PI_bundle/mystery_PI_bundle16x16.gif',false,11323,'/images/games/mystery_PI_bundle/mystery_PI_bundle100x75.jpg','/images/games/mystery_PI_bundle/mystery_PI_bundle179x135.jpg','/images/games/mystery_PI_bundle/mystery_PI_bundle320x240.jpg','false','/images/games/thumbnails_med_2/mystery_PI_bundle130x75.gif','/exe/mystery_PI_SE_bundle-setup.exe?lc=en&ext=mystery_PI_SE_bundle-setup.exe','Crack Cases of Missing Millions - 2-for-1!','Crack hidden object cases of missing millions - 2 for the price of 1!','false',false,false,'Mystery PI SE');ag(11793097,'Hidden world of Art 2: Undercover Art Agent','/images/games/hidden_art_2/hidden_art_281x46.gif',1100710,117977783,'','false','/images/games/hidden_art_2/hidden_art_216x16.gif',false,11323,'/images/games/hidden_art_2/hidden_art_2100x75.jpg','/images/games/hidden_art_2/hidden_art_2179x135.jpg','/images/games/hidden_art_2/hidden_art_2320x240.jpg','false','/images/games/thumbnails_med_2/hidden_art_2130x75.gif','/exe/hidden_world_of_art_2-setup.exe?lc=en&ext=hidden_world_of_art_2-setup.exe','Restore world famous paintings!','Restore priceless paintings that have been damaged by art thieves!','false',false,false,'Hidden World of Art 2');ag(11796713,'Jewel Quest Mysteries 2','/images/games/jewel_quest_mysteries2/jewel_quest_mysteries281x46.gif',1100710,118017277,'','false','/images/games/jewel_quest_mysteries2/jewel_quest_mysteries216x16.gif',false,11323,'/images/games/jewel_quest_mysteries2/jewel_quest_mysteries2100x75.jpg','/images/games/jewel_quest_mysteries2/jewel_quest_mysteries2179x135.jpg','/images/games/jewel_quest_mysteries2/jewel_quest_mysteries2320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_mysteries2130x75.gif','/exe/jewel_quest_mysteries_2-setup.exe?lc=en&ext=jewel_quest_mysteries_2-setup.exe','Dazzling Sequel to Hidden Object Mega-hit!','Navigate treacherous terrain in the dazzling sequel to a hidden object mega-hit!','false',false,false,'Jewel Quest Mysteries 2');ag(11797443,'Insider Tales: The Secret of Casanova','/images/games/insider_tales_casanova/insider_tales_casanova81x46.gif',1100710,118024297,'','false','/images/games/insider_tales_casanova/insider_tales_casanova16x16.gif',false,11323,'/images/games/insider_tales_casanova/insider_tales_casanova100x75.jpg','/images/games/insider_tales_casanova/insider_tales_casanova179x135.jpg','/images/games/insider_tales_casanova/insider_tales_casanova320x240.jpg','false','/images/games/thumbnails_med_2/insider_tales_casanova130x75.gif','/exe/insider_tales_casanova-setup.exe?lc=en&ext=insider_tales_casanova-setup.exe','Track the Past of the Infamous Charmer!','Track the past of the infamous charmer across beautiful European cities!','false',false,false,'Insider Tales Casanova');ag(11801943,'Rainbow Express','/images/games/RainbowExpress/RainbowExpress81x46.gif',0,118071887,'1cb1a401-52d3-4988-be99-9c68ef07d9f2','false','/images/games/RainbowExpress/RainbowExpress16x16.gif',false,11323,'/images/games/RainbowExpress/RainbowExpress100x75.jpg','/images/games/RainbowExpress/RainbowExpress179x135.jpg','/images/games/RainbowExpress/RainbowExpress320x240.jpg','false','/images/games/thumbnails_med_2/RainbowExpress130x75.gif','','Assemble the longest wagonage!','Combine the wagonage so that all the city-folk could leave for a journey!','true',true,true,'Rainbow Express OLT1 AS3');ag(11807553,'Hotel Dash™: Suite Success™','/images/games/hoteldash_suite_success/hoteldash_suite_success81x46.gif',110127790,118136913,'','false','/images/games/hoteldash_suite_success/hoteldash_suite_success16x16.gif',false,11323,'/images/games/hoteldash_suite_success/hoteldash_suite_success100x75.jpg','/images/games/hoteldash_suite_success/hoteldash_suite_success179x135.jpg','/images/games/hoteldash_suite_success/hoteldash_suite_success320x240.jpg','false','/images/games/thumbnails_med_2/hoteldash_suite_success130x75.gif','/exe/hotel_dash_suite_success-setup.exe?lc=en&ext=hotel_dash_suite_success-setup.exe','Hotel Management Mayhem in DinerTown™!','Check in for hotel management mishaps and mayhem in beloved DinerTown™!','false',false,false,'Hotel Dash Suite Success');ag(11819523,'Tropical Mania','/images/games/Tropical_mania/Tropical_mania81x46.gif',110127790,118256240,'','false','/images/games/Tropical_mania/Tropical_mania16x16.gif',false,11323,'/images/games/Tropical_mania/Tropical_mania100x75.jpg','/images/games/Tropical_mania/Tropical_mania179x135.jpg','/images/games/Tropical_mania/Tropical_mania320x240.jpg','false','/images/games/thumbnails_med_2/Tropical_mania130x75.gif','/exe/tropical_mania_53129567-setup.exe?lc=en&ext=tropical_mania_53129567-setup.exe','Manage an Island Resort!','Run a remote island resort in time management paradise!','false',false,false,'Tropical Mania');ag(110012700,'Atomaders','/images/games/Atomader/atomaders81x46.jpg',0,110012623,'','false','/images/games/Atomader/atomaders16x16.gif',false,11323,'/images/games/Atomader/atomaders100x75.jpg','/images/games/Atomader/atomaders179x135.jpg','/images/games/Atomader/atomaders320x240.jpg','false','/images/games/thumbnails_med_2/atomaders130x75.gif','/exe/Atomaders-Setup.exe?lc=en&ext=Atomaders-Setup.exe','Liberate distant planets from cyborgs','Obliterate enemy machines as you liberate distant planets from cyborgs .','false',false,false,'atomaders');ag(110028110,'Ricochet Xtreme','/images/games/rebound/ricochet81x46.gif',110012530,1100280,'','false','/images/games/rebound/ricochet16x16.gif',false,11323,'/images/games/rebound/ricochet100x75.jpg','/images/games/rebound/ricochet179x135.jpg','/images/games/rebound/ricochet320x240.jpg','false','/images/games/thumbnails_med_2/ricochet130x75.gif','/exe/Ricochet-Setup.exe?lc=en&ext=Ricochet-Setup.exe','170 levels of heart pounding fun!','Maneuver your way through 170 levels of heart pounding fun!','false',false,false,'Ricochet');ag(110056577,'Backgammon','/images/games/backgammon_mp/backgammon_mp81x46.gif',0,110057420,'7c7b4ceb-7ce8-4011-ba48-e3ab6541786f','true','/images/games/backgammon_mp/backgammon_mp16x16.gif',false,11323,'/images/games/backgammon_mp/backgammon_mp100x75.jpg','/images/games/backgammon_mp/backgammon_mp179x135.jpg','/images/games/backgammon_mp/backgammon_mp320x240.jpg','false','/images/games/thumbnails_med_2/backgammon_mp130x75.gif','','Enjoy a game of classic Backgammon.','Enjoy a game of classic Backgammon with a friend, or meet someone new online to play with!','true',true,true,'MP_Backgammon');ag(110060513,'Checkers','/images/games/checkers/checkers81x46.gif',0,110060403,'4cf2c096-330a-4905-b21f-37dd7412b890','true','/images/games/checkers/checkers16x16.gif',false,11323,'/images/games/checkers/checkers100x75.jpg','/images/games/checkers/checkers179x135.jpg','/images/games/checkers/checkers320x240.jpg','false','/images/games/thumbnails_med_2/checkers130x75.gif','','Enjoy classic Checkers with a friend, or meet someone new online to play with!','Enjoy a game of classic Checkers with a friend, or meet someone new online to play with!','true',true,true,'MP_Checkers');ag(110074983,'BeTrapped!','/images/games/betrapped/betrapped81x46_1.gif',1007,11007977,'f0b93a63-b9e6-4541-8290-a09a84962b88','false','/images/games/betrapped/betrapped16x16.gif',false,11323,'/images/games/betrapped/betrapped100x75.jpg','/images/games/betrapped/betrapped179x135.jpg','/images/games/betrapped/betrapped320x240.jpg','false','/images/games/thumbnails_med_2/betrapped130x75.gif','/exe/betrapped-setup.exe?lc=en&ext=betrapped-setup.exe','Uncover clues to solve a murder. ','Uncover clues to solve a murder in this engaging whodunit.','false',false,false,'betrapped_adventure');ag(110075733,'Chainz','/images/games/chainz/chainz81x46.gif',1007,110080263,'','false','/images/games/chainz/chainz16x16.gif',false,11323,'/images/games/chainz/chainz100x75.jpg','/images/games/chainz/chainz179x135.jpg','/images/games/chainz/chainz320x240.jpg','false','/images/games/thumbnails_med_2/chainz130x75.gif','/exe/Chainz-Setup.exe?lc=en&ext=Chainz-Setup.exe','Unchain your brain!','Create a chain reaction with this riveting puzzle game!','false',false,false,'chainz');ag(110109903,'Flip Words','/images/games/flipwords/flipwords81x46.gif',110060583,110115763,'0c96de64-a387-4361-8822-b0f5abebd3e6','false','/images/games/flipwords/flipwords16x16.gif',false,11323,'/images/games/flipwords/flipwords100x75.jpg','/images/games/flipwords/flipwords179x135.jpg','/images/games/flipwords/flipwords320x240.jpg','false','/images/games/thumbnails_med_2/flipwords130x75.gif','/exe/Flip_Words-Setup.exe?lc=en&ext=Flip_Words-Setup.exe','A puzzle game for word wizards!','Click on letters to make words and solve familiar phrases.','false',false,true,'flip_words');ag(110111700,'Zuma Deluxe','/images/games/zuma/zuma81x46.gif',110012530,11011713,'1ac421e8-393f-4538-b738-baefaca986e9','false','/images/games/zuma/zuma16x16.gif',false,11323,'/images/games/zuma/zuma100x75.jpg','/images/games/zuma/zuma179x135.jpg','/images/games/zuma/zuma320x240.jpg','false','/images/games/thumbnails_med_2/zuma130x75.gif','/exe/Zuma_Deluxe-setup.exe?lc=en&ext=Zuma_Deluxe-setup.exe','Unearth legendary secrets of the Zuma!','Unearth 13 ancient temples in this puzzler with ball-blasting action.','false',false,false,'Zuma');ag(110125217,'Infinite Crosswords','/images/games/infinite_crosswords/infinite_crosswords81x46.jpg',0,110131217,'','false','/images/games/infinite_crosswords/infinite_crosswords16x16.gif',false,11323,'/images/games/infinite_crosswords/infinite_crosswords100x75.jpg','/images/games/infinite_crosswords/infinite_crosswords179x135.jpg','/images/games/infinite_crosswords/infinite_crosswords320x240.jpg','false','/images/games/thumbnails_med_2/infinite_crosswords130x75.gif','/exe/infinite_crosswords-setup.exe?lc=en&ext=infinite_crosswords-setup.exe','Solve over 100 crosswords!','Choose from 100 crosswords in seven categories and multiple difficulty levels.','false',false,false,'infinite_crosswords');ag(110160733,'Slingo','/images/games/slingo/slingo81x46.gif',110060583,11016643,'8cc6c4d9-73fd-4e6d-afa9-394761263e8e','false','/images/games/slingo/slingo16x16.gif',false,11323,'/images/games/slingo/slingo100x75.jpg','/images/games/slingo/slingo179x135.jpg','/images/games/slingo/slingo320x240.jpg','false','/images/games/thumbnails_med_2/slingo130x75.gif','/exe/slingo-setup.exe?lc=en&ext=slingo-setup.exe','Where Bingo meets Slots!','An addictive and exciting combination of Slots and Bingo!','false',false,false,'slingo');ag(110184263,'Puzzle Express','/images/games/puzzleexpress/puzzleexpress81x46.gif',0,110190170,'24568798-3468-4267-981c-4a6b5f4346d3','false','/images/games/puzzleexpress/puzzleexpress16x16.gif',false,11323,'/images/games/puzzleexpress/puzzleexpress100x75.jpg','/images/games/puzzleexpress/puzzleexpress179x135.jpg','/images/games/puzzleexpress/puzzleexpress320x240.jpg','false','/images/games/thumbnails_med_2/puzzleexpress130x75.gif','/exe/puzzle_express-setup.exe?lc=en&ext=puzzle_express-setup.exe','Hop aboard for puzzle fun!','Grab puzzle pieces that reveal pictures as you ride the railways.','false',false,false,'puzzle_express');ag(110194827,'Jewel Quest','/images/games/jewelquest/jewelquest81x46.gif',1007,110200560,'bf310de0-d814-4e5d-aa56-c17847ec4d96','false','/images/games/jewelquest/jewelquest16x16.gif',false,11323,'/images/games/jewelquest/jewelquest100x75.jpg','/images/games/jewelquest/jewelquest179x135.jpg','/images/games/jewelquest/jewelquest320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest130x75.gif','/exe/jewelquest-setup.exe?lc=en&ext=jewelquest-setup.exe','A mesmerizing archeological puzzler!','Find sparkling treasures in ancient Mayan ruins in this mesmerizing puzzler!','false',false,false,'jewel_quest');ag(110206700,'Bejeweled','/images/games/bejeweled/bejeweled81x46.gif',1007,110212733,'','false','/images/games/bejeweled/bejeweled16x16.gif',false,11323,'/images/games/bejeweled/bejeweled100x75.jpg','/images/games/bejeweled/bejeweled179x135.jpg','/images/games/bejeweled/bejeweled320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled130x75.gif','/exe/bejeweled-setup.exe?lc=en&ext=bejeweled-setup.exe','An intense gem swapping puzzler!','Make fast visual connections in this intense gem swapping puzzler!','false',false,false,'bejeweled');ag(110219450,'Dino And Aliens','/images/games/dinoandaliens/dinoandaliens81x46.gif',110060583,110225310,'','false','/images/games/dinoandaliens/dinoandaliens16x16.gif',false,11323,'/images/games/dinoandaliens/dinoandaliens100x75.jpg','/images/games/dinoandaliens/dinoandaliens179x135.jpg','/images/games/dinoandaliens/dinoandaliens320x240.jpg','false','/images/games/dinoandaliens/dinoandaliens130x75.gif','/exe/dino_and_aliens-setup.exe?lc=en&ext=dino_and_aliens-setup.exe','Help Dino fend off aliens!','Help Dino battle aliens and reclaim his carefree world!','false',false,false,'dinosaliens');ag(110246513,'Catan- The Computer Game','/images/games/catan/catan81x46.gif',1004,110252700,'','false','/images/games/catan/catan16x16.gif',false,11323,'/images/games/catan/catan100x75.jpg','/images/games/catan/catan179x135.jpg','/images/games/catan/catan320x240.jpg','false','/images/games/thumbnails_med_2/catan130x75.gif','/exe/catan-setup.exe?lc=en&ext=catan-setup.exe','Discover the World of Catan today!','Experience the World of Catan in this single-player version of The Settlers of Catan board game!','false',false,false,'Catan_carb_60');ag(110250590,'A Series of Unfortunate Events','/images/games/unfortunate_events/unfortunate_events81x46.gif',1007,110256293,'4abc8705-c2a2-4625-b49d-0369f241d14c','false','/images/games/unfortunate_events/unfortunate_events16x16.gif',false,11323,'/images/games/unfortunate_events/unfortunate_events100x75.jpg','/images/games/unfortunate_events/unfortunate_events179x135.jpg','/images/games/unfortunate_events/unfortunate_events320x240.jpg','false','/images/games/thumbnails_med_2/unfortunate_events130x75.gif','/exe/unfortunate_events-setup.exe?lc=en&ext=unfortunate_events-setup.exe','Foil a villain!','Foil Count Olaf and stop his unmentionable horrors.','false',false,false,'A Series of Unfortunate Events');ag(110261550,'Shape Solitaire','/images/games/shape_solitaire/shapesolitaire81x46.jpg',1004,110268750,'c6fea433-d8a1-4174-bff7-747c500c40d9','false','/images/games/shape_solitaire/shapesolitaire16x16.gif',false,11323,'/images/games/shape_solitaire/shapesolitaire100x75.jpg','/images/games/shape_solitaire/shapesolitaire179x135.jpg','/images/games/shapesolitaire/shapesolitaire320x240.jpg','false','/images/games/thumbnails_med_2/ShapeSolitaire130x75.jpg','/exe/shape_solitaire-setup.exe?lc=en&ext=shape_solitaire-setup.exe','Solitaire with an all new spin!','Fans of solitaire will love this new spin on the classic game!','false',false,false,'shape_solitaire');ag(110265407,'Bejeweled 2 Deluxe','/images/games/bejeweled2/bejeweled2_81x46.gif',1007,110272767,'df68ede4-257b-4598-9d93-3d6cfa55512b','false','/images/games/bejeweled2/bejeweled216x16.gif',false,11323,'/images/games/bejeweled2/bejeweled2100x75.jpg','/images/games/bejeweled2/bejeweled2179x135.jpg','/images/games/bejeweled2/bejeweled2320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled2_130x75.jpg','/exe/bejeweled2-setup.exe?lc=en&ext=bejeweled2-setup.exe','New explosive gems & special effects!','The gem-swapping puzzler - more addictive than ever!','false',false,false,'bejeweled2');ag(110273157,'Ricochet Lost Worlds: Recharged','/images/games/ricochet_recharged/ricochet_recharged81x46.gif',110127790,110280723,'','false','/images/games/ricochet_recharged/ricochet_recharged16x16.gif',false,11323,'/images/games/ricochet_recharged/ricochet_recharged100x75.jpg','/images/games/ricochet_recharged/ricochet_recharged179x135.jpg','/images/games/ricochet_recharged/ricochet_recharged320x240.jpg','false','/images/games/thumbnails_med_2/ricochet_recharged170x135.gif','/exe/ricochet_recharged-setup.exe?lc=en&ext=ricochet_recharged-setup.exe','Brick-busting now better than ever!','Smash your way through over 350 brick-busting rounds!','false',false,false,'ricochet_recharged');ag(110293343,'Pool','/images/games/pool_mp/pool_mp81x46.gif',0,110300993,'97712124-1bee-4edc-801e-49cc6db0b2ba','true','/images/games/pool_mp/pool_mp16x16.gif',false,11323,'/images/games/pool_mp/pool_mp100x75.jpg','/images/games/pool_mp/pool_mp179x135.jpg','/images/games/pool_mp/pool_mp320x240.jpg','false','/images/games/thumbnails_med_2/pool_mp130x75.gif','','The classic 8-Ball game - choose stripes or solids and be the first to pocket the 8-ball to win!','Rack &rsquo;em and break &rsquo;em in this online version of the classic 8-ball game. Choose stripes or solids, clear all seven of your balls and then pocket the 8-ball to win - just don&rsquo;t pocket the cue ball! ','true',true,true,'MP_Pool');ac(1006,'Mahjong','mah_jong_quest');ag(110294723,'Mah Jong Quest','/images/games/mah_jong_quest/mah_jong_quest81x46.gif',1006,110301223,'b7f9b4a0-8dfa-4dcb-a1f6-17e09de377a4','false','/images/games/mah_jong_quest/mah_jong_quest16x16.gif',false,11323,'/images/games/mah_jong_quest/mah_jong_quest100x75.jpg','/images/games/mah_jong_quest/mah_jong_quest179x135.jpg','/images/games/mah_jong_quest/mah_jong_quest320x240.jpg','false','/images/games/thumbnails_med_2/mah_jong_quest130x75.jpg','/exe/mah_jong_quest-setup.exe?lc=en&ext=mah_jong_quest-setup.exe','Rebuild the empire with tiles!','Rebuild the empire by using an ancient set of Mah Jong tiles!','false',false,false,'mah_jong_quest');ag(110300453,'Spin And Win','/images/games/spin_and_win/spin_and_win81x46.gif',1004,110307530,'888066c2-cb45-4490-a1d3-28baec30e95d','false','/images/games/spin_and_win/spin_and_win16x16.gif',false,11323,'/images/games/spin_and_win/spin_and_win100x75.jpg','/images/games/spin_and_win/spin_and_win179x135.jpg','/images/games/spin_and_win/spin_and_win320x240.jpg','false','/images/games/thumbnails_med_2/spin_and_win130x75.gif','/exe/spin_and_win-setup.exe?lc=en&ext=spin_and_win-setup.exe','Spin the wheel and win!','Play slots, roll the dice and bet on horses to win prizes!','false',false,false,'spin_and_win');ag(110305887,'Diner Dash','/images/games/diner_dash/diner_dash81x46.gif',1000,11031273,'','false','/images/games/diner_dash/diner_dash16x16.gif',false,11323,'/images/games/diner_dash/diner_dash100x75.jpg','/images/games/diner_dash/diner_dash179x135.jpg','/images/games/diner_dash/diner_dash320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash130x75.gif','/exe/diner_dash-setup.exe?lc=en&ext=diner_dash-setup.exe','Build a restaurant empire!','Help Flo the former stock broker grow her fledgling diner to a five star restaurant.','false',false,false,'diner_dash');ag(110313550,'Jigsaw 365','/images/games/jigsaw365/jigsaw36581x46.gif',110060583,110320740,'','false','/images/games/jigsaw365/jigsaw36516x16.gif',false,11323,'/images/games/jigsaw365/jigsaw365100x75.jpg','/images/games/jigsaw365/jigsaw365179x135.jpg','/images/games/jigsaw365/jigsaw365320x240.jpg','false','/images/games/thumbnails_med_2/jigsaw365130x75.gif','/exe/jigsaw365-setup.exe?lc=en&ext=jigsaw365-setup.exe','A year of puzzles - at your fingertips','365 puzzles at your fingertips with over 80 puzzle styles for endless fun. Use your own pics too!','false',false,false,'Jigsaw 365');ag(110322783,'Big Kahuna Reef','/images/games/big_kahuna_reef/big_kahuna_reef81x46.gif',110060583,110327910,'a4f7b541-b5e4-433b-b186-05eaa39f5f15','false','/images/games/big_kahuna_reef/big_kahuna_reef16x16.gif',false,11323,'/images/games/big_kahuna_reef/big_kahuna_reef100x75.jpg','/images/games/big_kahuna_reef/big_kahuna_reef179x135.jpg','/images/games/big_kahuna_reef/big_kahuna_reef320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna_reef130x75.gif','/exe/big_kahuna_reef-setup.exe?lc=en&ext=big_kahuna_reef-setup.exe','Match shells & Swim the Reef! ','Dive the Hawaiian reefs in your quest for a mystical totem!','false',false,false,'Big Kahuna Reef');ag(110339673,'Chess','/images/games/chess_mp/chess_mp81x46.gif',0,110342160,'5c3ff3ae-2566-4937-b22e-7bf9680c7073','true','/images/games/chess_mp/chess_mp16x16.gif',false,11323,'/images/games/chess_mp/chess_mp100x75.jpg','/images/games/chess_mp/chess_mp179x135.jpg','/images/games/chess_mp/chess_mp320x240.jpg','false','/images/games/thumbnails_med_2/chess_mp130x75.gif','','Become a champion Chess player online.','Become a champion Chess player online.','true',true,true,'MP_chess');ag(110386197,'Darts: 301','/images/games/darts_mp/darts_mp81x46.gif',0,110390167,'d221d8b9-dadb-4b23-b3e8-f8e7bd6b74c7','true','/images/games/darts_mp/darts_mp16x16.gif',false,11323,'/images/games/darts_mp/darts_mp100x75.jpg','/images/games/darts_mp/darts_mp179x135.jpg','/images/games/darts_mp/darts_mp320x240.jpg','false','/images/multi/darts_mp/darts_mp130x75.gif','','Go for the bulls-eye in this classic game of darts!','Aim for the bulls-eye and be the first to reduce your score to zero by throwing your darts at the target.','true',true,true,'MP_darts(beta)');ag(110411970,'Chuzzle','/images/games/Chuzzle/Chuzzle81x46.gif',1007,110412127,'','false','/images/games/Chuzzle/Chuzzle16x16.gif',false,11323,'/images/games/Chuzzle/Chuzzle100x75.jpg','/images/games/Chuzzle/Chuzzle179x135.jpg','/images/games/Chuzzle/Chuzzle320x240.jpg','false','/images/games/thumbnails_med_2/Chuzzle130x75.gif','/exe/chuzzle-setup.exe?lc=en&ext=chuzzle-setup.exe','Hear ’em giggle and squeak!','Earn trophies, unlock secret games and hear ’em squeak!','false',false,false,'Chuzzle');ag(110422467,'Tik&rsquo;s Texas Hold &rsquo;em','/images/games/tiks_texas_holdem/tiks_texas81x46.gif',1004,110423840,'','false','/images/games/tiks_texas_holdem/tiks_texas16x16.gif',false,11323,'/images/games/tiks_texas_holdem/tiks_texas100x75.jpg','/images/games/tiks_texas_holdem/tiks_texas179x135.jpg','/images/games/tiks_texas_holdem/tiks_texas320x240.jpg','false','/images/games/thumbnails_med_2/tiks_texas130x75.gif','/exe/tiks_texas_holdem-setup.exe?lc=en&ext=tiks_texas_holdem-setup.exe','The most realistic poker around!','Enjoy the thrill of the perfect hand...or the perfect bluff!','false',false,false,'Tiks Texas Hold em');ag(110432550,'Astroavenger','/images/games/astroavenger/astroavenger81x46.gif',0,110433990,'','false','/images/games/astroavenger/astroavenger16x16.gif',false,11323,'/images/games/astroavenger/astroavenger100x75.jpg','/images/games/astroavenger/astroavenger179x135.jpg','/images/games/astroavenger/astroavenger320x240.jpg','false','/images/games/thumbnails_med_2/astroavenger_130x75.gif','/exe/astroavenger-setup.exe?lc=en&ext=astroavenger-setup.exe','Insane space shooter with twisted missions!','Strap yourself in for this insane space shooter with twisted missions!','false',false,false,'Astroavenger');ag(110474497,'Sudoku Quest','/images/games/sudoku_quest/sudokuquest81x46.gif',1007,110475607,'0727b7fd-3aae-4036-a99a-2eba3eb8686b','false','/images/games/sudoku_quest/sudokuquest16x16.gif',false,11323,'/images/games/sudoku_quest/sudokuquest100x75.jpg','/images/games/sudoku_quest/sudokuquest179x135.jpg','/images/games/sudoku_quest/sudokuquest320x240.jpg','false','/images/games/thumbnails_med_2/sudokuquest130x75.jpg','/exe/sudoku_quest-setup.exe?lc=en&ext=sudoku_quest-setup.exe','Do <i>you</i> Sudoku?','The puzzle game that has taken the world by storm. Do <i>you</i> Sudoku?','false',false,false,'Sudoku Quest');ag(110486387,'Darts: Cricket','/images/games/darts_cricket_mp/darts_cricket_mp81x46.gif',0,110487250,'8ad67b25-2f2c-4ade-84b4-028f7a3f77f7','true','/images/games/darts_cricket_mp/darts_cricket_mp16x16.gif',false,11323,'/images/games/darts_cricket_mp/darts_cricket_mp100x75.jpg','/images/games/darts_cricket_mp/darts_cricket_mp179x135.jpg','/images/games/darts_cricket_mp/darts_cricket_mp320x240.jpg','false','/images/games/thumbnails_med_2/darts_cricket_mp130x75.gif','','A clever variation of darts.','Combine your strategy and skills in this clever variation of darts','true',true,true,'MP_Darts: Cricket');ag(110490143,'Cinema Tycoon','/images/games/cinema_tycoon/cinematycoon81x46.gif',110012530,110491423,'','false','/images/games/cinema_tycoon/cinematycoon16x16.gif',false,11323,'/images/games/cinema_tycoon/cinematycoon100x75.jpg','/images/games/cinema_tycoon/cinematycoon179x135.jpg','/images/games/cinema_tycoon/cinematycoon320x240.jpg','false','/images/games/thumbnails_med_2/cinematycoon130x75.jpg','/exe/cinema_tycoon-setup.exe?lc=en&ext=cinema_tycoon-setup.exe','Do you have what it takes to become a Cinema Tycoon?','Can you build a small Cinema into the next Mega-Plex? Cinema Tycoon lets anyone try!','false',false,false,'Cinema Tycoon');ag(110516917,'Trijinx','/images/games/Trijinx/Trijinx81x46.gif',1007,110517887,'','false','/images/games/Trijinx/Trijinx16x16.gif',false,11323,'/images/games/Trijinx/Trijinx100x75.jpg','/images/games/Trijinx/Trijinx179x135.jpg','/images/games/Trijinx/Trijinx320x240.jpg','false','/images/games/thumbnails_med_2/trijinx130x75.jpg','/exe/trijinx-setup.exe?lc=en&ext=trijinx-setup.exe','Puzzle your way through ancient tombs!  ','Unlock the mystery of TriJinx, the action-puzzle with a tumbling twist!','false',false,false,'Trijinx');ag(110529370,'Chainz 2: Relinked','/images/games/Chainz_2_Relinked/Chainz2_81x46.gif',1007,110530357,'cef4dc49-9188-4fcc-8d69-d29a2a462a53','false','/images/games/Chainz_2_Relinked/chainz216x16.gif',false,11323,'/images/games/Chainz_2_Relinked/Chainz2_100x75.jpg','/images/games/Chainz_2_Relinked/Chainz2_179x135.jpg','/images/games/Chainz_2_Relinked/Chainz2_320x240.jpg','false','/images/games/thumbnails_med_2/chainz2_130x75.gif','/exe/Chainz_2_Relinked-setup.exe?lc=en&ext=Chainz_2_Relinked-setup.exe','Link-matching madness to the max!','More link-matching madness featuring exciting new game modes!','false',false,false,'Chainz 2: Relinked');ag(110551697,'Granny In Paradise','/images/games/granny_paradise/granny_paradise81x46.gif',110060583,110553917,'6905917b-cc83-444f-8777-0a2546649409','false','/images/games/granny_paradise/granny_paradise16x16.gif',false,11323,'/images/games/granny_paradise/granny_paradise100x75.jpg','/images/games/granny_paradise/granny_paradise179x135.jpg','/images/games/granny_paradise/granny_paradise320x240.jpg','false','/images/games/thumbnails_med_2/granny_paradise130x75.gif','/exe/Granny_In_Paradise-setup.exe?lc=en&ext=Granny_In_Paradise-setup.exe','Help Granny rescue her kitties!','Help Granny rescue her kitties and outwit the nefarious Dr. Meow!','false',false,false,'Granny In Paradise');ag(110554843,'Pat Sajak’s Lucky Letters','/images/games/Pat_Sajaks_Lucky_Letters/LuckyLetters81x46.jpg',110060583,11055797,'e63640df-a448-460e-ac8d-0375d6d61ac3','false','/images/games/Pat_Sajaks_Lucky_Letters/LuckyLetters16x16.gif',false,11323,'/images/games/Pat_Sajaks_Lucky_Letters/luckyletters100x75.jpg','/images/games/Pat_Sajaks_Lucky_Letters/luckyletters179x135.jpg','/images/games/Pat_Sajaks_Lucky_Letters/luckyletters320x240.jpg','false','/images/games/thumbnails_med_2/luckyletters130x75.gif','/exe/Pat_Sajaks_Lucky_Letters-setup.exe?lc=en&ext=Pat_Sajaks_Lucky_Letters-setup.exe','Brain tickling excitement for all!','Pat Sajak invites you to compete on his exciting computer game show!','false',false,false,'Pat Sajaks Lucky Letters');ag(110557710,'Hexalot','/images/games/Hexalot/Hexalot81x46.gif',1007,110559920,'1ef016cd-1db0-41e4-bdc0-6ce9a292b2fd','false','/images/games/Hexalot/Hexalot16x16.gif',false,11323,'/images/games/Hexalot/Hexalot100x75.jpg','/images/games/Hexalot/Hexalot179x135.jpg','/images/games/Hexalot/Hexalot320x240.jpg','false','/images/games/thumbnails_med_2/Hexalot130x75.gif','/exe/Hexalot-setup.exe?lc=en&ext=Hexalot-setup.exe','A medieval mind-bending adventure!','Build bridges across treacherous puzzlescapes in this mind-bending puzzle adventure!','false',false,false,'Hexalot');ag(111097223,'Saints and Sinners Bowling','/images/games/s_and_s_bowling/s_and_s_bowling81x46.gif',0,11111090,'013ec739-a96b-4462-a1a9-78edbaa3aa5c','false','/images/games/s_and_s_bowling/s_and_s_bowling16x16.gif',false,11323,'/images/games/s_and_s_bowling/s_and_s_bowling100x75.jpg','/images/games/s_and_s_bowling/s_and_s_bowling179x135.jpg','/images/games/s_and_s_bowling/s_and_s_bowling320x240.jpg','false','/images/games/thumbnails_med_2/s_and_s_bowling130x75.gif','/exe/SandS_Bowling-setup.exe?lc=en&ext=SandS_Bowling-setup.exe','Bowl against whimsical opponents!','Bowl against a colorful cast of characters across the country!','false',false,false,'Saints & Sinners Bowling');ag(111125700,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',1000,111138937,'a867ba10-a271-4257-9219-7d2f453e6fbf','false','/images/games/rainbow_web/rainbow_web16x16.gif',false,11323,'/images/games/rainbow_web/rainbow_web100x75.jpg','/images/games/rainbow_web/rainbow_web179x135.jpg','/images/games/rainbow_web/rainbow_web320x240.jpg','false','/images/games/thumbnails_med_2/rainbow_web130x75.gif','/exe/Rainbow_Web-setup.exe?lc=en&ext=Rainbow_Web-setup.exe','Break a spell to restore sunshine!','Solve puzzles to break a spell and return sunshine to the kingdom!','false',false,true,'Rainbow Web');ag(111167660,'Star Defender II','/images/games/Star_Defender2/Star_Defender281x46.gif',0,111180520,'','false','/images/games/Star_Defender2/Star_Defender216x16.gif',false,11323,'/images/games/Star_Defender2/Star_Defender2100x75.jpg','/images/games/Star_Defender2/Star_Defender2179x135.jpg','/images/games/Star_Defender2/Star_Defender2320x240.jpg','false','/images/games/thumbnails_med_2/Star_Defender2130x75.gif','/exe/Star_Defender_2-setup.exe?lc=en&ext=Star_Defender_2-setup.exe','Strike back against intergalactic invaders!','Strike back against intergalactic invaders, each with their own unique weapons!','false',false,false,'Star Defender II');ag(111170320,'7 Wonders of the Ancient World','/images/games/7_wonders/7_wonders81x46.jpg',1000,111183900,'','false','/images/games/7_wonders/7_wonders16x16.gif',false,11323,'/images/games/7_wonders/7_wonders100x75.jpg','/images/games/7_wonders/7_wonders179x135.jpg','/images/games/7_wonders/7_wonders320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders130x75.gif','/exe/7_Wonders-setup.exe?lc=en&ext=7_Wonders-setup.exe','Build the 7 Wonders of the World!','Can you build all Seven Wonders of the World?','false',false,false,'7 Wonders');ag(111175233,'Plantasia','/images/games/Plantasia/Plantasia81x46.gif',110012530,111188270,'','false','/images/games/Plantasia/Plantasia16x16.gif',false,11323,'/images/games/Plantasia/Plantasia100x75.jpg','/images/games/Plantasia/Plantasia179x135.jpg','/images/games/Plantasia/Plantasia320x240.jpg','false','/images/games/thumbnails_med_2/Plantasia130x75.gif','/exe/Plantasia-setup.exe?lc=en&ext=Plantasia-setup.exe','Grow a beautiful virtual garden!','Plant seeds, harvest flowers, restore fountains, and watch your gardens bloom!','false',false,false,'Plantasia');ag(111177437,'Mahjong Match','/images/games/mahjong_match/mahjong_match81x46.gif',1006,111190330,'','false','/images/games/mahjong_match/mahjong_match16x16.gif',false,11323,'/images/games/mahjong_match/mahjong_match100x75.jpg','/images/games/mahjong_match/mahjong_match179x135.jpg','/images/games/mahjong_match/mahjong_match320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_match130x75.gif','/exe/Mahjong_Match-setup.exe?lc=en&ext=Mahjong_Match-setup.exe','Mahjongg meets inlay puzzle fun!','Classic tile matching mahjongg solitaire meets inlay-style puzzle fun!','false',false,false,'Mahjong Match');ag(111178767,'Saints and Sinners Online Bowling','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp81x46.gif',0,111191750,'89d0b428-e9a3-49bd-843d-cb6ac3d34612','true','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp16x16.gif',false,11323,'/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp100x75.jpg','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp179x135.jpg','/images/games/s_and_s_bowling_mp/s_and_s_bowling_mp320x240.jpg','false','/images/games/thumbnails_med_2/s_and_s_bowling_mp130x75.gif','','Challenge bowlers online around the world!','Test your bowling skills against both saints and sinners from around the world.','true',false,true,'MP_SS Bowling');ag(111199750,'Cake Mania','/images/games/Cake_Mania/Cake_Mania81x46.gif',1000,111211360,'d447cb6a-e287-476e-9858-b62f11bbc7aa','false','/images/games/Cake_Mania/Cake_Mania16x16.gif',false,11323,'/images/games/Cake_Mania/Cake_Mania100x75.jpg','/images/games/Cake_Mania/Cake_Mania179x135.jpg','/images/games/Cake_Mania/Cake_Mania320x240.jpg','false','/images/games/thumbnails_med_2/Cake_Mania130x75.gif','/exe/Cake_Mania-setup.exe?lc=en&ext=Cake_Mania-setup.exe','A fast-paced culinary crisis!','Help Jill reopen her grandparents’ bakery and upgrade the kitchen!','false',false,true,'Cake Mania');ag(111202970,'Word Jong To Go','/images/games/Word_Jong_To_Go/WordJong81x46.gif',0,111214927,'','false','/images/games/Word_Jong_To_Go/WordJong16x16.gif',false,11323,'/images/games/Word_Jong_To_Go/WordJong100x75.jpg','/images/games/Word_Jong_To_Go/WordJong179x135.jpg','/images/games/Word_Jong_To_Go/WordJong320x240.jpg','false','/images/games/thumbnails_med_2/wordJong130x75.gif','/exe/Word_Jong_Regular-setup.exe?lc=en&ext=Word_Jong_Regular-setup.exe','Word game fun meets MahJong!','A unique mixture of addictive word play and Mahjong-style rules!','false',false,false,'Word Jong (Regular)');ag(111205743,'Tri-Peaks Solitaire To Go','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire81x46.gif',1004,111217680,'','false','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire16x16.gif',false,11323,'/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire100x75.jpg','/images/games/Tri-Peaks_Solitaire_To_Go/tripeaks_solitaire179x135.jpg','/images/games/Tri-Peaks_Solitaire_To_Go/TriPeaks_Solitaire320x240.jpg','false','/images/games/thumbnails_med_2/tripeaks_solitaire130x75.gif','/exe/Tri-Peaks_Regular-setup.exe?lc=en&ext=Tri-Peaks_Regular-setup.exe','Journey the globe playing solitaire!','Journey around the globe in this exciting adventure-themed card game!','false',false,false,'Tri-Peaks (Regular)');ag(111208880,'Casino Island To Go','/images/games/Casino_Island_To_Go/Casino_Island81x46.gif',1004,111220833,'','false','/images/games/Casino_Island_To_Go/Casino_Island16x16.gif',false,11323,'/images/games/Casino_Island_To_Go/Casino_Island100x75.jpg','/images/games/Casino_Island_To_Go/Casino_Island179x135.jpg','/images/games/Casino_Island_To_Go/Casino_Island320x240.jpg','false','/images/games/thumbnails_med_2/casino_island130x75.gif','/exe/Casino_Island_Regular-setup.exe?lc=en&ext=Casino_Island_Regular-setup.exe','The odds are in your favor!','Five island-style casino games where the odds are in your favor!','false',false,false,'Casino Island (Regular)');ag(111209113,'Jewel of Atlantis','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis81x46.gif',1007,111221677,'','false','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis16x16.gif',false,11323,'/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis100x75.jpg','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis179x135.jpg','/images/games/Jewel_of_Atlantis/Jewel_of_Atlantis320x240.jpg','false','/images/games/thumbnails_med_2/Jewel_of_Atlantis130x75.gif','/exe/Jewel_of_Atlantis-setup.exe?lc=en&ext=Jewel_of_Atlantis-setup.exe','Explore an ancient underwater continent!','Explore an ancient underwater continent in search of mystical treasures!','false',false,false,'Jewel of Atlantis');ag(111212843,'Diner Dash 2: Restaurant Rescue','/images/games/Diner_Dash_2/Diner_Dash_281x46.gif',110060583,111224490,'4db00965-1659-45a4-a4b6-70d65945062d','false','/images/games/Diner_Dash_2/Diner_Dash_216x16.gif',false,11323,'/images/games/Diner_Dash_2/Diner_Dash_2100x75.jpg','/images/games/Diner_Dash_2/Diner_Dash_2179x135.jpg','/images/games/Diner_Dash_2/Diner_Dash_2320x240.jpg','false','/images/games/thumbnails_med_2/Diner_Dash_2130x75.gif','/exe/Diner_Dash2-setup.exe?lc=en&ext=Diner_Dash2-setup.exe','More grit-slinging tip earning fun!','Return to the fast-paced world of slinging grits and earning tips!','false',false,false,'Diner Dash 2');ag(111213710,'Pirate Poppers','/images/games/Pirate_Poppers/Pirate_Poppers81x46.gif',110012530,11122540,'731e65ef-5fce-4908-88de-54cae02561bc','false','/images/games/Pirate_Poppers/Pirate_Poppers16x16.gif',false,11323,'/images/games/Pirate_Poppers/Pirate_Poppers100x75.jpg','/images/games/Pirate_Poppers/Pirate_Poppers179x135.jpg','/images/games/Pirate_Poppers/Pirate_Poppers320x240.jpg','false','/images/games/thumbnails_med_2/Pirate_Poppers130x75.gif','/exe/Pirate_Poppers-setup.exe?lc=en&ext=Pirate_Poppers-setup.exe','A swashbuckling high-seas adventure!','Plunder a treasure trove of jewels in this swashbuckling adventure!','false',false,false,'Pirate Poppers');ag(111220923,'Treasure Island','/images/games/Treasure_Island/Treasure_Island81x46.gif',1100710,111232913,'','false','/images/games/Treasure_Island/Treasure_Island16x16.gif',false,11323,'/images/games/Treasure_Island/Treasure_Island100x75.jpg','/images/games/Treasure_Island/Treasure_Island179x135.jpg','/images/games/Treasure_Island/Treasure_Island320x240.jpg','false','/images/games/thumbnails_med_2/Treasure_Island130x75.gif','/exe/Treasure_Island-setup.exe?lc=en&ext=Treasure_Island-setup.exe','Find hidden pirate booty!','Follow an old pirate map in search of hidden treasures!','false',false,false,'Treasure Island');ag(111232687,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',110060583,111244930,'6ea669f1-3005-4095-8ef3-1a5db71f26e9','false','/images/games/Ocean_Express/Ocean_Express16x16.gif',false,11323,'/images/games/Ocean_Express/Ocean_Express100x75.jpg','/images/games/Ocean_Express/Ocean_Express179x135.jpg','/images/games/Ocean_Express/Ocean_Express320x240.jpg','false','/images/games/thumbnails_med_2/Ocean_Express130x75.gif','/exe/Ocean_Express-setup.exe?lc=en&ext=Ocean_Express-setup.exe','Pack puzzles aboard a cargo ship!','Pack puzzle pieces, then cruise the coast with your cargo!','false',false,false,'Ocean Express');ag(111244427,'Swashbucks To Go','/images/games/swashbucks/swashbucks81x46.gif',1007,111256393,'','false','/images/games/swashbucks/swashbucks16x16.gif',false,11323,'/images/games/swashbucks/swashbucks100x75.jpg','/images/games/swashbucks/swashbucks179x135.jpg','/images/games/swashbucks/swashbucks320x240.jpg','false','/images/games/thumbnails_med_2/swashbucks130x75.gif','/exe/Swashbucks_Regular-setup.exe?lc=en&ext=Swashbucks_Regular-setup.exe','A thrilling pirate adventure!','Set sail for pirate treasure in this thrilling swashbuckling adventure!','false',false,false,'Swashbucks (Regular)');ag(111249233,'Dream Vacation Solitaire','/images/games/DreamVacSolitaire/DreamVacSolitaire81x46.gif',1004,111261843,'','false','/images/games/DreamVacSolitaire/DreamVacSolitaire16x16.gif',false,11323,'/images/games/DreamVacSolitaire/DreamVacSolitaire100x75.jpg','/images/games/DreamVacSolitaire/DreamVacSolitaire179x135.jpg','/images/games/DreamVacSolitaire/DreamVacSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/DreamVacSolitaire130x75.gif','/exe/Dream_Vacation_Solitaire-setup.exe?lc=en&ext=Dream_Vacation_Solitaire-setup.exe','Play your way around the world!','Play your way around the world, exploring five vacation destinations!','false',false,false,'Dream Vacation Solitaire');ag(111252743,'Mahjong Escape: Ancient China','/images/games/MahjongChina/MahjongChina81x46.gif',1000,111264793,'33951833-8dc2-47f1-b6bb-2a5bd8728e8e','false','/images/games/MahjongChina/MahjongChina16x16.gif',false,11323,'/images/games/MahjongChina/MahjongChina100x75.jpg','/images/games/MahjongChina/MahjongChina179x135.jpg','/images/games/MahjongChina/MahjongChina320x240.jpg','false','/images/games/thumbnails_med_2/MahjongChina130x75.gif','/exe/Mahjong_Escape_Ancient_China-setup.exe?lc=en&ext=Mahjong_Escape_Ancient_China-setup.exe','Collect treasures!','Escape to ancient China to collect the Lost Dynasty Treasures!','false',false,false,'Mahjong Escape: Ancient China');ag(111263673,'Treasures of the Deep','/images/games/treasuresDeep/treasuresDeep81x46.gif',110012530,111274487,'','false','/images/games/treasuresDeep/treasuresDeep16x16.gif',false,11323,'/images/games/treasuresDeep/treasuresDeep100x75.jpg','/images/games/treasuresDeep/treasuresDeep179x135.jpg','/images/games/treasuresDeep/treasuresDeep320x240.jpg','false','/images/games/thumbnails_med_2/treasuresDeep130x75.gif','/exe/Treasures_of_the_Deep-setup.exe?lc=en&ext=Treasures_of_the_Deep-setup.exe','A brick-breaking adventure!','Explore an underwater world of treasures in this 3D brick-breaking adventure!','false',false,false,'Treasures of the Deep');ag(111264743,'Four Houses','/images/games/FourHouse/FourHouse81x46.gif',1007,111275480,'','false','/images/games/FourHouse/FourHouse16x16.gif',false,11323,'/images/games/FourHouse/FourHouse100x75.jpg','/images/games/FourHouse/FourHouse179x135.jpg','/images/games/FourHouse/FourHouse320x240.jpg','false','/images/games/thumbnails_med_2/FourHouse130x75.gif','/exe/Four_Houses-setup.exe?lc=en&ext=Four_Houses-setup.exe','Find patterns to unlock ancient wisdom.','Unlock ancient wisdom by finding patterns in creatures, colors and quantities.','false',false,false,'Four Houses');ag(111265347,'Luxor','/images/games/luxor/luxor81x46.gif',0,111276270,'4a8d3f90-3bb4-4365-a86d-6e533963a7a3','false','/images/games/luxor/luxor16x16.gif',false,11323,'/images/games/luxor/luxor100x75.jpg','/images/games/luxor/luxor179x135.jpg','/images/games/luxor/luxor320x240.jpg','false','/images/games/thumbnails_med_2/luxor130x75.gif','/exe/luxor_new-setup.exe?lc=en&ext=luxor_new-setup.exe','Save ancient Egypt from doom!','Embark on a thrilling adventure to save ancient Egypt from doom!','false',false,false,'Luxor_mj');ag(111270843,'Brickshooter Egypt','/images/games/BrickshooterE/BrickshooterE81x46.gif',110060583,11128113,'','false','/images/games/BrickshooterE/BrickshooterE16x16.gif',false,11323,'/images/games/BrickshooterE/BrickshooterE100x75.jpg','/images/games/BrickshooterE/BrickshooterE179x135.jpg','/images/games/BrickshooterE/BrickshooterE320x240.jpg','false','/images/games/thumbnails_med_2/BrickshooterE130x75.gif','/exe/Brickshooter_Egypt-setup.exe?lc=en&ext=Brickshooter_Egypt-setup.exe','Unravel the mysteries of ancient hieroglyphs!','Unravel intriguing mysteries of ancient hieroglyphs to restore the pyramids!','false',false,false,'Brickshooter Egypt');ag(111307457,'Galapago','/images/games/galapago/galapago81x46.gif',1007,111318177,'','false','/images/games/galapago/galapago16x16.gif',false,11323,'/images/games/galapago/galapago100x75.jpg','/images/games/galapago/galapago179x135.jpg','/images/games/galapago/galapago320x240.jpg','false','/images/games/thumbnails_med_2/galapago130x75.gif','/exe/Galapago-setup.exe?lc=en&ext=Galapago-setup.exe','Match and Collect Beautiful Creatures!','Match and collect beautiful creatures on a tropical isle!','false',false,false,'Galapago');ag(111310630,'Big Kahuna Reef&nbsp;2','/images/games/big_kahuna_reef2/big_kahuna_reef281x46.jpg',110060583,111322460,'','false','/images/games/big_kahuna_reef2/big_kahuna_reef216x16.gif',false,11323,'/images/games/big_kahuna_reef2/big_kahuna_reef2100x75.jpg','/images/games/big_kahuna_reef2/big_kahuna_reef2179x135.jpg','/images/games/big_kahuna_reef2/big_kahuna_reef2320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna_reef2130x75.gif','/exe/BKR_2-setup.exe?lc=en&ext=BKR_2-setup.exe','Explore spectacular underwater grottos!','Explore spectacular underwater grottos in this explosive adventure match game!','false',false,false,'Big Kahuna Reef 2');ag(111311570,'Charm Solitaire','/images/games/charm_solitaire/charm_solitaire81x46.gif',1004,111323180,'','false','/images/games/charm_solitaire/charm_solitaire16x16.gif',false,11323,'/images/games/charm_solitaire/charm_solitaire100x75.jpg','/images/games/charm_solitaire/charm_solitaire179x135.jpg','/images/games/charm_solitaire/charm_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/charm_solitaire130x75.gif','/exe/CharmSolitaire_new-setup.exe?lc=en&ext=CharmSolitaire_new-setup.exe','A charming puzzle solitaire game.','A charming twist on solitaire with the characters of Charm Tale.','false',false,false,'CharmSolitaire_new');ag(111321293,'10 Talismans','/images/games/10_talismans/10_talismans81x46.jpg',1007,111333313,'','false','/images/games/10_talismans/10_talismans16x16.gif',false,11323,'/images/games/10_talismans/10_talismans100x75.jpg','/images/games/10_talismans/10_talismans179x135.jpg','/images/games/10_talismans/10_talismans320x240.jpg','false','/images/games/thumbnails_med_2/10_talismans130x75.gif','/exe/10_Talismans-setup.exe?lc=en&ext=10_Talismans-setup.exe','Match and collect sacred relics!','Match sacred relics before the burning wick reaches the powder keg!','false',false,false,'10 Talismans');ag(111322673,'SpongeBob Diner Dash','/images/games/spongebob_diner_dash/spongebob_diner_dash81x46.gif',110012530,1113347,'','false','/images/games/spongebob_diner_dash/spongebob_diner_dash16x16.gif',false,11323,'/images/games/spongebob_diner_dash/spongebob_diner_dash100x75.jpg','/images/games/spongebob_diner_dash/spongebob_diner_dash179x135.jpg','/images/games/spongebob_diner_dash/spongebob_diner_dash320x240.jpg','false','/images/games/thumbnails_med_2/spongebob_diner_dash130x75.gif','/exe/SpongeBob_Diner_Dash-setup.exe?lc=en&ext=SpongeBob_Diner_Dash-setup.exe','Help SpongeBob serve deep-sea patrons!','Help SpongeBob seat, serve and satisfy squirmy deep-sea patrons!','false',false,false,'SpongeBob Diner Dash');ag(111355427,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',1004,111367397,'1e571cd1-e429-49ca-940a-292c4e731e88','false','/images/games/poker_pop/poker_pop16x16.gif',false,11323,'/images/games/poker_pop/poker_pop100x75.jpg','/images/games/poker_pop/poker_pop179x135.jpg','/images/games/poker_pop/poker_pop320x240.jpg','false','/images/games/thumbnails_med_2/poker_pop130x75.gif','/exe/Poker_Pop-setup.exe?lc=en&ext=Poker_Pop-setup.exe','Globe-hopping tile-matching fun!','Advance across continents in this combination poker, mahjong and solitaire game!','false',false,false,'Poker Pop');ag(111382320,'Luxor Mahjong','/images/games/Luxor_Mahjong/Luxor_Mahjong81x46.gif',1006,111394773,'','false','/images/games/Luxor_Mahjong/luxor_mahjong16x16.gif',false,11323,'/images/games/Luxor_Mahjong/Luxor_Mahjong100x75.jpg','/images/games/Luxor_Mahjong/Luxor_Mahjong179x135.jpg','/images/games/Luxor_Mahjong/Luxor_Mahjong320x240.jpg','false','/images/games/thumbnails_med_2/Luxor_Mahjong130x75.gif','/exe/Luxor_Mahjong-setup.exe?lc=en&ext=Luxor_Mahjong-setup.exe','Recover ancient Egyptian treasures!','Embark on an epic quest to recover ancient Egyptian treasures!','false',false,false,'Luxor Mahjong');ag(111388343,'Great Escapes Solitare','/images/games/Great_Escapes_Solitaire/GreatEscapes81x46.gif',1004,111400297,'','false','/images/games/Great_Escapes_Solitaire/GreatEscapes16x16.gif',false,11323,'/images/games/Great_Escapes_Solitaire/GreatEscapes100x75.jpg','/images/games/Great_Escapes_Solitaire/GreatEscapes179x135.jpg','/images/games/Great_Escapes_Solitaire/GreatEscapes320x240.jpg','false','/images/games/thumbnails_med_2/greatEscapes130x75.gif','/exe/Great_Escapes_regular-setup.exe?lc=en&ext=Great_Escapes_regular-setup.exe','12 games for every skill level!','Escape into 12 fun-filled games of solitaire for every skill level!','false',false,false,'Great Escapes (regular)');ag(111543617,'Backspin Billiards','/images/games/backspinbill/backspinbill81x46.gif',0,111557210,'','false','/images/games/backspinbill/backspinbill16x16.gif',false,11323,'/images/games/backspinbill/backspinbill100x75.jpg','/images/games/backspinbill/backspinbill179x135.jpg','/images/games/backspinbill/backspinbill320x240.jpg','false','/images/games/thumbnails_med_2/backspinbill130x75.gif','/exe/Backspin_Billards-setup.exe?lc=en&ext=Backspin_Billards-setup.exe','Shoot nine 3-D pool games!','Features nine 3-D play modes including 8-Ball, 9-Ball and Cutthroat! ','false',false,false,'Backspin Billiards');ag(111547587,'Rack em Up Road Trip','/images/games/rack_roadtrip/rack_roadtrip81x46.gif',0,111561680,'','false','/images/games/rack_roadtrip/rack_roadtrip16x16.gif',false,11323,'/images/games/rack_roadtrip/rack_roadtrip100x75.jpg','/images/games/rack_roadtrip/rack_roadtrip179x135.jpg','/images/games/rack_roadtrip/rack_roadtrip320x240.jpg','false','/images/games/thumbnails_med_2/rack_roadtrip130x75.gif','/exe/Rack_em_Up_Road_Trip-setup.exe?lc=en&ext=Rack_em_Up_Road_Trip-setup.exe','Join a cross-country pool tournament!','Shoot pool against a friend or a colorful cast of characters!','false',false,false,'Rack em Up Road Trip');ag(111584170,'Harvest Mania To Go','/images/games/harvest_mania/harvest_mania81x46.gif',1007,111599157,'','false','/images/games/harvest_mania/harvest_mania16x16.gif',false,11323,'/images/games/harvest_mania/harvest_mania100x75.jpg','/images/games/harvest_mania/harvest_mania179x135.jpg','/images/games/harvest_mania/harvest_mania320x240.jpg','false','/images/games/thumbnails_med_2/harvest_mania130x75.gif','/exe/Harvest_Mania_Regular-setup.exe?lc=en&ext=Harvest_Mania_Regular-setup.exe','Harvest the cute little veggies!','Work the fields in this amusing agricultural matching game!','false',false,false,'Harvest Mania (Regular)');ag(111640927,'Shopmania','/images/games/shopmania/shopmania81x46.gif',110012530,111655507,'','false','/images/games/shopmania/shopmania16x16.gif',false,11323,'/images/games/shopmania/shopmania100x75.jpg','/images/games/shopmania/shopmania179x135.jpg','/images/games/shopmania/shopmania320x240.jpg','false','/images/games/thumbnails_med_2/shopmania130x75.gif','/exe/Shopmania-setup.exe?lc=en&ext=Shopmania-setup.exe','Get shoppers to buy more!','Help stuff shoppers&rsquo; carts as a new department store clerk! ','false',false,false,'Shopmania');ag(111692950,'Mahjongg Artifacts','/images/games/mahjonggartifacts/mahjonggartifacts81x46.gif',1006,11170727,'','false','/images/games/mahjonggartifacts/mahjonggartifacts16x16.gif',false,11323,'/images/games/mahjonggartifacts/mahjonggartifacts100x75.jpg','/images/games/mahjonggartifacts/mahjonggartifacts179x135.jpg','/images/games/mahjonggartifacts/mahjonggartifacts320x240.jpg','false','/images/games/thumbnails_med_2/mahjonggartifacts130x75.gif','/exe/Mahjongg_Artifacts-setup.exe?lc=en&ext=Mahjongg_Artifacts-setup.exe','A dazzling Mahjong challenge! ','A dazzling new Mahjongg challenge with 3 innovative game modes!','false',false,false,'Mahjongg Artifacts');ag(111716563,'The Poppit! Show','/images/games/poppit/poppit81x46.gif',1007,111731533,'','false','/images/games/poppit/poppit16x16.gif',false,11323,'/images/games/poppit/poppit100x75.jpg','/images/games/poppit/poppit179x135.jpg','/images/games/poppit/poppit320x240.jpg','false','/images/games/thumbnails_med_2/poppit130x75.gif','/exe/Poppit_Show_reg-setup.exe?lc=en&ext=Poppit_Show_reg-setup.exe','New hilarious balloon popping puzzler!','Pop your way to the top in this TV-themed puzzler!','false',false,false,'The_Poppit Show_regular');ag(111730193,'Star Defender 3','/images/games/stardefender3/stardefender381x46.gif',0,111745897,'','false','/images/games/stardefender3/stardefender316x16.gif',false,11323,'/images/games/stardefender3/stardefender3100x75.jpg','/images/games/stardefender3/stardefender3179x135.jpg','/images/games/stardefender3/stardefender3320x240.jpg','false','/images/games/thumbnails_med_2/stardefender3130x75.gif','/exe/Star_Defender_3-setup.exe?lc=en&ext=Star_Defender_3-setup.exe','Battle hordes of alien beasts!','Battle hordes of alien beasts as they mercilessly attack Earth!','false',false,false,'Star Defender 3');ag(111734590,'Egyptian Addiction','/images/games/egypt_add/egypt_add81x46.gif',1007,111749873,'','false','/images/games/egypt_add/egypt_add16x16.gif',false,11323,'/images/games/egypt_add/egypt_add100x75.jpg','/images/games/egypt_add/egypt_add179x135.jpg','/images/games/egypt_add/egyptian_add320x240.jpg','false','/images/games/thumbnails_med_2/egypt_add130x75.gif','/exe/Egyptian_Addiction-setup.exe?lc=en&ext=Egyptian_Addiction-setup.exe','Unlock a pyramid&rsquo;s hidden chambers!','Solve ancient puzzles and unlock hidden chambers in a mystic pyramid! ','false',false,false,'Egyptian Addiction');ag(111771833,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',1004,111786163,'f8848d21-38ec-4c86-b1ea-5dd9b9420a61','false','/images/games/jewelquest_sol/jewelquest_sol16x16.gif',false,11323,'/images/games/jewelquest_sol/jewelquest_sol100x75.jpg','/images/games/jewelquest_sol/jewelquest_sol179x135.jpg','/images/games/jewelquest_sol/jewelquest_sol320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest_sol130x75.gif','/exe/Jewel_Quest_Solitaire-setup.exe?lc=en&ext=Jewel_Quest_Solitaire-setup.exe','Match cards to make gold!','Match cards to make gold on a trek through South America! ','false',false,false,'Jewel Quest Solitaire');ag(111782767,'Cash Cow','/images/games/cashcow/cashcow81x46.gif',1007,111797973,'','false','/images/games/cashcow/cashcow16x16.gif',false,11323,'/images/games/cashcow/cashcow100x75.jpg','/images/games/cashcow/cashcow179x135.jpg','/images/games/cashcow/cashcow320x240.jpg','false','/images/games/thumbnails_med_2/cashcow130x75.gif','/exe/Cash_Cow-setup.exe?lc=en&ext=Cash_Cow-setup.exe','Where cows meet coins!','Help Buck the Cow save the farm in this coin counting puzzler! ','false',false,false,'Cash Cow');ag(111837550,'Slingo Quest','/images/games/slingoquest/slingoquest81x46.gif',1004,111853847,'','false','/images/games/slingoquest/slingoquest/16x16.gif',false,11323,'/images/games/slingoquest/slingoquest100x75.jpg','/images/games/slingoquest/slingoquest179x135.jpg','/images/games/slingoquest/slingoquest320x240.jpg','false','/images/games/thumbnails_med_2/slingoquest130x75.gif','/exe/Slingo_Quest-setup.exe?lc=en&ext=Slingo_Quest-setup.exe','It is the all-new Slingo! ','Get your Slingo fix with exciting new ways to play! ','false',false,false,'Slingo Quest');ag(111872660,'Diner Dash: Flo on the Go','/images/games/diner_dash_flo_go/diner_dash_flo_go81x46.gif',0,111888427,'6b2dfcaf-24c2-42a2-8cf8-70519763a0ef','false','/images/games/diner_dash_flo_go/diner_dash_flo_go16x16.gif',false,11323,'/images/games/diner_dash_flo_go/diner_dash_flo_go100x75.jpg','/images/games/diner_dash_flo_go/diner_dash_flo_go179x135.jpg','/images/games/diner_dash_flo_go/diner_dash_flo_go320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_flo_go130x75.gif','/exe/Diner_Dash_Flo_on_the_Go-setup.exe?lc=en&ext=Diner_Dash_Flo_on_the_Go-setup.exe','All-new customers and restaurants! ','New thrills, spills and customers in an all-new third installment! ','false',false,false,'Diner Dash Flo on the Go');ag(111939190,'Westward','/images/games/west/west81x46.gif',110060583,111956893,'','false','/images/games/west/west16x16.gif',false,11323,'/images/games/west/west100x75.jpg','/images/games/west/west179x135.jpg','/images/games/west/west320x240.jpg','false','/images/games/thumbnails_med_2/west130x75.gif','/exe/Westward-setup.exe?lc=en&ext=Westward-setup.exe','Tame frontiers of the wild west!','Build thriving Western towns while chasing down cheats and scoundrels! ','false',false,false,'Westward');ag(111940693,'Bookworm Adventures','/images/games/bookworm_adventures/bookworm_ad81x46.gif',0,111957693,'','false','bookworm_ad16x16.gif',false,11323,'/images/games/bookworm_ad/bookworm_ad100x75.jpg','/images/games/bookworm_ad/bookworm_ad179x135.jpg','/images/games/bookworm_adventures/bookworm_ad320x240.jpg','false','/images/games/thumbnails_med_2/bookworm_ad130x75.gif','/exe/Bookworm_Adventure-setup.exe?lc=en&ext=Bookworm_Adventure-setup.exe','The ultimate test of linguistic skills!','Increase your word power in the ultimate test of linguistic aptitude!','false',false,false,'Bookworm Adventures');ag(112025610,'Mahjong Escape: Ancient Japan','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan81x46.gif',1006,112042283,'32171235-343f-40e2-9257-876dba02da01','false','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan16x16.gif',false,11323,'/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan100x75.jpg','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan179x135.jpg','/images/games/mahjongescapeancientjapan/mahjongescapeancientjapan320x240.jpg','false','/images/games/thumbnails_med_2/mahjongescapeancientjapan130x75.gif','/exe/Mahjong_Japan-setup.exe?lc=en&ext=Mahjong_Japan-setup.exe','Collect the Emperor’s lost treasures! ','Match magic tiles that will guide you to the Emperor’s treasures!  ','false',false,false,'Mahjong Escape: Ancient Japan');ag(112027253,'Reaxxion','/images/games/reaxx/reaxx81x46.gif',110012530,112044457,'','false','/images/games/reaxx/reaxx16x16.gif',false,11323,'/images/games/reaxx/reaxx100x75.jpg','/images/games/reaxx/reaxx179x135.jpg','/images/games/reaxx/reaxx320x240.jpg','false','/images/games/thumbnails_med_2/reaxx130x75.gif','/exe/Reaxxion-setup.exe?lc=en&ext=Reaxxion-setup.exe','Brick-busting, metal-manipulating mayhem! ','Manipulate liquid metal in this next generation brick-busting game! ','false',false,false,'Reaxxion');ag(112031427,'Cute Knight','/images/games/cuteknight/cuteknight81x46.gif',110012530,112048503,'','false','/images/games/cuteknight/cuteknight16x16.gif',false,11323,'/images/games/cuteknight/cuteknight100x75.jpg','/images/games/cuteknight/cuteknight179x135.jpg','/images/games/cuteknight/cuteknight320x240.jpg','false','/images/games/thumbnails_med_2/cuteknight130x75.gif','/exe/Cute_Knight-setup.exe?lc=en&ext=Cute_Knight-setup.exe','Guide a young girl through life!','Guide a young girl on an exciting path through life!','false',false,false,'Cute Knight');ag(112050487,'Wonderful Wizard of Oz','/images/games/wonderfulwizardofoz/wonderfulwizardofoz81x46.gif',1007,11206780,'','false','/images/games/wonderfulwizardofoz/wonderfulwizardofoz16x16.gif',false,11323,'/images/games/wonderfulwizardofoz/wonderfulwizardofoz100x75.jpg','/images/games/wonderfulwizardofoz/wonderfulwizardofoz179x135.jpg','/images/games/wonderfulwizardofoz/wonderfulwizardofoz320x240.jpg','false','/images/games/thumbnails_med_2/wonderfulwizardofoz130x75.gif','/exe/Wizard_of_Oz-setup.exe?lc=en&ext=Wizard_of_Oz-setup.exe','Help Dorothy find her way home! ','Free the Munchkins and help Dorothy find her way home! ','false',false,false,'Wonderfull Wizard of Oz');ag(112064650,'Butterfly Escape','/images/games/butterfly_esc/butterfly_esc81x46.gif',1007,112082493,'d2b556c7-d235-4f53-9c83-efe0c6b018ad','false','/images/games/butterfly_esc/butterfly_esc16x16.gif',false,11323,'/images/games/butterfly_esc/butterfly_esc100x75.jpg','/images/games/butterfly_esc/butterfly_esc179x135.jpg','/images/games/butterfly_escape/butterfly_escape320x240.jpg','false','/images/games/thumbnails_med_2/butterfly_esc130x75.gif','/exe/Butterfly_Escape-setup.exe?lc=en&ext=Butterfly_Escape-setup.exe','Help a dragonfly free butterflies! ','Help Buka the Dragonfly free the butterflies in this 3D action-puzzler! ','false',false,false,'Butterfly Escape');ag(112087260,'Family Feud 2','/images/games/familyfeud2/familyfeud281x46.gif',0,112105553,'','false','/images/games/familyfeud2/familyfeud216x16.gif',false,11323,'/images/games/familyfeud2/familyfeud2100x75.jpg','/images/games/familyfeud2/familyfeud2179x135.jpg','/images/games/familyfeud2/familyfeud2320x240.jpg','false','/images/games/thumbnails_med_2/familyfeud2130x75.gif','/exe/Family_Feud_2-setup.exe?lc=en&ext=Family_Feud_2-setup.exe','Feud over 2,000 new questions! ','Features 2,000 new questions plus mega-bonus points for top answers!  ','false',false,false,'Family Feud 2');ag(112195493,'Paparazzi','/images/games/paparazzi/paparazzi81x46.gif',1007,112213913,'e4ef0bac-ec2a-471d-a35e-69621cd29b47','false','/images/games/paparazzi/paparazzi16x16.gif',false,11323,'/images/games/paparazzi/paparazzi100x75.jpg','/images/games/paparazzi/paparazzi179x135.jpg','/images/games/paparazzi/paparazzi320x240.jpg','false','/images/games/thumbnails_med_2/paparazzi130x75.gif','/exe/Paparazzi-setup.exe?lc=en&ext=Paparazzi-setup.exe','Be a dirt-digging tabloid photographer! ','Extra! Extra! Take to the trail of the photo of the century!','false',false,false,'Paparazzi');ag(112204560,'Gutterball 2','/images/games/gutterball2/gutterball281x46.gif',0,112222530,'','false','/images/games/gutterball2/gutterball216x16.gif',false,11323,'/images/games/gutterball2/gutterball2100x75.jpg','/images/games/gutterball2/gutterball2179x135.jpg','/images/games/gutterball2/gutterball2320x240.jpg','false','/images/games/thumbnails_med_2/gutterball2130x75.gif','/exe/Gutterball_2_New-setup.exe?lc=en&ext=Gutterball_2_New-setup.exe','Wacky 3D bowling is back!','More realistic 3D bowling with new wacky balls and alleys!','false',false,false,'Gutterball 2 (New)');ag(112205973,'Magic Match: Genies Journey','/images/games/magicmatch2/magicmatch281x46.gif',1007,112223767,'1f35568f-dafa-4650-9899-0961dca18b15','false','/images/games/magicmatch2/magicmatch216x16.gif',false,11323,'/images/games/magicmatch2/magicmatch2100x75.jpg','/images/games/magicmatch2/magicmatch2179x135.jpg','/images/games/magicmatch2/magicmatch2320x240.jpg','false','/images/games/thumbnails_med_2/magicmatch2130x75.gif','/exe/Magic_Match_2-setup.exe?lc=en&ext=Magic_Match_2-setup.exe','Visit magical lands with an Imp! ','Join Giggles the Imp on a magical adventure through Arcania! ','false',false,false,'Magic Match Genies Journey');ag(112270203,'Dream Day Wedding','/images/games/dd_wedding/dd_wedding81x46.gif',1100710,11228860,'','false','/images/games/dd_wedding/dd_wedding16x16.gif',false,11323,'/images/games/dd_wedding/dd_wedding100x75.jpg','/images/games/dd_wedding/dd_wedding179x135.jpg','/images/games/dd_wedding/dd_wedding320x240.jpg','false','/images/games/thumbnails_med_2/dd_wedding130x75.gif','/exe/Dream_Day_Wedding-setup.exe?lc=en&ext=Dream_Day_Wedding-setup.exe','Plan a romantic wedding extravaganza!  ','Make all the wedding arrangements in this romantic story game! ','false',false,false,'Dream Day Wedding');ag(112353223,'Inca Ball','/images/games/incaball/incaball81x46.gif',110012530,11237183,'','false','/images/games/incaball/incaball16x16.gif',false,11323,'/images/games/incaball/incaball100x75.jpg','/images/games/incaball/incaball179x135.jpg','/images/games/incaball/incaball320x240.jpg','false','/images/games/thumbnails_med_2/incaball130x75.gif','/exe/Inca_Ball-setup.exe?lc=en&ext=Inca_Ball-setup.exe','Collect breathtaking ancient Incan treasures!  ','Think and act fast to collect magnificent ancient Incan treasures!','false',false,false,'Inca Ball');ag(112395410,'Super Granny 3','/images/games/super_granny3/super_granny381x46.gif',110012530,112413990,'','false','/images/games/super_granny3/super_granny316x16.gif',false,11323,'/images/games/super_granny3/super_granny3100x75.jpg','/images/games/super_granny3/super_granny3179x135.jpg','/images/games/super_granny3/super_granny3320x240.jpg','false','/images/games/thumbnails_med_2/super_granny3130x75.gif','/exe/Super_Granny_3-setup.exe?lc=en&ext=Super_Granny_3-setup.exe','Help Granny rescue her kitties! ','Help Granny navigate an exotic theme park and rescue her kitties! ','false',false,false,'Super Granny 3');ag(112411160,'Inspector Parker','/images/games/parker/parker81x46.jpg',0,112429130,'e1a1b66a-0c66-4c97-abe1-2ff7e80db4d0','false','/images/games/parker/parker16x16.gif',false,11323,'/images/games/parker/parker100x75.jpg','/images/games/parker/parker179x135.jpg','/images/games/parker/parker320x240.jpg','false','/images/games/thumbnails_med_2/parker130x75.gif','/exe/Inspector_parker-setup.exe?lc=en&ext=Inspector_parker-setup.exe','Solve a murder mystery!','Unveil clues to solve a murder in this spellbinding whodunit!','true',true,true,'Inspector Parker Online');ag(112548397,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',1000,1125667,'50fd79be-63ad-401b-bbe4-925e1412be00','false','/images/games/riseAtlantis/riseAtlantis16x16.gif',false,11323,'/images/games/riseAtlantis/riseAtlantis100x75.jpg','/images/games/riseAtlantis/riseAtlantis179x135.jpg','/images/games/riseAtlantis/riseAtlantis320x240.jpg','false','/images/games/thumbnails_med_2/riseAtlantis130x75.gif','/exe/The_Rise_of_Atlantis-setup.exe?lc=en&ext=The_Rise_of_Atlantis-setup.exe','Raise the lost continent of Atlantis! ','Collect the seven powers of Poseidon to save Atlantis!','false',false,false,'The Rise of Atlantis');ag(112566127,'Magic Academy','/images/games/magicacademy/magicacademy81x46.gif',110060583,112584923,'','false','/images/games/magicacademy/magicacademy16x16.gif',false,11323,'/images/games/magicacademy/magicacademy100x75.jpg','/images/games/magicacademy/magicacademy179x135.jpg','/images/games/magicacademy/magicacademy320x240.jpg','false','/images/games/thumbnails_med_2/magicacademy130x75.gif','/exe/Magic_Academy-setup.exe?lc=en&ext=Magic_Academy-setup.exe','Find your sister with magic! ','Remove spells and see invisible objects to find your lost sister! ','false',false,true,'Magic Academy');ag(112569403,'Escaping Atlantis','/images/games/escapeAtlantis/escapeAtlantis81x46.gif',110060583,112587107,'','false','/images/games/escapeAtlantis/escapeAtlantis16x16.gif',false,11323,'/images/games/escapeAtlantis/escapeAtlantis100x75.jpg','/images/games/escapeAtlantis/escapeAtlantis179x135.jpg','/images/games/escapeAtlantis/escapeAtlantis320x240.jpg','false','/images/games/thumbnails_med_2/escapeAtlantis130x75.gif','/exe/Escaping_Atlantis-setup.exe?lc=en&ext=Escaping_Atlantis-setup.exe','Unlock scrolls to escape Atlantis!  ','Unlock scrolls and solve hidden clues to escape from Atlantis! ','false',false,true,'Escaping Atlantis');ag(112594657,'Talismania Deluxe','/images/games/talismania/talismania81x46.gif',1007,112612610,'2da45263-4a49-4f3e-babf-8cdc2d10d106','false','/images/games/talismania/talismania16x16.gif',false,11323,'/images/games/talismania/talismania100x75.jpg','/images/games/talismania/talismania179x135.jpg','/images/games/talismania/talismania320x240.jpg','false','/images/games/thumbnails_med_2/talismania130x75.gif','/exe/Talismania_Deluxe_new-setup.exe?lc=en&ext=Talismania_Deluxe_new-setup.exe','Break King Midas’ golden curse!','Help Midas battle mythical monsters and break an ancient curse! ','false',false,false,'Talismania Deluxe (new)');ag(112614887,'Big City Adventure: San Francisco','/images/games/BigCity_SF/BigCity_SF81x46.gif',1100710,112632467,'','false','/images/games/BigCity_SF/BigCity_SF16x16.gif',false,11323,'/images/games/BigCity_SF/BigCity_SF100x75.jpg','/images/games/BigCity_SF/BigCity_SF179x135.jpg','/images/games/BigCity_SF/BigCity_SF320x240.jpg','false','/images/games/thumbnails_med_2/BigCity_SF130x75.gif','/exe/Big_City_Adventure-setup.exe?lc=en&ext=Big_City_Adventure-setup.exe','Explore San Francisco&rsquo;s greatest attractions!','Search for thousands of items hidden in famous city landmarks! ','false',false,false,'Big City Adventure: San Franci');ag(112615863,'Agatha Christie Death on the Nile','/images/games/death_nile/death_nile81x46.gif',1000,112633440,'4f3c25b1-0b97-473d-a4d9-746e851a893b','false','/images/games/death_nile/death_nile16x16.gif',false,11323,'/images/games/death_nile/death_nile100x75.jpg','/images/games/death_nile/death_nile179x135.jpg','/images/games/death_nile/death_nile320x240.jpg','false','/images/games/thumbnails_med_2/death_nile130x75.gif','/exe/Agatha_Christie-setup.exe?lc=en&ext=Agatha_Christie-setup.exe','Voted Best Game of 2007! ','Solve a classic Agatha Christie mystery as Detective Hercule Poirot, while sailing the Nile in this exciting adventure!','false',false,false,'Agatha Christie');ag(112623650,'Belles Beauty Boutique','/images/games/BellesBeauty/BellesBeauty81x46.gif',110012530,112641277,'773d0959-cfd7-44ef-bcd6-2495e2ab3c05','false','/images/games/BellesBeauty/BellesBeauty16x16.gif',false,11323,'/images/games/BellesBeauty/BellesBeauty100x75.jpg','/images/games/BellesBeauty/BellesBeauty179x135.jpg','/images/games/BellesBeauty/BellesBeauty320x240.jpg','false','/images/games/thumbnails_med_2/BellesBeauty130x75.gif','/exe/Belles_Beauty_Boutique-setup.exe?lc=en&ext=Belles_Beauty_Boutique-setup.exe','Run your own beauty salon! ','Cut the hair of a crazy cast of beauty parlor customers!  ','false',false,false,'Belles Beauty Boutique');ag(112630483,'XAvenger','/images/games/xavenger/xavenger81x46.gif',0,112648140,'','false','/images/games/xavenger/xavenger16x16.gif',false,11323,'/images/games/xavenger/xavenger100x75.jpg','/images/games/xavenger/xavenger179x135.jpg','/images/games/xavenger/xavenger320x240.jpg','false','/images/games/thumbnails_med_2/xavenger130x75.gif','/exe/XAvenger-setup.exe?lc=en&ext=XAvenger-setup.exe','Battle invaders from outer space! ','Battle Orion invaders from your hi-tech spacecraft X-Avenger. ','false',false,false,'XAvenger');ag(112662477,'Merriam Webster’s Spell-Jam','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam81x46.gif',0,112680150,'','false','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam16x16.gif',false,11323,'/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam100x75.jpg','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam179x135.jpg','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam320x240.jpg','false','/images/games/thumbnails_med_2/MirriamWebster_spelljam130x75.gif','/exe/Merriam_Websters_SpellJam-setup.exe?lc=en&ext=Merriam_Websters_SpellJam-setup.exe','Be the Spelling Bee King!  ','Spell your way to the top in contests and gameshows!     ','false',false,false,'Merriam Websters SpellJam');ag(112663180,'Monarch','/images/games/monarch/monarch81x46.gif',110012530,112681947,'','false','/images/games/monarch/monarch16x16.gif',false,11323,'/images/games/monarch/monarch100x75.jpg','/images/games/monarch/monarch179x135.jpg','/images/games/monarch/monarch320x240.jpg','false','/images/games/thumbnails_med_2/monarch130x75.gif','/exe/Monarch-setup.exe?lc=en&ext=Monarch-setup.exe','Rescue butterfly friends from evil!  ','Help the Butterfly King rescue friends with matching fun!  ','false',false,false,'Monarch');ag(112689867,'A Pirate&rsquo;s Legend','/images/games/PiratesLegend/PiratesLegend81x46.gif',1100710,112707100,'','false','/images/games/PiratesLegend/PiratesLegend16x16.gif',false,11323,'/images/games/PiratesLegend/PiratesLegend100x75.jpg','/images/games/PiratesLegend/PiratesLegend179x135.jpg','/images/games/PiratesLegend/PiratesLegend320x240.jpg','false','/images/games/thumbnails_med_2/PiratesLegend130x75.gif','/exe/A_Pirates_Legend-setup.exe?lc=en&ext=A_Pirates_Legend-setup.exe','Search for Crimson Jones&rsquo;s hidden treasures! ','Plunder the southern isles in search of Crimson Jones&rsquo;s hidden treasures! ','false',false,false,'A Pirates Legend');ag(112807570,'Qbeez 2','/images/games/qbeez_2/qbeez_281x46.gif',1007,112837333,'','false','/images/games/qbeez_2/qbeez_216x16.gif',false,11323,'/images/games/qbeez_2/qbeez_2100x75.jpg','/images/games/qbeez_2/qbeez_2179x135.jpg','/images/games/qbeez_2/qbeez_2320x240.jpg','false','/images/games/thumbnails_med_2/qbeez_2130x75.gif','/exe/Qbeez_2_new-setup.exe?lc=en&ext=Qbeez_2_new-setup.exe','They’re back with all-new puzzles!','The adorable Qbeez are back with 12 all-new puzzle elements!','false',false,true,'Qbeez 2 (new)');ag(112811333,'Chicken Invaders 2','/images/games/chickeninvaders2/chickeninvaders2_81x46.jpg',0,112841210,'5f7b8c27-da02-48bf-9506-46381ee69d67','false','/images/games/chickeninvaders2/chickeninvaders216x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/chickeninvaders130x75.gif','','Save Christmas from invading chickens!','Those battling chickens are back with more plans of world domination!','true',true,true,'Chicken Invaders 2 Online');ag(112812290,'Gem Shop','/images/games/Gem_shop/Gem_shop81x46.gif',0,112842243,'73b9e072-1c2a-4d2a-b8ef-48007aae3648','false','/images/games/Gem_shop/Gem_shop16x16.gif',false,11323,'/images/games/Gem_shop/Gem_shop100x75.jpg','/images/games/Gem_shop/Gem_shop179x135.jpg','/images/games/Gem_shop/Gem_shop320x240.jpg','false','/images/games/thumbnails_med_2/Gem_shop130x75.gif','/exe/gem_shop-setup.exe?lc=en&ext=gem_shop-setup.exe','Match gems to keep customers happy!','Match gems to keep customers happy and sell more jewelry!','true',true,true,'Gem Shop Online');ag(112813893,'Mah Jong Quest','/images/games/mah_jong_quest/mah_jong_quest81x46.gif',0,112843800,'b7f9b4a0-8dfa-4dcb-a1f6-17e09de377a4','false','/images/games/mah_jong_quest/mah_jong_quest16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/mah_jong_quest_130x75.jpg','/exe/mah_jong_quest-setup.exe?lc=en&ext=mah_jong_quest-setup.exe','Rebuild the empire with tiles!','Rebuild the empire by using an ancient set of Mah Jong tiles!','true',true,true,'Mah Jong Quest Online');ag(112814853,'Poker Superstars 2','/images/games/Poker_Superstars_2/Poker_Superstars_281x46.gif',0,112844697,'1067b0c1-d8fc-42b0-95c6-762932b8197a','false','/images/games/Poker_Superstars_2/Poker_Superstars_216x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/Thumbnails_med_2/Poker_Superstars_2130x75.gif','','No-limit Hold ’Em Action!','Face off against poker’s top players in No-Limit Hold ’Em action!','true',true,true,'Poker Superstars 2 Online');ag(112815527,'Rainbow Web','/images/games/Rainbow_Web/Rainbow_Web81x46.gif',0,112845463,'a867ba10-a271-4257-9219-7d2f453e6fbf','false','/images/games/Rainbow_Web/Rainbow_Web16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/Thumbnails_med_2/rainbow_web130x75.gif','/exe/Rainbow_Web-setup.exe?lc=en&ext=Rainbow_Web-setup.exe','Break a spell to restore sunshine!','Solve puzzles to break a spell and return sunshine to the kingdom!','true',true,true,'Rainbow Web Online');ag(112820170,'Slingo','/images/games/slingo/slingo81x46.gif',0,1128500,'8cc6c4d9-73fd-4e6d-afa9-394761263e8e','false','/images/games/slingo/slingo16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/slingo130x75.gif','/exe/slingo-setup.exe?lc=en&ext=slingo-setup.exe','Where Bingo meets Slots!','An addictive and exciting combination of Slots and Bingo!','true',false,false,'Slingo Online');ag(112823313,'Holiday Express','/images/games/holiday_express/holiday_express81x46.gif',0,112853110,'e79079a9-8e73-48d9-a450-bc9a4a1544aa','false','/images/games/holiday_express/holiday_express16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/holiday_express130x75.gif','','Hop aboard for the holidays!','Fill up the Holiday Express with gifts to reveal festive photos!','true',true,true,'Holiday Express Online');ag(112824267,'Jig Words','/images/games/jig_words/jigwords81x46.gif',0,112854203,'ec654d07-558f-4afe-8393-8c788899fa5f','false','/images/games/jig_words/jigwords16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/jigwords130x75.jpg','','Make words to reveal fun photos!','Click on letters to spell words and reveal fun photos!','true',true,true,'Jig Words Online');ag(112825517,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',0,112855470,'6ea669f1-3005-4095-8ef3-1a5db71f26e9','false','/images/games/Ocean_Express/Ocean_Express16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/Ocean_Express130x75.gif','/exe/Ocean_Express-setup.exe?lc=en&ext=Ocean_Express-setup.exe','Pack puzzles aboard a cargo ship!','Pack puzzle pieces, then cruise the coast with your cargo!','true',true,true,'Ocean Express Online');ag(112827127,'Hidden Expedition: Titanic','/images/games/he_titanic/he_titanic81x46.gif',0,11285797,'a43e75f2-ec8f-4825-a825-c768ca932b4a','false','/images/games/he_titanic/he_titanic16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/he_titanic130x75.gif','','Search the wreckage for jewels!','Search the wreckage of this once-majestic ship for the Crown Jewels!','true',false,false,'Hidden Exped. Titanic Online');ag(112847177,'Spin And Win','/images/games/spin_and_win/spin_and_win81x46.gif',0,112877100,'888066c2-cb45-4490-a1d3-28baec30e95d','false','/images/games/spin_and_win/spin_and_win16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/spin_and_win130x75.gif','/exe/spin_and_win-setup.exe?lc=en&ext=spin_and_win-setup.exe','Spin the wheel and win!','Play slots, roll the dice and bet on horses to win prizes!','true',true,true,'Spin And Win Online');ag(112848617,'Puzzle Express','/images/games/puzzleexpress/puzzleexpress81x46.gif',0,112878553,'24568798-3468-4267-981c-4a6b5f4346d3','false','/images/games/puzzleexpress/puzzleexpress16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/puzzleexpress130x75.gif','/exe/puzzle_express-setup.exe?lc=en&ext=puzzle_express-setup.exe','Hop aboard for puzzle fun!','Grab puzzle pieces that reveal pictures as you ride the railways.','true',true,true,'Puzzle Express Online');ag(112849163,'Trivia Machine','/images/games/trivia_machine/trivia_machine81x46.gif',0,112879100,'44b1566c-5ff1-4cc5-915f-b81cbaf41749','false','/images/games/trivia_machine/trivia_machine16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/trivia_machine130x75.gif','/exe/trivia_machine-setup.exe?lc=en&ext=trivia_machine-setup.exe','Trivia with an element of strategy!','Answer over 7,000 challenging questions in nine fun categories!','true',true,true,'Trivia Machine Online');ag(112852170,'Mahjong Adventures','/images/games/Mahjong_Adventures/Mahjong_Adventures81x46.gif',1006,112882780,'','false','/images/games/Mahjong_Adventures/Mahjong_Adventures16x16.gif',false,11323,'/images/games/Mahjong_Adventures/Mahjong_Adventures100x75.jpg','/images/games/Mahjong_Adventures/Mahjong_Adventures179x135.jpg','/images/games/Mahjong_Adventures/Mahjong_Adventures320x240.jpg','false','/images/games/thumbnails_med_2/Mahjong_Adventures130x75.gif','/exe/Mahjong_Adventures_new-setup.exe?lc=en&ext=Mahjong_Adventures_new-setup.exe','Locate treasures around the globe!','Locate gold tiles and treasures in 18 destinations around the globe!','false',false,false,'Mahjong Adventures (new)');ag(112866767,'NBC Heads-Up Poker','/images/games/NBCPoker/NBCPoker81x46.gif',1004,112896377,'','false','/images/games/NBCPoker/NBCPoker16x16.gif',false,11323,'/images/games/NBCPoker/NBCPoker100x75.jpg','/images/games/NBCPoker/NBCPoker179x135.jpg','/images/games/NBCPoker/NBCPoker320x240.jpg','false','/images/games/thumbnails_med_2/NBCPoker130x75.gif','/exe/NBC_HeadsUp_Poker-setup.exe?lc=en&ext=NBC_HeadsUp_Poker-setup.exe','Compete in the TV poker tournament!','Play the video game version of NBC’s popular poker tournament!','false',false,false,'NBC HeadsUp Poker');ag(112868583,'Chocolatier','/images/games/chocolatier/chocolatier81x46.gif',1000,112898473,'','false','/images/games/chocolatier/chocolatier16x16.gif',false,11323,'/images/games/chocolatier/chocolatier100x75.jpg','/images/games/chocolatier/chocolatier179x135.jpg','/images/games/chocolatier/chocolatier320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier130x75.gif','/exe/Chocolatier-setup.exe?lc=en&ext=Chocolatier-setup.exe','Build a chocolate business empire! ','Conquer the world of chocolate and become a master chocolatier! ','false',false,false,'Chocolatier');ag(112883817,'Nanny Mania','/images/games/NannyMania/NannyMania81x46.gif',110012530,112913303,'','false','/images/games/NannyMania/NannyMania16x16.gif',false,11323,'/images/games/NannyMania/NannyMania100x75.jpg','/images/games/NannyMania/NannyMania179x135.jpg','/images/games/NannyMania/NannyMania320x240.jpg','false','/images/games/thumbnails_med_2/NannyMania130x75.gif','/exe/Nanny_Mania-setup.exe?lc=en&ext=Nanny_Mania-setup.exe','Manage a busy household! ','Manage a busy household while looking after four crazy kids! ','false',false,false,'Nanny Mania');ag(112890467,'Tumblebugs','/images/games/Tumblebugs/Tumblebugs81x46.gif',110012530,112920373,'','false','/images/games/Tumblebugs/Tumblebugs16x16.gif',false,11323,'/images/games/Tumblebugs/Tumblebugs100x75.jpg','/images/games/Tumblebugs/Tumblebugs179x135.jpg','/images/games/Tumblebugs/Tumblebugs320x240.jpg','false','/images/games/thumbnails_med_2/Tumblebugs130x75.gif','/exe/Tumblebugs_New-setup.exe?lc=en&ext=Tumblebugs_New-setup.exe','Set your beetle brethren free!','Save your beetle buddies from enslavement by Evil Bugs!','false',false,false,'Tumblebugs (New)');ag(112920767,'Alice Greenfingers','/images/games/AliceGreenfingers/AliceGreenfingers81x46.gif',110012530,112950530,'','false','/images/games/AliceGreenfingers/AliceGreenfingers16x16.gif',false,11323,'/images/games/AliceGreenfingers/AliceGreenfingers100x75.jpg','/images/games/AliceGreenfingers/AliceGreenfingers179x135.jpg','/images/games/AliceGreenfingers/AliceGreenfingers320x240.jpg','false','/images/games/thumbnails_med_2/AliceGreenfingers130x75.gif','/exe/Alice_Greenfingers-setup.exe?lc=en&ext=Alice_Greenfingers-setup.exe','Grow a profitable gardening business!  ','Grow flowers and vegetables to sell at the town market!    ','false',false,false,'Alice Greenfingers');ag(112921190,'Magician&rsquo;s Handbook: Cursed Valley','/images/games/MagiciansHandbook/MagiciansHandbook81x46.gif',110060583,11295147,'','false','/images/games/MagiciansHandbook/MagiciansHandbook16x16.gif',false,11323,'/images/games/MagiciansHandbook/MagiciansHandbook100x75.jpg','/images/games/MagiciansHandbook/MagiciansHandbook179x135.jpg','/images/games/MagiciansHandbook/MagiciansHandbook320x240.jpg','false','/images/games/thumbnails_med_2/MagiciansHandbook130x75.gif','/exe/MH_Cursed_Valley-setup.exe?lc=en&ext=MH_Cursed_Valley-setup.exe','Cast spells and uncover secrets!   ','Find hidden objects and cast spells in this beautifully painted puzzler!  ','false',false,false,'MH Cursed Valley');ag(112931223,'Lottso! Deluxe','/images/games/lottso_regular/lottso_regular81x46.gif',1004,112961130,'','false','/images/games/lottso_regular/lottso_regular16x16.gif',false,11323,'/images/games/lottso_regular/lottso_regular100x75.jpg','/images/games/lottso_regular/lottso_regular179x135.jpg','/images/games/lottso_regular/lottso_regular320x240.jpg','false','/images/games/thumbnails_med_2/lottso_regular130x75.gif','/exe/Lottso_Regular-setup.exe?lc=en&ext=Lottso_Regular-setup.exe','Match, Scratch and Win!','Hit Lottery Bingo game - now available as a download!','false',false,false,'Lottso (Regular)');ag(112935120,'Cribbage Quest','/images/games/cribbage_quest/cribbage_quest81x46.gif',1004,112965493,'','false','/images/games/cribbage_quest/cribbage_quest16x16.gif',false,11323,'/images/games/cribbage_quest/cribbage_quest100x75.jpg','/images/games/cribbage_quest/cribbage_quest179x135.jpg','/images/games/cribbage_quest/cribbage_quest320x240.jpg','false','/images/games/thumbnails_med_2/cribbage_quest130x75.gif','/exe/Cribbage_Quest-setup.exe?lc=en&ext=Cribbage_Quest-setup.exe','Find the golden peg! ','Count combos and move pegs to get ahead in this classic game! ','false',false,false,'Cribbage Quest');ag(112937360,'Hardwood Solitaire Deluxe','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe81x46.gif',1004,112967140,'','false','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe16x16.gif',false,11323,'/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe100x75.jpg','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe179x135.jpg','/images/games/hardwood_solitaire_deluxe/hardwood_solitaire_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/hardwood_solitaire_deluxe130x75.gif','/exe/hardwood_solitaire_deluxe_new-setup.exe?lc=en&ext=hardwood_solitaire_deluxe_new-setup.exe','Solitaire with style and pizzazz!','Play 100 different solitaire games surrounded by cool music and graphics!','false',false,false,'hardwood solitaire deluxe (new');ag(112943570,'Supple','/images/games/supple/supple81x46.gif',110012530,112973913,'','false','/images/games/supple/supple16x16.gif',false,11323,'/images/games/supple/supple100x75.jpg','/images/games/supple/supple179x135.jpg','/images/games/supple/supple320x240.jpg','false','/images/games/thumbnails_med_2/supple130x75.gif','/exe/Supple-setup.exe?lc=en&ext=Supple-setup.exe','World’s first interactive sitcom.','Talking sim game set in the office of a hot fashion magazine.','false',false,false,'Supple');ag(112945317,'Chromadrome 2','/images/games/Chromadrome_2/Chromadrome_281x46.gif',110060583,112975143,'','false','/images/games/Chromadrome_2/Chromadrome_216x16.gif',false,11323,'/images/games/Chromadrome_2/Chromadrome_2100x75.jpg','/images/games/Chromadrome_2/Chromadrome_2179x135.jpg','/images/games/Chromadrome_2/Chromadrome_2320x240.jpg','false','/images/games/thumbnails_med_2/Chromadrome_2130x75.gif','/exe/Chromadrome_2-setup.exe?lc=en&ext=Chromadrome_2-setup.exe','Blaze through the Quantum Universe! ','Blaze through the Quantum Universe along super fast 3D race tracks!  ','false',false,false,'Chromadrome 2');ag(112946753,'Burger Island','/images/games/burger_island/burger_island81x46.gif',110012530,112976630,'','false','/images/games/burger_island/burger_island16x16.gif',false,11323,'/images/games/burger_island/burger_island100x75.jpg','/images/games/burger_island/burger_island179x135.jpg','/images/games/burger_island/burger_island320x240.jpg','false','/images/games/thumbnails_med_2/burger_island130x75.gif','/exe/Burger_Island-setup.exe?lc=en&ext=Burger_Island-setup.exe','Operate a successful burger stand!','Help our heroine, Patty, turn around a run-down burger stand. ','false',false,false,'Burger Island');ag(112966410,'Scavenger','/images/games/scavenger/scavenger81x46.gif',110060583,112996287,'','false','/images/games/scavenger/scavenger16x16.gif',false,11323,'/images/games/scavenger/scavenger100x75.jpg','/images/games/scavenger/scavenger179x135.jpg','/images/games/scavenger/scavenger320x240.jpg','false','/images/games/thumbnails_med_2/scavenger130x75.gif','/exe/Scavenger-setup.exe?lc=en&ext=Scavenger-setup.exe','Blast through aliens and gravity fields!','Blast through aliens and gravity fields on your way to freedom! ','false',false,false,'Scavenger');ag(112968990,'Secrets of Olympus','/images/games/secrets_of_olympus/secrets_of_olympus81x46.gif',110012530,112998757,'','false','/images/games/secrets_of_olympus/secrets_of_olympus16x16.gif',false,11323,'/images/games/secrets_of_olympus/secrets_of_olympus100x75.jpg','/images/games/secrets_of_olympus/secrets_of_olympus179x135.jpg','/images/games/secrets_of_olympus/secrets_of_olympus320x240.jpg','false','/images/games/thumbnails_med_2/secrets_of_olympus130x75.gif','/exe/Secrets_of_Olympus-setup.exe?lc=en&ext=Secrets_of_Olympus-setup.exe','Discover the mysteries of Grecian gods! ','Use your matching skills to discover the mysteries of Grecian gods! ','false',false,false,'Secrets of Olympus');ag(113009953,'Turbo Pizza','/images/games/turbo_pizza/turbo_pizza81x46.gif',110012530,113039830,'','false','/images/games/turbo_pizza/turbo_pizza16x16.gif',false,11323,'/images/games/turbo_pizza/turbo_pizza100x75.jpg','/images/games/turbo_pizza/turbo_pizza179x135.jpg','/images/games/turbo_pizza/turbo_pizza320x240.jpg','false','/images/games/thumbnails_med_2/turbo_pizza130x75.gif','/exe/Turbo_Pizza-setup.exe?lc=en&ext=Turbo_Pizza-setup.exe','Own and operate a pizza franchise! ','Launch a pizza franchise starting with a secret family recipe! ','false',false,false,'Turbo Pizza');ag(113030223,'Solitaire','/images/games/solitaire_web/solitaire_web81x46.gif',0,113060333,'ada556c3-9d1b-405b-8ee6-c1d8327cbe44','false','/images/games/solitaire_web/solitaire_web16x16.gif',false,11323,'/images/games/solitaire_web/solitaire_web100x75.jpg','/images/games/solitaire_web/solitaire_web179x135.jpg','/images/games/solitaire_web/solitaire_web320x240.jpg','false','/images/games/thumbnails_med_2/solitaire_web130x75.gif','','Clear the deck as fast as you can in this classic Solitaire card game.','The game of Solitaire is a classic! You’ll enjoy hours of fun as you clear the deck as fast as you can. Stack, move, match suit and alternate card colors to win!','true',true,true,'Solitaire_Online');ag(113056167,'Dream Day Honeymoon','/images/games/dream_day_honeymoon/dream_day_honeymoon81x46.gif',110012530,11308627,'','false','/images/games/dream_day_honeymoon/dream_day_honeymoon16x16.gif',false,11323,'/images/games/dream_day_honeymoon/dream_day_honeymoon100x75.jpg','/images/games/dream_day_honeymoon/dream_day_honeymoon179x135.jpg','/images/games/dream_day_honeymoon/dream_day_honeymoon320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_honeymoon130x75.gif','/exe/Dream_Day_Honeymoon-setup.exe?lc=en&ext=Dream_Day_Honeymoon-setup.exe','Second in the Dream Day series: A romantic seek-and-find adventure!','Help Jenny & Robert experience an exciting honeymoon in this unique seek-and-find adventure!','false',false,false,'Dream Day Honeymoon');ag(113058647,'Escape from Paradise','/images/games/escape_from_paradise/escape_from_paradise81x46.gif',1000,113088520,'','false','/images/games/escape_from_paradise/escape_from_paradise16x16.gif',false,11323,'/images/games/escape_from_paradise/escape_from_paradise100x75.jpg','/images/games/escape_from_paradise/escape_from_paradise179x135.jpg','/images/games/escape_from_paradise/escape_from_paradise320x240.jpg','false','/images/games/thumbnails_med_2/escape_from_paradise130x75.gif','/exe/Escape_from_Paradise-setup.exe?lc=en&ext=Escape_from_Paradise-setup.exe','Lead cruise ship castaways to safety! ','Lead a group of luxury cruise ship castaways to safety! ','false',false,false,'Escape from Paradise');ag(113069720,'Mystery P.I.','/images/games/mystery_pi/mystery_pi81x46.gif',1100710,113099487,'','false','/images/games/mystery_pi/mystery_pi16x16.gif',false,11323,'/images/games/mystery_pi/mystery_pi100x75.jpg','/images/games/mystery_pi/mystery_pi179x135.jpg','/images/games/mystery_pi/mystery_pi320x240.jpg','false','/images/games/thumbnails_med_2/mystery_pi130x75.gif','/exe/Mystery_PI-setup.exe?lc=en&ext=Mystery_PI-setup.exe','Find grandma&rsquo;s winning lottery ticket! ','Find grandma&rsquo;s $488 million winning lottery ticket before the deadline! ','false',false,false,'Mystery PI');ag(113076263,'Chroma Crash','/images/games/chroma_crash/chroma_crash81x46.gif',0,113106983,'','false','/images/games/chroma_crash/chroma_crash16x16.gif',false,11323,'/images/games/chroma_crash/chroma_crash100x75.jpg','/images/games/chroma_crash/chroma_crash179x135.jpg','/images/games/chroma_crash/chroma_crash320x240.jpg','false','/images/games/thumbnails_med_2/chroma_crash130x75.gif','/exe/Chroma_Crash-setup.exe?lc=en&ext=Chroma_Crash-setup.exe','A thrilling new 3D collapse game!','Control the Flying Frog in this fast-paced 3D action puzzler!','false',false,false,'Chroma Crash');ag(113079173,'Snapshot Adventures','/images/games/snapshot_adventures/snapshot_adventures81x46.gif',110012530,113109753,'','false','/images/games/snapshot_adventures/snapshot_adventures16x16.gif',false,11323,'/images/games/snapshot_adventures/snapshot_adventures100x75.jpg','/images/games/snapshot_adventures/snapshot_adventures179x135.jpg','/images/games/snapshot_adventures/snapshot_adventures320x240.jpg','false','/images/games/thumbnails_med_2/snapshot_adventures130x75.gif','/exe/Snapshot_Adventures-setup.exe?lc=en&ext=Snapshot_Adventures-setup.exe','Photograph 135 species of birds!','Photograph 135 species of birds on a cross-country journey!','false',false,false,'Snapshot Adventures');ag(113101743,'Tasty Planet','/images/games/tastyplanet/tastyplanet81x46.gif',0,11313223,'','false','/images/games/tastyplanet/tastyplanet16x16.gif',false,11323,'/images/games/tastyplanet/tastyplanet100x75.jpg','/images/games/tastyplanet/tastyplanet179x135.jpg','/images/games/tastyplanet/tastyplanet320x240.jpg','false','/images/games/thumbnails_med_2/tastyplanet130x75.gif','/exe/Tasty_Planet-setup.exe?lc=en&ext=Tasty_Planet-setup.exe','Eat your vegetables – and a planet! ','Eat your way through everything from bacteria to an entire planet! ','false',false,false,'Tasty Planet');ag(113105857,'Battleship: Fleet Command','/images/games/battleship/battleship81x46.gif',110060583,113136357,'3ab9c103-a1f3-4580-885d-55e0db2f0fc1','false','/images/games/battleship/battleship16x16.gif',false,11323,'/images/games/battleship/battleship100x75.jpg','/images/games/battleship/battleship179x135.jpg','/images/games/battleship/battleship320x240.jpg','false','/images/games/thumbnails_med_2/battleship130x75.gif','/exe/Battleship_Fleet_Command-setup.exe?lc=en&ext=Battleship_Fleet_Command-setup.exe','Find and sink enemy ships!','Sink rival ships in this classic family game of naval strategy! ','false',false,false,'Battleship Fleet Command');ag(113128447,'Daycare Nightmare','/images/games/daycare_nightmare/daycare_nightmare81x46.gif',110012530,113159600,'','false','/images/games/daycare_nightmare/daycare_nightmare16x16.gif',false,11323,'/images/games/daycare_nightmare/daycare_nightmare100x75.jpg','/images/games/daycare_nightmare/daycare_nightmare179x135.jpg','/images/games/daycare_nightmare/daycare_nightmare320x240.jpg','false','/images/games/thumbnails_med_2/daycare_nightmare130x75.gif','/exe/Daycare_Nightmare-setup.exe?lc=en&ext=Daycare_Nightmare-setup.exe','Love and care for baby monsters! ','Care for baby monsters while their parents are at work! ','false',false,false,'Daycare Nightmare');ag(113143653,'Dream Chronicles','/images/games/dream_chronicles/dream_chronicles81x46.gif',110060583,113174903,'','false','/images/games/dream_chronicles/dream_chronicles16x16.gif',false,11323,'/images/games/dream_chronicles/dream_chronicles100x75.jpg','/images/games/dream_chronicles/dream_chronicles179x135.jpg','/images/games/dream_chronicles/dream_chronicles320x240.jpg','false','/images/games/thumbnails_med_2/dream_chronicles130x75.gif','/exe/Dream_Chronicles-setup.exe?lc=en&ext=Dream_Chronicles-setup.exe','Where fantasy and reality collide!','Break a mysterious sleeping spell that has enveloped an entire town!','false',false,false,'Dream Chronicles');ag(113149420,'G.H.O.S.T. Hunters','/images/games/ghost_hunters/ghost_hunters81x46.gif',110060583,113180357,'','false','/images/games/ghost_hunters/ghost_hunters16x16.gif',false,11323,'/images/games/ghost_hunters/ghost_hunters100x75.jpg','/images/games/ghost_hunters/ghost_hunters179x135.jpg','/images/games/ghost_hunters/ghost_hunters320x240.jpg','false','/images/games/thumbnails_med_2/ghost_hunters130x75.gif','/exe/GHOST_Hunters-setup.exe?lc=en&ext=GHOST_Hunters-setup.exe','A haunting? Or clever hoax? ','Investigate a possible haunting - or uncover a clever hoax! ','false',false,false,'GHOST Hunters');ag(113217220,'Brainiversity','/images/games/brainiversity/brainiversity81x46.gif',1000,113248113,'','false','/images/games/brainiversity/brainiversity16x16.gif',false,11323,'/images/games/brainiversity/brainiversity100x75.jpg','/images/games/brainiversity/brainiversity179x135.jpg','/images/games/brainiversity/brainiversity320x240.jpg','false','/images/games/thumbnails_med_2/brainiversity130x75.gif','/exe/Brainiversity-setup.exe?lc=en&ext=Brainiversity-setup.exe','Exercise your brain cells! ','Stimulate your brain with 16 different brain-training activities. ','false',false,false,'Brainiversity');ag(113249367,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',0,113280320,'50fd79be-63ad-401b-bbe4-925e1412be00','false','/images/games/riseAtlantis/riseAtlantis16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/riseAtlantis130x75.gif','/exe/The_Rise_of_Atlantis-setup.exe?lc=en&ext=The_Rise_of_Atlantis-setup.exe','Raise the lost continent of Atlantis! ','Collect the seven powers of Poseidon to save Atlantis!','true',true,true,'The Rise of Atlantis_Online');ag(113274727,'Interpol: The Trail of Dr. Chaos','/images/games/interpol/interpol81x46.gif',1000,113305150,'','false','/images/games/interpol/interpol16x16.gif',false,11323,'/images/games/interpol/interpol100x75.jpg','/images/games/interpol/interpol179x135.jpg','/images/games/interpol/interpol320x240.jpg','false','/images/games/thumbnails_med_2/interpol130x75.gif','/exe/Interpol_The_Trail_of_Dr_Chaos-setup.exe?lc=en&ext=Interpol_The_Trail_of_Dr_Chaos-setup.exe','Find the doctor’s corrupted items! ','Find hidden objects to stop Dr. Chaos from destroying the world! ','false',false,false,'Interpol The Trail of Dr Chaos');ag(113297350,'Cake Mania 2','/images/games/Cake_mania_2/Cake_mania_281x46.gif',110012530,11332883,'','false','/images/games/Cake_mania_2/Cake_mania_216x16.gif',false,11323,'/images/games/Cake_mania_2/Cake_mania_2100x75.jpg','/images/games/Cake_mania_2/Cake_mania_2179x135.jpg','/images/games/Cake_mania_2/Cake_mania_2320x240.jpg','false','/images/games/thumbnails_med_2/Cake_mania_2130x75.gif','/exe/Cake_Mania_2-setup.exe?lc=en&ext=Cake_Mania_2-setup.exe','All new bakery adventures! ','Serve scrumptious cakes to quirky customers in Jill’s latest bakery adventure! ','false',false,false,'Cake Mania 2');ag(113313917,'Jewel Quest&#174; Solitaire II','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_281x46.gif',1004,11334443,'','false','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_216x16.gif',false,11323,'/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2100x75.jpg','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2179x135.jpg','/images/games/Jewel_Quest_Solitaire_2/Jewel_Quest_Solitaire_2320x240.jpg','false','/images/games/thumbnails_med_2/Jewel_Quest_Solitaire_2130x75.gif','/exe/Jewel_Quest_Solitaire_2-setup.exe?lc=en&ext=Jewel_Quest_Solitaire_2-setup.exe','Take a wild journey through Africa! ','Help Emma find her husband in this mystery-solving African adventure! ','false',false,false,'Jewel Quest Solitaire 2');ag(113342230,'5 Realms of Cards','/images/games/5_realms_of_cards/5_realms_of_cards81x46.gif',110060583,113373480,'','false','/images/games/5_realms_of_cards/5_realms_of_cards16x16.gif',false,11323,'/images/games/5_realms_of_cards/5_realms_of_cards100x75.jpg','/images/games/5_realms_of_cards/5_realms_of_cards179x135.jpg','/images/games/5_realms_of_cards/5_realms_of_cards320x240.jpg','false','/images/games/thumbnails_med_2/5_realms_of_cards130x75.gif','/exe/5_Realms_of_Cards-setup.exe?lc=en&ext=5_Realms_of_Cards-setup.exe','Explore 5 storybook card realms! ','Help a princess restore peace in this fairytale solitaire game! ','false',false,false,'5 Realms of Cards');ag(113347547,'ZoomBook','/images/games/zoombook/zoombook81x46.gif',1007,113378403,'','false','/images/games/zoombook/zoombook16x16.gif',false,11323,'/images/games/zoombook/zoombook100x75.jpg','/images/games/zoombook/zoombook179x135.jpg','/images/games/zoombook/zoombook320x240.jpg','false','/images/games/thumbnails_med_2/zoombook130x75.gif','/exe/ZoomBook-setup.exe?lc=en&ext=ZoomBook-setup.exe','Discover Mayan temples and treasures!  ','Venture through mysterious Mayan temples in this suspense-filled puzzler! ','false',false,false,'ZoomBook');ag(113367310,'Gutterball','/images/games/gutterball/gb81x46.jpg',0,113398277,'c06753b0-163c-4ae4-84ed-e4f964735d86','false','/images/games/gutterball/gb16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/gutterball130x75.gif','','Have a ball bowling!','Strike it big as the bowling ball hurtles down the lane.','true',false,false,'Gutterball OL');ag(113405543,'Sudoku Quest','/images/games/sudoku_quest/sudokuquest81x46.gif',0,113436527,'0727b7fd-3aae-4036-a99a-2eba3eb8686b','false','/images/games/sudoku_quest/sudokuquest16x16.gif',false,11323,'/images/games/sudoku_quest/sudokuquest100x75.jpg','/images/games/sudoku_quest/sudokuquest179x135.jpg','/images/games/sudoku_quest/sudokuquest320x240.jpg','false','/images/games/thumbnails_med_2/sudokuquest130x75.gif','/exe/sudoku_quest-setup.exe?lc=en&ext=sudoku_quest-setup.exe','Do <i>you</i> Sudoku?','The puzzle game that has taken the world by storm. Do <i>you</i> Sudoku?','true',false,false,'Sudoku Quest OL');ag(113412760,'Granny In Paradise','/images/games/granny_paradise/granny_paradise81x46.gif',0,113443747,'6905917b-cc83-444f-8777-0a2546649409','false','/images/games/granny_paradise/granny_paradise16x16.gif',false,11323,'/images/games/granny_paradise/granny_paradise100x75.jpg','/images/games/granny_paradise/granny_paradise179x135.jpg','/images/games/granny_paradise/granny_paradise320x240.jpg','false','/images/games/thumbnails_med_2/granny_paradise130x75.gif','/exe/Granny_In_Paradise-setup.exe?lc=en&ext=Granny_In_Paradise-setup.exe','Help Granny rescue her kitties!','Help Granny rescue her kitties and outwit the nefarious Dr. Meow!','true',false,false,'Granny In Paradise OL');ag(113413793,'Hexalot','/images/games/Hexalot/Hexalot81x46.gif',0,113444760,'1ef016cd-1db0-41e4-bdc0-6ce9a292b2fd','false','/images/games/Hexalot/Hexalot16x16.gif',false,11323,'/images/games/Hexalot/Hexalot100x75.jpg','/images/games/Hexalot/Hexalot179x135.jpg','/images/games/Hexalot/Hexalot320x240.jpg','false','/images/games/thumbnails_med_2/Hexalot130x75.gif','/exe/Hexalot-setup.exe?lc=en&ext=Hexalot-setup.exe','A medieval mind-bending adventure!','Build bridges across treacherous puzzlescapes in this mind-bending puzzle adventure!','true',false,false,'Hexalot OL');ag(113414823,'The Lost City of Gold','/images/games/Lost_City_of_Gold/Lost_City_of_Gold81x46.gif',0,113445793,'60cf5f99-6e51-4ccc-ac40-47a7054f5ad4','false','/images/games/Lost_City_of_Gold/Lost_City_of_Gold16x16.gif',false,11323,'/images/games/Lost_City_of_Gold/Lost_City_of_Gold100x75.jpg','/images/games/Lost_City_of_Gold/Lost_City_of_Gold179x135.jpg','/images/games/Lost_City_of_Gold/Lost_City_of_Gold320x240.jpg','false','/images/games/thumbnails_med_2/Lost_City_of_Gold130x75.gif','/exe/The_Lost_City_of_Gold-setup.exe?lc=en&ext=The_Lost_City_of_Gold-setup.exe','An adventure to recover hidden treasures!','Venture through dangerous jungles and treacherous rivers to recover hidden treasure!','true',false,false,'The Lost City of Gold OL');ag(113420980,'Fish Tycoon','/images/games/fish_tycoon/fish_tycoon81x46.gif',0,113451963,'bb94d0fe-807d-476b-b3a9-9e08a73f6ebe','false','/images/games/fish_tycoon/fish_tycoon16x16.gif',false,11323,'/images/games/fish_tycoon/fish_tycoon100x75.jpg','/images/games/fish_tycoon/fish_tycoon179x135.jpg','/images/games/fish_tycoon/fish_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/fish_tycoon130x75.gif','','Breed fish in a virtual aquarium!','Breed and care for exotic fish in a real-time virtual aquarium!','true',false,false,'Fish Tycoon OL');ag(113434387,'Tino&rsquo;s Fruit Stand','/images/games/tinos_fruit_stand/tinos_fruit_stand81x46.gif',0,113465370,'334ab0ef-0a8f-468c-b33e-269a0955d6ce','false','/images/games/tinos_fruit_stand/tinos_fruit_stand16x16.gif',false,11323,'/images/games/tinos_fruit_stand/tinos_fruit_stand100x75.jpg','/images/games/tinos_fruit_stand/tinos_fruit_stand179x135.jpg','/images/games/tinos_fruit_stand/tinos_fruit_stand320x240.jpg','false','/images/games/thumbnails_med_2/tinos_fruit_stand130x75.gif','','Fill customer&rsquo;s fruit orders faster!','Help save Tino&rsquo;s fruit stand by correctly filling orders faster!','true',false,false,'Tinos Fruit Stand OL');ag(113435403,'Glyph','/images/games/glyph/glyph81x46.gif',0,113466387,'a836498b-3ee6-49f0-96e6-452a0a4c89a6','false','/images/games/glyph/glyph16x16.gif',false,11323,'/images/games/glyph/glyph100x75.jpg','/images/games/glyph/glyph179x135.jpg','/images/games/glyph/glyph320x240.jpg','false','/images/games/thumbnails_med_2/glyph130x75.gif','/exe/Glyph-setup.exe?lc=en&ext=Glyph-setup.exe','Save the dying world of Kuros!','Save the dying world of Kuros by assembling ancient glyphs!','true',false,false,'Glyph OL');ag(113436433,'Word Monaco','/images/games/wordmonaco/wordmonaco81x46.gif',0,113467417,'5d2ec417-e71b-4a15-a699-f45d695ca08a','false','/images/games/wordmonaco/wordmonaco16x16.gif',false,11323,'/images/games/wordmonaco/wordmonaco100x75.jpg','/images/games/wordmonaco/wordmonaco179x135.jpg','/images/games/wordmonaco/wordmonaco320x240.jpg','false','/images/games/thumbnails_med_2/wordmonaco130x75.gif','','Where wordplay meets solitaire!','A blend of word-creation and solitaire in 6 Mediterranean locales!','true',false,false,'Word Monaco OL');ag(113437463,'Hidden Expedition: Titanic','/images/games/he_titanic/he_titanic81x46.gif',0,113468450,'a43e75f2-ec8f-4825-a825-c768ca932b4a','false','/images/games/he_titanic/he_titanic16x16.gif',false,11323,'/images/games/he_titanic/he_titanic100x75.jpg','/images/games/he_titanic/he_titanic179x135.jpg','/images/games/he_titanic/he_titanic320x240.jpg','false','/images/games/thumbnails_med_2/he_titanic130x75.gif','','Search the wreckage for jewels!','Search the wreckage of this once-majestic ship for the Crown Jewels!','true',false,false,'Hidden Expedition Titanic OL');ag(113438497,'Inspheration','/images/games/inspheration/inspheration81x46.gif',0,113469480,'4e75dd89-7e84-4f2e-92ca-746da077cb35','false','/images/games/inspheration/inspheration16x16.gif',false,11323,'/images/games/inspheration/inspheration100x75.jpg','/images/games/inspheration/inspheration179x135.jpg','/images/games/inspheration/inspheration320x240.jpg','false','/images/games/thumbnails_med_2/inspheration130x75.gif','','An explosion of colorful spheres!','Combine 3 matching spheres to make them explode off the screen! ','true',false,false,'Inspheration OL');ag(113441573,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',0,113472560,'f8848d21-38ec-4c86-b1ea-5dd9b9420a61','false','/images/games/jewelquest_sol/jewelquest_sol16x16.gif',false,11323,'/images/games/jewelquest_sol/jewelquest_sol100x75.jpg','/images/games/jewelquest_sol/jewelquest_sol179x135.jpg','/images/games/jewelquest_sol/jewelquest_sol320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest_sol130x75.gif','/exe/Jewel_Quest_Solitaire-setup.exe?lc=en&ext=Jewel_Quest_Solitaire-setup.exe','Match cards to make gold!','Match cards to make gold on a trek through South America! ','true',false,false,'Jewel Quest Solitaire OL');ag(113446730,'Jewel Quest II','/images/games/jewel_quest_2/jewel_quest_281x46.gif',0,113477713,'89a0bca8-885b-4c24-b080-b40cd50e9e17','false','/images/games/jewel_quest_2/jewel_quest_216x16.gif',false,11323,'/images/games/jewel_quest_2/jewel_quest_2100x75.jpg','/images/games/jewel_quest_2/jewel_quest_2179x135.jpg','/images/games/jewel_quest_2/jewel_quest_2320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_2130x75.gif','/exe/Jewel_Quest_2-setup.exe?lc=en&ext=Jewel_Quest_2-setup.exe','Embark on a sparkling adventure! ','The ultimate jewel matching adventure returns! ','true',false,false,'Jewel Quest 2 OL');ag(113525360,'Cake Mania','/images/games/Cake_Mania/Cake_Mania81x46.gif',0,113556173,'d447cb6a-e287-476e-9858-b62f11bbc7aa','false','/images/games/Cake_Mania/Cake_Mania16x16.gif',false,11323,'/images/games/Cake_Mania/Cake_Mania100x75.jpg','/images/games/Cake_Mania/Cake_Mania179x135.jpg','/images/games/Cake_Mania/Cake_Mania320x240.jpg','false','/images/games/thumbnails_med_2/Cake_Mania130x75.gif','/exe/Cake_Mania-setup.exe?lc=en&ext=Cake_Mania-setup.exe','A fast-paced culinary crisis!','Help Jill reopen her grandparents’ bakery and upgrade the kitchen!','true',false,false,'Cake Mania_Online');ag(113537610,'Build-a-lot','/images/games/build_a_lot/build_a_lot81x46.gif',1000,113568987,'','false','/images/games/build_a_lot/build_a_lot16x16.gif',false,11323,'/images/games/build_a_lot/build_a_lot100x75.jpg','/images/games/build_a_lot/build_a_lot179x135.jpg','/images/games/build_a_lot/build_a_lot320x240.jpg','false','/images/games/thumbnails_med_2/build_a_lot130x75.gif','/exe/Build_a_lot-setup.exe?lc=en&ext=Build_a_lot-setup.exe','Flip houses for big profits! ','Become a real estate mogul and take over the housing market! ','false',false,false,'Build a lot');ag(113555820,'Mahjongg Artifacts 2','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_281x46.gif',110060583,113586680,'','false','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_216x16.gif',false,11323,'/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2100x75.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2179x135.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjongg_artifacts_2130x75.gif','/exe/Mahjongg_Artifacts_2-setup.exe?lc=en&ext=Mahjongg_Artifacts_2-setup.exe','An awesome tile-matching adventure!  ','Gather pearls to purchase special powers in this tile-matching adventure!  ','false',false,false,'Mahjongg Artifacts 2');ag(113558480,'Cafe Mahjongg','/images/games/cafe_mahjong/cafe_mahjong81x46.gif',1006,113589167,'','false','/images/games/cafe_mahjong/cafe_mahjong16x16.gif',false,11323,'/images/games/cafe_mahjong/cafe_mahjong100x75.jpg','/images/games/cafe_mahjong/cafe_mahjong179x135.jpg','/images/games/cafe_mahjong/cafe_mahjong320x240.jpg','false','/images/games/thumbnails_med_2/cafe_mahjong130x75.gif','/exe/Cafe_Mahjongg-setup.exe?lc=en&ext=Cafe_Mahjongg-setup.exe','Match tiles to earn exotic coffee! ','Match tiles to earn your favorite coffees from around the world!  ','false',false,false,'Cafe Mahjongg');ag(113564737,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',0,113595610,'f8848d21-38ec-4c86-b1ea-5dd9b9420a61','false','/images/games/jewelquest_sol/16x16_jewelquest_sol.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/jewelquest_sol130x75.gif','','Match cards to make gold!','Match cards to make gold on a trek through South America! ','true',false,false,'Jewel Quest Solitaire_Online');ag(113644907,'Gold Miner Vegas','/images/games/gold_miner_vegas/gold_miner_vegas81x46.gif',110060583,113675483,'98e922d9-acdc-4b2d-b7a3-30165eabc6f2','false','/images/games/gold_miner_vegas/gold_miner_vegas16x16.gif',false,11323,'/images/games/gold_miner_vegas/gold_miner_vegas100x75.jpg','/images/games/gold_miner_vegas/gold_miner_vegas179x135.jpg','/images/games/gold_miner_vegas/gold_miner_vegas320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_vegas130x75.gif','/exe/Gold_Miner_Vegas-setup.exe?lc=en&ext=Gold_Miner_Vegas-setup.exe','Mine gold with all-new gadgets! ','With all-new gold-grabbing gadgets, the action is better than ever! ','false',false,false,'Gold Miner Vegas');ag(113645300,'Mahjong Roadshow&#153;','/images/games/mahjong_roadshow/mahjong_roadshow81x46.gif',1006,113676953,'','false','/images/games/mahjong_roadshow/mahjong_roadshow16x16.gif',false,11323,'/images/games/mahjong_roadshow/mahjong_roadshow100x75.jpg','/images/games/mahjong_roadshow/mahjong_roadshow179x135.jpg','/images/games/mahjong_roadshow/mahjong_roadshow320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_roadshow130x75.gif','/exe/Mahjong_Roadshow-setup.exe?lc=en&ext=Mahjong_Roadshow-setup.exe','Search for antique treasures! ','Embark on an antique adventure in search of priceless treasures! ','false',false,false,'Mahjong Roadshow');ag(113653543,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',0,113684530,'1e571cd1-e429-49ca-940a-292c4e731e88','false','/images/games/poker_pop/poker_pop16x16.gif',false,11323,'/images/games/poker_pop/poker_pop100x75.jpg','/images/games/poker_pop/poker_pop179x135.jpg','/images/games/poker_pop/poker_pop320x240.jpg','false','/images/games/thumbnails_med_2/poker_pop130x75.gif','/exe/Poker_Pop-setup.exe?lc=en&ext=Poker_Pop-setup.exe','Globe-hopping tile-matching fun!','Advance across continents in this combination poker, mahjong and solitaire game!','true',false,false,'Poker Pop OL');ag(113654293,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',0,113685247,'14be2b10-6898-4170-991c-eea1e76fb580','false','/images/games/bricks_of_egypt2/bricks_of_egypt216x16.gif',false,11323,'/images/games/bricks_of_egypt2/bricks_of_egypt2100x75.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2179x135.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt2130x75.gif','/exe/Bricks_of_Egypt_2-setup.exe?lc=en&ext=Bricks_of_Egypt_2-setup.exe','Explore a pyramid’s secret passage! ','Explore a pyramid’s secret passage in search of Pharaoh’s ancient plaques!','true',false,false,'Bricks of Egypt 2 OL');ag(113666647,'Luxor 3','/images/games/luxor3_new/luxor3_new81x46.gif',110012530,113697223,'','false','/images/games/luxor3_new/luxor3_new16x16.gif',false,11323,'/images/games/luxor3_new/luxor3_new100x75.jpg','/images/games/luxor3_new/luxor3_new179x135.jpg','/images/games/luxor3_new/luxor3_new320x240.jpg','false','/images/games/thumbnails_med_2/luxor3_new130x75.gif','/exe/Luxor_3-setup.exe?lc=en&ext=Luxor_3-setup.exe','The battle for eternal afterlife begins!','Use your match-three skills to battle a powerful Egyptian god!  ','false',false,false,'Luxor 3');ag(113674337,'Capoeira Fighter 3','/images/games/capoeira_fighter_3/capoeira_fighter_381x46.gif',0,113705197,'5df19565-42b8-4eeb-806d-d19702d0ec8d','false','/images/games/capoeira_fighter_3/capoeira_fighter_316x16.gif',false,11323,'/images/games/capoeira_fighter_3/capoeira_fighter_3100x75.jpg','/images/games/capoeira_fighter_3/capoeira_fighter_3179x135.jpg','/images/games/capoeira_fighter_3/capoeira_fighter_3320x240.jpg','false','/images/games/thumbnails_med_2/capoeira_fighter_3130x75.gif','','Fight capoeira around the world.','Test your capoeira skills against other styles around the world.','true',false,false,'Capoeira Fighter 3 OL');ag(113676843,'Midnight Strike','/images/games/midnight_strike/midnight_strike81x46.gif',0,113707533,'bd2d98ad-5695-4ca0-89f8-12dc376a908b','false','/images/games/midnight_strike/midnight_strike16x16.gif',false,11323,'/images/games/midnight_strike/midnight_strike100x75.jpg','/images/games/midnight_strike/midnight_strike179x135.jpg','/images/games/midnight_strike/midnight_strike320x240.jpg','false','/images/games/thumbnails_med_2/midnight_strike130x75.gif','','Blast evil cyborgs!','Evil cyborgs are taking over - you must stop them! ','true',false,false,'Midnight Strike OL');ag(113685560,'Hoops Mania','/images/games/Hoops_Mania/Hoops_Mania81x46.gif',0,113716357,'bb0e7d9a-1a3f-4df2-94c7-66b1c87f4a11','false','/images/games/Hoops_Mania/Hoops_Mania16x16.gif',false,11323,'/images/games/Hoops_Mania/Hoops_Mania100x75.jpg','/images/games/Hoops_Mania/Hoops_Mania179x135.jpg','/images/games/Hoops_Mania/Hoops_Mania320x240.jpg','false','/images/games/thumbnails_med_2/Hoops_Mania130x75.gif','','Let’s shoot some hoops!','The best basketball shooting game of all time! ','true',false,false,'Hoops Mania OL');ag(113686387,'LA Times Crossword','/images/games/LA_Times_Crossword/LA_Times_Crossword81x46.gif',0,113717263,'cf8bbb26-352d-483c-82c4-7dd73efd7d09','false','/images/games/LA_Times_Crossword/LA_Times_Crossword16x16.gif',false,11323,'/images/games/LA_Times_Crossword/LA_Times_Crossword100x75.jpg','/images/games/LA_Times_Crossword/LA_Times_Crossword179x135.jpg','/images/games/LA_Times_Crossword/LA_Times_Crossword320x240.jpg','false','/images/games/thumbnails_med_2/LA_Times_Crossword130x75.gif','','Solve a new crossword every day!','Test your brain and solve a new crossword everyday from the LA Times!','true',false,false,'LA Times Crossword OL');ag(113688733,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',0,113719450,'a867ba10-a271-4257-9219-7d2f453e6fbf','false','/images/games/rainbow_web/rainbow_web16x16.gif',false,11323,'/images/games/rainbow_web/rainbow_web100x75.jpg','/images/games/rainbow_web/rainbow_web179x135.jpg','/images/games/rainbow_web/rainbow_web320x240.jpg','false','/images/games/thumbnails_med_2/rainbow_web130x75.gif','','Break a spell to restore sunshine!','Solve puzzles to break a spell and return sunshine to the kingdom!','true',true,true,'Rainbow Web OLT1');ag(113690163,'Magic Match: Genies Journey','/images/games/magicmatch2/magicmatch281x46.gif',0,113721147,'1f35568f-dafa-4650-9899-0961dca18b15','false','/images/games/magicmatch2/magicmatch216x16.gif',false,11323,'/images/games/magicmatch2/magicmatch2100x75.jpg','/images/games/magicmatch2/magicmatch2179x135.jpg','/images/games/magicmatch2/magicmatch2320x240.jpg','false','/images/games/thumbnails_med_2/magicmatch2130x75.gif','/exe/Magic_Match_2-setup.exe?lc=en&ext=Magic_Match_2-setup.exe','Visit magical lands with an Imp!','Join Giggles the Imp on a magical adventure through Arcania!','true',true,true,'Magic Match 2 OLT1');ag(113692883,'Talismania Deluxe','/images/games/talismania/talismania81x46.gif',0,113723853,'2da45263-4a49-4f3e-babf-8cdc2d10d106','false','/images/games/talismania/16x16talismania.gif',false,11323,'/images/games/talismania/talismania100x75.jpg','/images/games/talismania/talismania179x135.jpg','/images/games/talismania/talismania320x240.jpg','false','/images/games/thumbnails_med_2/talismania130x75.gif','/exe/Talismania_Deluxe_new-setup.exe?lc=en&ext=Talismania_Deluxe_new-setup.exe','Break King Midas’ golden curse!','Help Midas battle mythical monsters and break an ancient curse! ','true',true,true,'Talismania Deluxe (new) OLT1');ag(113694937,'Bookworm Deluxe','/images/games/bookworm/bookworm81x46.jpg',0,113725890,'90a14b96-841c-42fb-9a29-627c0180dc63','false','/images/games/bookworm/bookworm16x16.gif',false,11323,'/images/games/bookworm/bookworm100x75.jpg','/images/games/bookworm/bookworm179x135.jpg','/images/games/bookworm/bookworm320x240.jpg','false','/images/games/thumbnails_med_2/bookwarm130x75.gif','','Feed the hungry bookworm with words!','Link letters and build words in this challenging vocabulary skills game.','true',true,true,'Bookworm Deluxe OLT1');ag(113696883,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',0,113727853,'14be2b10-6898-4170-991c-eea1e76fb580','false','/images/games/bricks_of_egypt2/bricks_of_egypt216x16.gif',false,11323,'/images/games/bricks_of_egypt2/bricks_of_egypt2100x75.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2179x135.jpg','/images/games/bricks_of_egypt2/bricks_of_egypt2320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt2130x75.gif','','Explore a pyramid’s secret passage! ','Explore a pyramid’s secret passage in search of Pharaoh’s ancient plaques!','true',true,true,'Bricks of Egypt 2 OLT1');ag(113701667,'Bricks of Atlantis','/images/games/bricks_of_atlantis/bricks_of_atlantis81x46.gif',0,113732320,'cffb515b-2f10-4790-b3e6-8c0ab3d0b56c','false','/images/games/bricks_of_atlantis/bricks_of_atlantis16x16.gif',false,11323,'/images/games/bricks_of_atlantis/bricks_of_atlantis100x75.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis179x135.jpg','/images/games/bricks_of_atlantis/bricks_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_atlantis130x75.gif','/exe/bricks_of_atlantis-setup.exe?lc=en&ext=bricks_of_atlantis-setup.exe','A deep sea break-out!','Grab your harpoon and dive into a deep sea blockbusting adventure!','true',true,true,'Bricks of Atlantis OLT1');ag(113708560,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',0,113739467,'50fd79be-63ad-401b-bbe4-925e1412be00','false','/images/games/riseAtlantis/riseAtlantis16x16.gif',false,11323,'/images/games/riseAtlantis/riseAtlantis100x75.jpg','/images/games/riseAtlantis/riseAtlantis179x135.jpg','/images/games/riseAtlantis/riseAtlantis320x240.jpg','false','/images/games/thumbnails_med_2/riseAtlantis130x75.gif','','Raise the lost continent of Atlantis! ','Collect the seven powers of Poseidon to save Atlantis!','true',true,true,'The Rise of Atlantis OLT1');ag(113710930,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',0,113741913,'ea43343e-69ec-498f-ac1b-5ee2a07b3ecb','false','/images/games/bricks_of_egypt/bricks_of_egypt16x16.gif',false,11323,'/images/games/bricks_of_egypt/bricks_of_egypt100x75.jpg','/images/games/bricks_of_egypt/bricks_of_egypt179x135.jpg','/images/games/bricks_of_egypt/bricks_of_egypt320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_egypt130x75.gif','','Brick breaking action, Egyptian style!','8 levels of classic brick breaking action with an Egyptian theme!','true',true,true,'Bricks of Egypt -OLT1');ag(113714153,'Flip Words','/images/games/flipwords/flipwords81x46.jpg',0,113745123,'0c96de64-a387-4361-8822-b0f5abebd3e6','false','/images/games/flipwords/flipwords16x16.gif',false,11323,'/images/games/flipwords/flipwords100x75.jpg','/images/games/flipwords/flipwords179x135.jpg','/images/games/flipwords/flipwords320x240.jpg','false','/images/games/thumbnails_med_2/flipWords130x75.gif','','A puzzle game for word wizards!','Click on letters to make words and solve familiar phrases.','true',true,true,'Flip Words- OLT1');ag(113716973,'Poker Superstars 2','/images/games/Poker_Superstars_2/Poker_Superstars_281x46.gif',0,113747957,'1067b0c1-d8fc-42b0-95c6-762932b8197a','false','/images/games/Poker_Superstars_2/Poker_Superstars_216x16.gif',false,11323,'/images/games/Poker_Superstars_2/Poker_Superstars_2100x75.jpg','/images/games/Poker_Superstars_2/Poker_Superstars_2179x135.jpg','/images/games/Poker_Superstars_2/Poker_Superstars_2320x240.jpg','false','/images/games/thumbnails_med_2/Poker_Superstars_2130x75.gif','','No-limit Hold ’Em Action!','Face off against poker’s top players in No-Limit Hold ’Em action!','true',true,true,'Poker Superstars 2-OLT1');ag(113717210,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',0,113748177,'6ea669f1-3005-4095-8ef3-1a5db71f26e9','false','/images/games/Ocean_Express/Ocean_Express16x16.gif',false,11323,'/images/games/Ocean_Express/Ocean_Express100x75.jpg','/images/games/Ocean_Express/Ocean_Express179x135.jpg','/images/games/Ocean_Express/Ocean_Express320x240.jpg','false','/images/games/thumbnails_med_2/Ocean_Express130x75.gif','','Pack puzzles aboard a cargo ship!','Pack puzzle pieces, then cruise the coast with your cargo!','true',true,true,'Ocean Express OLT1');ag(113718803,'Magic Match','/images/games/magic_match/magic_match81x46.gif',0,113749773,'c9701142-fd0b-458a-94e7-18a20fce1d5a','false','/images/games/magic_match/magic_match16x16.gif',false,11323,'/images/games/magic_match/magic_match100x75.jpg','/images/games/magic_match/magic_match179x135.jpg','/images/games/magic_match/magic_match320x240.jpg','false','/images/games/thumbnails_med_2/magic_match130x75.gif','/exe/magic_match_1hr-setup.exe?lc=en&ext=magic_match_1hr-setup.exe','Explore six engrossing fantasy realms!','Explore six mystical realms in the Lands of the Arcane!','true',true,true,'Magic Match OLT1');ag(113721697,'Diner Dash:&reg; Hometown Hero&trade;','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero81x46.gif',110012530,113752243,'','false','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero16x16.gif',false,11323,'/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero100x75.jpg','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero179x135.jpg','/images/games/diner_dash_hometown_hero/diner_dash_hometown_hero320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_hometown_hero130x75.gif','/exe/Diner_Dash_Hometown_Hero-setup.exe?lc=en&ext=Diner_Dash_Hometown_Hero-setup.exe','Restore Flo’s favorite restaurants! ','Help Flo restore shabby hometown restaurants to their former glory! ','false',false,false,'Diner Dash Hometown Hero');ag(113726490,'Silver GameSaver Membership','/images/games/2_months_package/2_months_package81x46.gif',0,113757287,'','false','/images/games/2_months_package/2_months_package16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/2_months_package130x75.gif','/exe/2_months_package-setup.exe?lc=en&ext=2_months_package-setup.exe','1 game a month for 2 months minimum ','1 game a month for 2 months minimum ','false',false,false,'2 months package');ag(113728623,'Gold GameSaver Membership','/images/games/6_months_package/6_months_package81x46.gif',0,113759530,'','false','/images/games/6_months_package/6_months_package16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/6_months_package130x75.gif','/exe/6_months_package-setup.exe?lc=en&ext=6_months_package-setup.exe','1 game a month for 6 months minimum ','1 game a month for 6 months minimum ','false',false,false,'6 months package');ag(113729110,'Platinum GameSaver Membership','/images/games/12_months_package/12_months_package81x46.gif',0,1137600,'','false','/images/games/12_months_package/12_months_package16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/12_months_package130x75.gif','/exe/12_months_package-setup.exe?lc=en&ext=12_months_package-setup.exe','1 game a month for 12 months minimum ','1 game a month for 12 months minimum ','false',false,false,'12 months package');ag(113744620,'Bricks Of Lore','/images/games/bricks_of_lore/bricks_of_lore81x46.gif',110060583,113775320,'','false','/images/games/bricks_of_lore/bricks_of_lore16x16.gif',false,11323,'/images/games/bricks_of_lore/bricks_of_lore100x75.jpg','/images/games/bricks_of_lore/bricks_of_lore179x135.jpg','/images/games/bricks_of_lore/bricks_of_lore320x240.jpg','false','/images/games/thumbnails_med_2/bricks_of_lore130x75.gif','/exe/Bricks_Of_Lore-setup.exe?lc=en&ext=Bricks_Of_Lore-setup.exe','Battle fierce fire-breathing creatures! ','Battle fiery creatures with bombs and potions in this epic tale! ','false',false,false,'Bricks Of Lore');ag(113748870,'El Dorado Quest','/images/games/el_dorado_quest/el_dorado_quest81x46.gif',110012530,113779590,'','false','/images/games/el_dorado_quest/el_dorado_quest16x16.gif',false,11323,'/images/games/el_dorado_quest/el_dorado_quest100x75.jpg','/images/games/el_dorado_quest/el_dorado_quest179x135.jpg','/images/games/el_dorado_quest/el_dorado_quest320x240.jpg','false','/images/games/thumbnails_med_2/el_dorado_quest130x75.gif','/exe/El_Dorado_Quest-setup.exe?lc=en&ext=El_Dorado_Quest-setup.exe','Find buried treasures in the Amazon! ','Journey to an ancient Incan city in search of buried treasures! ','false',false,false,'El Dorado Quest');ag(113753713,'Age of Emerald','/images/games/age_of_emerald/age_of_emerald81x46.gif',1007,113784590,'','false','/images/games/age_of_emerald/age_of_emerald16x16.gif',false,11323,'/images/games/age_of_emerald/age_of_emerald100x75.jpg','/images/games/age_of_emerald/age_of_emerald179x135.jpg','/images/games/age_of_emerald/age_of_emerald320x240.jpg','false','/images/games/thumbnails_med_2/age_of_emerald130x75.gif','/exe/Age_of_Emerald-setup.exe?lc=en&ext=Age_of_Emerald-setup.exe','Build the city of your dreams! ','Use your match-three puzzle skills to build a great city! ','false',false,false,'Age of Emerald');ag(113759870,'Burger Shop','/images/games/burger_shop/burger_shop81x46.gif',110012530,113790557,'','false','/images/games/burger_shop/burger_shop16x16.gif',false,11323,'/images/games/burger_shop/burger_shop100x75.jpg','/images/games/burger_shop/burger_shop179x135.jpg','/images/games/burger_shop/burger_shop320x240.jpg','false','/images/games/thumbnails_med_2/burger_shop130x75.gif','/exe/Burger_Shop-setup.exe?lc=en&ext=Burger_Shop-setup.exe','Build a hamburger empire! ','Make tasty hamburgers with just the ingredients your customers crave! ','false',false,false,'Burger Shop');ag(113766567,'Poker Superstars III','/images/games/poker_superstars_3/poker_superstars_381x46.gif',1004,113797440,'','false','/images/games/poker_superstars_3/poker_superstars_316x16.gif',false,11323,'/images/games/poker_superstars_3/poker_superstars_3100x75.jpg','/images/games/poker_superstars_3/poker_superstars_3179x135.jpg','/images/games/poker_superstars_3/poker_superstars_3320x240.jpg','false','/images/games/thumbnails_med_2/poker_superstars_3130x75.gif','/exe/Poker_Superstars_3-setup.exe?lc=en&ext=Poker_Superstars_3-setup.exe','Challenge the new poker superstars! ','Get psyched for the next poker showdown with all-new superstars! ','false',false,false,'Poker Superstars 3');ag(113769527,'Fashion Fits!','/images/games/fashion_fits/fashion_fits81x46.gif',110060583,113800137,'','false','/images/games/fashion_fits/fashion_fits16x16.gif',false,11323,'/images/games/fashion_fits/fashion_fits100x75.jpg','/images/games/fashion_fits/fashion_fits179x135.jpg','/images/games/fashion_fits/fashion_fits320x240.jpg','false','/images/games/thumbnails_med_2/fashion_fits130x75.gif','/exe/Fashion_Fits-setup.exe?lc=en&ext=Fashion_Fits-setup.exe','Manage high-fashion clothing boutiques! ','Help Francine open her own line of posh clothing boutiques! ','false',false,false,'Fashion Fits');ag(113771437,'Deep Blue Sea','/images/games/deep_blue_sea/deep_blue_sea81x46.gif',1007,113802780,'','false','/images/games/deep_blue_sea/deep_blue_sea16x16.gif',false,11323,'/images/games/deep_blue_sea/deep_blue_sea100x75.jpg','/images/games/deep_blue_sea/deep_blue_sea179x135.jpg','/images/games/deep_blue_sea/deep_blue_sea320x240.jpg','false','/images/games/thumbnails_med_2/deep_blue_sea130x75.gif','/exe/Deep_Blue_Sea-setup.exe?lc=en&ext=Deep_Blue_Sea-setup.exe','Salvage sacred underwater treasures! ','Dive deep into a mysterious underwater world to salvage sacred treasures! ','false',false,false,'Deep Blue Sea');ag(113772953,'Amazing Adventures: The Lost Tomb™','/images/games/amazing_adventures_the_lost_tomb/amazing_adventures_the_lost_tomb81x46.gif',1100710,113803423,'','false','/images/games/amazing_adventures_the_lost_tomb/amazing_adventures_the_lost_tomb16x16.gif',false,11323,'/images/games/amazing_adventures_the_lost_tomb/amazing_adventures_the_lost_tomb100x75.jpg','/images/games/amazing_adventures_the_lost_tomb/amazing_adventures_the_lost_tomb179x135.jpg','/images/games/amazing_adventures_the_lost_tomb/amazing_adventures_the_lost_tomb320x240.jpg','false','/images/games/thumbnails_med_2/amazing_adventures_the_lost_tomb130x75.gif','/exe/Amazing_Adventures_The_Lost_Tomb-setup.exe?lc=en&ext=Amazing_Adventures_The_Lost_Tomb-setup.exe','Unlock the Lost Tomb of Egypt.  ','Outwit puzzle traps in your search for a long-lost tomb! ','false',false,false,'Amazing Adventures The Lost To');ag(113773360,'Janes Hotel','/images/games/janes_hotel/janes_hotel81x46.gif',110012530,113804893,'','false','/images/games/janes_hotel/janes_hotel16x16.gif',false,11323,'/images/games/janes_hotel/janes_hotel100x75.jpg','/images/games/janes_hotel/janes_hotel179x135.jpg','/images/games/janes_hotel/janes_hotel320x240.jpg','false','/images/games/thumbnails_med_2/janes_hotel130x75.gif','/exe/Janes_Hotel-setup.exe?lc=en&ext=Janes_Hotel-setup.exe','Manage a 5-star luxury hotel! ','Transform a dinky motel into an opulent 5-star luxury hotel!  ','false',false,false,'Janes Hotel');ag(113784233,'Home Sweet Home','/images/games/home_sweet_home/home_sweet_home81x46.gif',110012530,11381513,'','false','/images/games/home_sweet_home/home_sweet_home16x16.gif',false,11323,'/images/games/home_sweet_home/home_sweet_home100x75.jpg','/images/games/home_sweet_home/home_sweet_home179x135.jpg','/images/games/home_sweet_home/home_sweet_home320x240.jpg','false','/images/games/thumbnails_med_2/home_sweet_home130x75.gif','/exe/Home_Sweet_Home-setup.exe?lc=en&ext=Home_Sweet_Home-setup.exe','Design and decorate rooms! ','Use your interior design skills to decorate the perfect rooms! ','false',false,false,'Home Sweet Home');ag(113786380,'Heroes of Hellas','/images/games/heroes_of_hellas/heroes_of_hellas81x46.gif',0,11381753,'','false','/images/games/heroes_of_hellas/heroes_of_hellas16x16.gif',false,11323,'/images/games/heroes_of_hellas/heroes_of_hellas100x75.jpg','/images/games/heroes_of_hellas/heroes_of_hellas179x135.jpg','/images/games/heroes_of_hellas/heroes_of_hellas320x240.jpg','false','/images/games/thumbnails_med_2/heroes_of_hellas130x75.gif','/exe/Heroes_of_Hellas-setup.exe?lc=en&ext=Heroes_of_Hellas-setup.exe','Find Zeus’s stolen scepter! ','Travel through ancient Greece to find Zeus’s stolen scepter! ','false',false,false,'Heroes of Hellas');ag(113794710,'Shape Solitaire','/images/games/shape_solitaire/shapesolitaire81x46.gif',0,113826680,'c6fea433-d8a1-4174-bff7-747c500c40d9','false','/images/games/shapesolitaire/shape_solitaire16x16.gif',false,11323,'/images/games/shape_solitaire/shapesolitaire100x75.jpg','/images/games/shape_solitaire/shapesolitaire179x135.jpg','/images/games/shape_solitaire/shapesolitaire320x240.jpg','false','/images/games/thumbnails_med_2/shapesolitaire130x75.gif','/exe/Shape_Solitaire-setup.exe?lc=en&ext=Shape_Solitaire-setup.exe','Solitaire with an all new spin!','Fans of solitaire will love this new spin on the classic game!','true',false,false,'Shape Solitaire_OL');ag(113816127,'Hot Air 2','/images/games/hotair_2/hotair_281x46.gif',0,113848640,'24726a84-2f72-437a-92c3-c1afe0c90634','false','/images/games/hotair_2/hotair_216x16.gif',false,11323,'/images/games/hotair_2/hotair_2100x75.jpg','/images/games/hotair_2/hotair_2179x135.jpg','/images/games/hotair_2/hotair_2320x240.jpg','false','/images/games/thumbnails_med_2/hotair_2130x75.gif','','Balloon Blowing Adventure – Don’t Pop!','Blow the Hot Air balloon through hazardous levels – don’t pop!','true',false,false,'Hot Air 2 OL');ag(113819723,'Scribble','/images/games/scribble/scribble81x46.gif',0,113851473,'74bc5174-122f-4be9-aa8a-884428a824b2','false','/images/games/scribble/scribble16x16.gif',false,11323,'/images/games/scribble/scribble100x75.jpg','/images/games/scribble/scribble179x135.jpg','/images/games/scribble/scribble320x240.jpg','false','/images/games/thumbnails_med_2/scribble130x75.gif','','Line drawing puzzle platformer!','Draw lines to help your blots in this puzzle platformer!','true',false,false,'Scribble OL');ag(113820850,'Skywire','/images/games/skywire/skywire81x46.gif',0,113852447,'ec6a2fa5-24d6-4cb9-a763-05a17c33533f','false','/images/games/skywire/skywire16x16.gif',false,11323,'/images/games/skywire/skywire100x75.jpg','/images/games/skywire/skywire179x135.jpg','/images/games/skywire/skywire320x240.jpg','false','/images/games/thumbnails_med_2/skywire130x75.gif','','Crazy Cable Car Adventure Ride!','Hop on the crazy cable car for an adventure ride!','true',false,false,'Skywire OL');ag(113832110,'Dream Day First Home','/images/games/dream_day_first_home/dream_day_first_home81x46.gif',1000,113864173,'','false','/images/games/dream_day_first_home/dream_day_first_home16x16.gif',false,11323,'/images/games/dream_day_first_home/dream_day_first_home100x75.jpg','/images/games/dream_day_first_home/dream_day_first_home179x135.jpg','/images/games/dream_day_first_home/dream_day_first_home320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_first_home130x75.gif','/exe/Dream_Day_First_Home-setup.exe?lc=en&ext=Dream_Day_First_Home-setup.exe','Buy and decorate a new home! ','Help newlyweds select and decorate their very first home! ','false',false,false,'Dream Day First Home');ag(113836347,'Cradle of Persia','/images/games/cradle_of_persia/cradle_of_persia81x46.gif',110012530,113868893,'','false','/images/games/cradle_of_persia/cradle_of_persia16x16.gif',false,11323,'/images/games/cradle_of_persia/cradle_of_persia100x75.jpg','/images/games/cradle_of_persia/cradle_of_persia179x135.jpg','/images/games/cradle_of_persia/cradle_of_persia320x240.jpg','false','/images/games/thumbnails_med_2/cradle_of_persia130x75.gif','/exe/Cradle_of_Persia-setup.exe?lc=en&ext=Cradle_of_Persia-setup.exe','Unravel riddles and release the genie!  ','Unravel the riddles of Persia’s ancient ruins and release the genie! ','false',false,false,'Cradle of Persia');ag(113848220,'Agatha Christie Peril at End House','/images/games/peril_at_end_house/peril_at_end_house81x46.gif',1100710,11388097,'','false','/images/games/peril_at_end_house/peril_at_end_house16x16.gif',false,11323,'/images/games/peril_at_end_house/peril_at_end_house100x75.jpg','/images/games/peril_at_end_house/peril_at_end_house179x135.jpg','/images/games/peril_at_end_house/peril_at_end_house320x240.jpg','false','/images/games/thumbnails_med_2/peril_at_end_house130x75.gif','/exe/Agatha_Christie_Peril_at_End_House-setup.exe?lc=en&ext=Agatha_Christie_Peril_at_End_House-setup.exe','Unravel a spine-tingling murder mystery! ','Unravel a murder mystery in this spine-tingling seek-and-find adventure! ','false',false,false,'Agatha Christie Peril at End H');ag(113849380,'Elf Bowling 7 1/7: The Last Insult','/images/games/elf_bowling_7/elf_bowling_781x46.gif',1000,113881253,'','false','/images/games/elf_bowling_7/elf_bowling_716x16.gif',false,11323,'/images/games/elf_bowling_7/elf_bowling_7100x75.jpg','/images/games/elf_bowling_7/elf_bowling_7179x135.jpg','/images/games/elf_bowling_7/elf_bowling_7320x240.jpg','false','/images/games/thumbnails_med_2/elf_bowling_7130x75.gif','/exe/Elf_Bowling-setup.exe?lc=en&ext=Elf_Bowling-setup.exe','Go bowling with Santa’s elves! ','Lace up your bowling shoes for a game with Santa’s elves! ','false',false,false,'Elf Bowling');ag(113866550,'Fashion Craze','/images/games/fashion_craze/fashion_craze81x46.gif',110012530,113898410,'','false','/images/games/fashion_craze/fashion_craze16x16.gif',false,11323,'/images/games/fashion_craze/fashion_craze100x75.jpg','/images/games/fashion_craze/fashion_craze179x135.jpg','/images/games/fashion_craze/fashion_craze320x240.jpg','false','/images/games/thumbnails_med_2/fashion_craze130x75.gif','/exe/Fashion_Craze-setup.exe?lc=en&ext=Fashion_Craze-setup.exe','Help women dress for success! ','Help fashion-challenged women look their best and dress for success! ','false',false,false,'Fashion Craze');ag(113867707,'Holly: A Christmas Tale','/images/games/holly_a_christmas_tale/holly_a_christmas_tale81x46.gif',110012530,113899597,'','false','/images/games/holly_a_christmas_tale/holly_a_christmas_tale16x16.gif',false,11323,'/images/games/holly_a_christmas_tale/holly_a_christmas_tale100x75.jpg','/images/games/holly_a_christmas_tale/holly_a_christmas_tale179x135.jpg','/images/games/holly_a_christmas_tale/holly_a_christmas_tale320x240.jpg','false','/images/games/thumbnails_med_2/holly_a_christmas_tale130x75.gif','/exe/Holly_A_Christmas_Tale-setup.exe?lc=en&ext=Holly_A_Christmas_Tale-setup.exe','Help Santa complete his rounds! ','Help Santa complete his rounds in this festive hidden object game! ','false',false,false,'Holly A Christmas Tale');ag(113869880,'Christmasville','/images/games/christmasville/christmasville81x46.gif',110012530,113901773,'','false','/images/games/christmasville/christmasville16x16.gif',false,11323,'/images/games/christmasville/christmasville100x75.jpg','/images/games/christmasville/christmasville179x135.jpg','/images/games/christmasville/christmasville320x240.jpg','false','/images/games/thumbnails_med_2/christmasville130x75.gif','/exe/Christmasville-setup.exe?lc=en&ext=Christmasville-setup.exe','Find Santa and save Christmas! ','Santa is missing and only you can find him!  ','false',false,false,'Christmasville');ag(113891940,'Scribble States!','/images/games/scribble_states/scribble_states81x46.gif',0,113923817,'acd5a167-1a16-4647-a8b8-661540f60d4f','false','/images/games/scribble_states/scribble_states16x16.gif',false,11323,'/images/games/scribble_states/scribble_states100x75.jpg','/images/games/scribble_states/scribble_states179x135.jpg','/images/games/scribble_states/scribble_states320x240.jpg','false','/images/games/thumbnails_med_2/scribble_states130x75.gif','','Scribble the United States! ','Scribble the different US States as fast as possible. ','true',false,false,'Scribble States OL');ag(113892287,'Tage Rampage','/images/games/tage_rampage/tage_rampage81x46.gif',0,113924160,'61b76d68-cb82-4e43-93b3-77bf46017ff6','false','/images/games/tage_rampage/tage_rampage16x16.gif',false,11323,'/images/games/tage_rampage/tage_rampage100x75.jpg','/images/games/tage_rampage/tage_rampage179x135.jpg','/images/games/tage_rampage/tage_rampage320x240.jpg','false','/images/games/thumbnails_med_2/tage_rampage130x75.gif','','Fight as a brave Halfling! ','Trek across the world to seek the angry dragon! ','true',false,false,'Tage Rampage OL');ag(113893960,'The Fancy Pants Adventures','/images/games/fancy_pants_adventures/fancy_pants_adventures81x46.gif',0,113925770,'78180a9c-60f3-4f47-8ede-9ace8f45cc08','false','/images/games/fancy_pants_adventures/fancy_pants_adventures16x16.gif',false,11323,'/images/games/fancy_pants_adventures/fancy_pants_adventures100x75.jpg','/images/games/fancy_pants_adventures/fancy_pants_adventures179x135.jpg','/images/games/fancy_pants_adventures/fancy_pants_adventures320x240.jpg','false','/images/games/thumbnails_med_2/fancy_pants_adventures130x75.gif','','Run! Jump! Stomp through World 1 of The Fancy Pants Adventures! ','Run! Jump! Stomp through World 1 of The Fancy Pants Adventures! ','true',false,false,'Fancy Pants Adventures OL');ag(113906653,'Base Jumping','/images/games/base_jumping/base_jumping81x46.gif',0,113938403,'0791336a-3fb1-4f2f-9e2c-65146d598d8f','false','/images/games/base_jumping/base_jumping16x16.gif',false,11323,'/images/games/base_jumping/base_jumping100x75.jpg','/images/games/base_jumping/base_jumping179x135.jpg','/images/games/base_jumping/base_jumping320x240.jpg','false','/images/games/thumbnails_med_2/base_jumping130x75.gif','','Base Jump against the best in the world.','Base Jump against the best in the world. Work your way through the leagues!','true',false,false,'Base Jumping OL');ag(113908987,'Feed Me','/images/games/feed_me/feed_me81x46.gif',0,113940863,'096ebca4-5946-452c-ad52-32f4ab4823d1','false','/images/games/feed_me/feed_me16x16.gif',false,11323,'/images/games/feed_me/feed_me100x75.jpg','/images/games/feed_me/feed_me179x135.jpg','/images/games/feed_me/feed_me320x240.jpg','false','/images/games/thumbnails_med_2/feed_me130x75.gif','','Eat bugs and escape the greenhouse!','Help the fly-trap plant escape the greenhouse!','true',false,false,'Feed Me OL');ag(113910600,'Jumble Crossword','/images/games/Jumble_Crossword/Jumble_Crossword81x46.gif',0,113942473,'cf315cb1-c6aa-4d28-aa41-d9269a429682','false','/images/games/Jumble_Crossword/Jumble_Crossword16x16.gif',false,11323,'/images/games/Jumble_Crossword/Jumble_Crossword100x75.jpg','/images/games/Jumble_Crossword/Jumble_Crossword179x135.jpg','/images/games/Jumble_Crossword/Jumble_Crossword320x240.jpg','false','/images/games/thumbnails_med_2/Jumble_Crossword130x75.gif','','Unscramble letters to solve crosswords.','Race the clock and unscramble letters to solve today’s crossword.','true',false,false,'Jumble Crossword OL');ag(113911583,'Kakuro','/images/games/kakuro/kakuro81x46.gif',0,113943227,'3da51eef-8afc-499a-8926-59914d9fd2b5','false','/images/games/kakuro/kakuro16x16.gif',false,11323,'/images/games/kakuro/kakuro100x75.jpg','/images/games/kakuro/kakuro179x135.jpg','/images/games/kakuro/kakuro320x240.jpg','false','/images/games/thumbnails_med_2/kakuro130x75.gif','','Fun and challenging number puzzle.','Challenging number puzzle that plays similar to a crossword.','true',false,false,'Kakuro OL');ag(113916660,'Word Roundup','/images/games/word_roundup/word_roundup81x46.gif',0,113948443,'feae1fd6-6e3e-4a74-acbe-576c623bbb29','false','/images/games/word_roundup/word_roundup16x16.gif',false,11323,'/images/games/word_roundup/word_roundup100x75.jpg','/images/games/word_roundup/word_roundup179x135.jpg','/images/games/word_roundup/word_roundup320x240.jpg','false','/images/games/thumbnails_med_2/word_roundup130x75.gif','','Find hidden words using clues.','Wrangle up some cleverly hidden words using crossword-style clues.','true',false,false,'Word Roundup OL');ag(113919217,'Mythic Mahjong','/images/games/mythic_mahjong/mythic_mahjong81x46.gif',1006,113951123,'','false','/images/games/mythic_mahjong/mythic_mahjong16x16.gif',false,11323,'/images/games/mythic_mahjong/mythic_mahjong100x75.jpg','/images/games/mythic_mahjong/mythic_mahjong179x135.jpg','/images/games/mythic_mahjong/mythic_mahjong320x240.jpg','false','/images/games/thumbnails_med_2/mythic_mahjong130x75.gif','/exe/Mythic_Mahjong-setup.exe?lc=en&ext=Mythic_Mahjong-setup.exe','Battle the forces of darkness! ','Battle the forces of darkness to recover the Faerie Queen’s jewels! ','false',false,false,'Mythic Mahjong');ag(113922780,'Amazonia','/images/games/amazonia/amazonia81x46.gif',0,113954720,'983732de-aea1-40ca-8174-e5b5bbdc9928','false','/images/games/amazonia/amazonia16x16.gif',false,11323,'/images/games/amazonia/amazonia100x75.jpg','/images/games/amazonia/amazonia179x135.jpg','/images/games/amazonia/amazonia320x240.jpg','false','/images/games/thumbnails_med_2/amazonia130x75.gif','','Hexagonal matching and hidden treasures! ','Claim wonderful treasures in Amazonia in this hexagonal matching game! ','true',true,true,'Amazonia_Online');ag(113923500,'Sweetopia','/images/games/Sweetopia/Sweetopia81x46.gif',0,113955470,'df1d2286-ea89-4596-8c99-c21f679a61bf','false','images/games/Sweetopia/Sweetopia16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/Sweetopia130x75.gif','','Save the candy factory from ruin! ','Keep candies from colliding on the factory conveyor belt!','true',true,true,'Sweetopia_Online');ag(113924140,'Covert Front','/images/games/Covert_Front/Covert_Front81x46.gif',0,113956127,'681227f7-a8ba-4462-ba47-5c6bf2966f2b','false','/images/games/Covert_Front/Covert_Front16x16.gif',false,11323,'/images/games/Covert_Front/Covert_Front100x75.jpg','/images/games/Covert_Front/Covert_Front179x135.jpg','/images/games/Covert_Front/Covert_Front320x240.jpg','false','/images/games/thumbnails_med_2/Covert_Front130x75.gif','','Will you escape with your life?  ','As a secret agent, you must uncover the secret!  ','true',false,false,'Covert Front_Online');ag(113938743,'Supercow','/images/games/supercow/supercow81x46.gif',110012530,113970510,'','false','/images/games/supercow/supercow16x16.gif',false,11323,'/images/games/supercow/supercow100x75.jpg','/images/games/supercow/supercow179x135.jpg','/images/games/supercow/supercow320x240.jpg','false','/images/games/thumbnails_med_2/supercow130x75.gif','/exe/Supercow-setup.exe?lc=en&ext=Supercow-setup.exe','Help Supercow save the farm! ','Help Supercow save farm animals from an infamous criminal! ','false',false,false,'Supercow');ag(113978337,'Merv Griffin’s Crosswords','/images/games/merv_griffins_crosswords/merv_griffins_crosswords81x46.gif',0,114010867,'','false','/images/games/merv_griffins_crosswords/merv_griffins_crosswords16x16.gif',false,11323,'/images/games/merv_griffins_crosswords/merv_griffins_crosswords100x75.jpg','/images/games/merv_griffins_crosswords/merv_griffins_crosswords179x135.jpg','/images/games/merv_griffins_crosswords/merv_griffins_crosswords320x240.jpg','false','/images/games/thumbnails_med_2/merv_griffins_crosswords130x75.gif','/exe/Merv_Griffins_Crosswords-setup.exe?lc=en&ext=Merv_Griffins_Crosswords-setup.exe','How fast can you solve crosswords?','Race against the clock in this fast-paced crossword challenge!','false',false,false,'Merv Griffins Crosswords');ag(113985113,'The Scruffs','/images/games/the_scruffs/the_scruffs81x46.gif',1100710,1140173,'','false','/images/games/the_scruffs/the_scruffs16x16.gif',false,11323,'/images/games/the_scruffs/the_scruffs100x75.jpg','/images/games/the_scruffs/the_scruffs179x135.jpg','/images/games/the_scruffs/the_scruffs320x240.jpg','false','/images/games/thumbnails_med_2/the_scruffs130x75.gif','/exe/The_Scruffs-setup.exe?lc=en&ext=The_Scruffs-setup.exe','Uncover artifacts and grandpa’s secret! ','Recover valuable artifacts to help The Scruffs save their home! ','false',false,false,'The Scruffs');ag(113986837,'Fashion Rush','/images/games/fashion_rush/fashion_rush81x46.gif',110012530,114018743,'','false','/images/games/fashion_rush/fashion_rush16x16.gif',false,11323,'/images/games/fashion_rush/fashion_rush100x75.jpg','/images/games/fashion_rush/fashion_rush179x135.jpg','/images/games/fashion_rush/fashion_rush320x240.jpg','false','/images/games/thumbnails_med_2/fashion_rush130x75.gif','/exe/Fashion_Rush-setup.exe?lc=en&ext=Fashion_Rush-setup.exe','Launch a fashionable clothing line! ','Help an aspiring young designer launch her own clothing collection! ','false',false,false,'Fashion Rush');ag(114034833,'Ball Revamped 5: Synergy','/images/games/ball_revamped_5_synergy/ball_revamped_5_synergy81x46.gif',0,114066490,'5ab773cc-ef40-4ed8-b2cf-72170b7f5012','false','/images/games/ball_revamped_5_synergy/ball_revamped_5_synergy16x16.gif',false,11323,'/images/games/ball_revamped_5_synergy/ball_revamped_5_synergy100x75.jpg','/images/games/ball_revamped_5_synergy/ball_revamped_5_synergy179x135.jpg','/images/games/ball_revamped_5_synergy/ball_revamped_5_synergy320x240.jpg','false','/images/games/thumbnails_med_2/ball_revamped_5_synergy130x75.gif','','Guide the ball through gravity. ','Guide the ball through gravity-induced levels to the goal! ','true',false,false,'Ball Revamp 5_Online');ag(114035553,'Fancy Pants Adventures','/images/games/fancy_pants_adventures/fancy_pants_adventures81x46.gif',0,114067523,'78180a9c-60f3-4f47-8ede-9ace8f45cc08','false','/images/games/fancy_pants_adventures/fancy_pants_adventures16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/fancy_pants_adventures130x75.gif','','Run! Jump! Stomp! through World 1 of The Fancy Pants Adventures ','Join Fancy Pants Man and Run! Jump! Stomp! through this scribbly platformer, Brad Borne’s The Fancy Pants Adventures: World 1 ','true',false,false,'Fancy Pants_Online');ag(114036930,'Ocean Explorer','/images/games/ocean_explorer/ocean_explorer81x46.gif',0,114068900,'5b2461ac-b9e7-4024-967e-3b516ba7a1cb','false','/images/games/ocean_explorer/ocean_explorer16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/noImage.jpg','false','/images/games/thumbnails_med_2/general/ocean_explorer_130x75.gif','','Take pictures of underwater animals. ','Be an underwater photographer, and try to take quality pictures. ','true',false,false,'Ocean Explorer_Online');ag(114039310,'Turbo Subs','/images/games/Turbo_Subs/Turbo_Subs81x46.gif',110012530,114071750,'','false','/images/games/Turbo_Subs/Turbo_Subs16x16.gif',false,11323,'/images/games/Turbo_Subs/Turbo_Subs100x75.jpg','/images/games/Turbo_Subs/Turbo_Subs179x135.jpg','/images/games/Turbo_Subs/Turbo_Subs320x240.jpg','false','/images/games/thumbnails_med_2/Turbo_Subs130x75.gif','/exe/Turbo_Subs-setup.exe?lc=en&ext=Turbo_Subs-setup.exe','Manage New York sandwich shops! ','Operate successful sandwich shops in whimsical sites around New York! ','false',false,false,'Turbo Subs');ag(114044400,'Chocolatier&#174; 2: Secret Ingredients&#153;','/images/games/chocolatier2/chocolatier281x46.gif',110012530,114076917,'','false','/images/games/chocolatier2/chocolatier216x16.gif',false,11323,'/images/games/chocolatier2/chocolatier2100x75.jpg','/images/games/chocolatier2/chocolatier2179x135.jpg','/images/games/chocolatier2/chocolatier2320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier2130x75.gif','/exe/Chocolatier_2-setup.exe?lc=en&ext=Chocolatier_2-setup.exe','Rebuild your chocolate empire! ','Travel the world for ingredients as you rebuild your chocolate empire! ','false',false,false,'Chocolatier 2');ag(114072167,'Go-Go Gourmet','/images/games/go_go_gourmet/go_go_gourmet81x46.gif',110012530,114104273,'','false','/images/games/go_go_gourmet/go_go_gourmet16x16.gif',false,11323,'/images/games/go_go_gourmet/go_go_gourmet100x75.jpg','/images/games/go_go_gourmet/go_go_gourmet179x135.jpg','/images/games/go_go_gourmet/go_go_gourmet320x240.jpg','false','/images/games/thumbnails_med_2/go_go_gourmet130x75.gif','/exe/GoGo_Gourmet-setup.exe?lc=en&ext=GoGo_Gourmet-setup.exe','Sauté your way to gastronomic greatness! ','Become a master chef working alongside six nutty restaurateurs! ','false',false,false,'GoGo Gourmet');ag(114075133,'3-D Ultra Minigolf Adventures Deluxe','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe81x46.gif',0,114107197,'','false','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe16x16.gif',false,11323,'/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe100x75.jpg','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe179x135.jpg','/images/games/3d_ultra_minigolf_adventures_deluxe/3d_ultra_minigolf_adventures_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/3d_ultra_minigolf_adventures_deluxe130x75.gif','/exe/3D_Ultra_Minigolf_Adventures_Deluxe-setup.exe?lc=en&ext=3D_Ultra_Minigolf_Adventures_Deluxe-setup.exe','54 fun-filled holes on 3D courses!','Putt through 54 holes of manic minigolf on 3D courses! ','false',false,false,'3D Ultra Minigolf Adv Deluxe');ag(114086870,'Women’s Murder Club','/images/games/womens_murder_club/womens_murder_club81x46.gif',1000,114118337,'','false','/images/games/womens_murder_club/womens_murder_club16x16.gif',false,11323,'/images/games/womens_murder_club/womens_murder_club100x75.jpg','/images/games/womens_murder_club/womens_murder_club179x135.jpg','/images/games/womens_murder_club/womens_murder_club320x240.jpg','false','/images/games/thumbnails_med_2/womens_murder_club130x75.gif','/exe/Womens_Murder_Club-setup.exe?lc=en&ext=Womens_Murder_Club-setup.exe','A James Patterson seek & find adventure! ','Death in Scarlet, a unique, interactive seek and find adventure featuring James Patterson’s Women’s Murder Club.','false',false,false,'Womens Murder Club');ag(114096970,'Dress Shop Hop','/images/games/dress_shop_hop/dress_shop_hop81x46.gif',110012530,114128830,'','false','/images/games/dress_shop_hop/dress_shop_hop16x16.gif',false,11323,'/images/games/dress_shop_hop/dress_shop_hop100x75.jpg','/images/games/dress_shop_hop/dress_shop_hop179x135.jpg','/images/games/dress_shop_hop/dress_shop_hop320x240.jpg','false','/images/games/thumbnails_med_2/dress_shop_hop130x75.gif','/exe/Dress_Shop_Hop-setup.exe?lc=en&ext=Dress_Shop_Hop-setup.exe','Make cool custom clothes! ','Use your fashion savvy to help Bobbi make cool custom clothes! ','false',false,false,'Dress Shop Hop');ag(114102353,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',0,114134320,'1e571cd1-e429-49ca-940a-292c4e731e88','false','/images/games/poker_pop/poker_pop16x16.gif',false,11323,'/images/games/poker_pop/poker_pop100x75.jpg','/images/games/poker_pop/poker_pop179x135.jpg','/images/games/poker_pop/poker_pop320x240.jpg','false','/images/games/thumbnails_med_2/poker_pop130x75.gif','','Globe-hopping tile-matching fun!','Advance across continents in this combination poker, mahjong and solitaire game!','true',false,false,'Poker Pop_Online');ag(114148497,'Catch ’em If You Can','/images/games/catch_em_if_you_can/catch_em_if_you_can81x46.gif',0,114180543,'d0bf6d3e-0547-43ef-96a0-0ba4d2dfa700','false','/images/games/catch_em_if_you_can/catch_em_if_you_can16x16.gif',false,11323,'/images/games/catch_em_if_you_can/catch_em_if_you_can100x75.jpg','/images/games/catch_em_if_you_can/catch_em_if_you_can179x135.jpg','/images/games/catch_em_if_you_can/catch_em_if_you_can320x240.jpg','false','/images/games/thumbnails_med_2/catch_em_if_you_can130x75.gif','','Fun on the farm!','Manage the hens and eggs in this fun game on the farm!','true',false,false,'Catch em if you can_OL');ag(114309710,'Golden Hearts Juice Bar','/images/games/golden_hearts/golden_hearts81x46.gif',110012530,114341240,'','false','/images/games/golden_hearts/golden_hearts16x16.gif',false,11323,'/images/games/golden_hearts/golden_hearts100x75.jpg','/images/games/golden_hearts/golden_hearts179x135.jpg','/images/games/golden_hearts/golden_hearts320x240.jpg','false','/images/games/thumbnails_med_2/golden_hearts130x75.gif','/exe/Golden_Hearts_Juice_Club-setup.exe?lc=en&ext=Golden_Hearts_Juice_Club-setup.exe','Serve up mouthwatering smoothies!  ','Help Kelly earn college money at her job at a juice bar! ','false',false,false,'Golden Hearts Juice Club');ag(114323150,'Jojo’s Fashion Show','/images/games/jojos_fashion_show/jojos_fashion_show81x46.gif',110012530,114355950,'','false','/images/games/jojos_fashion_show/jojos_fashion_show16x16.gif',false,11323,'/images/games/jojos_fashion_show/jojos_fashion_show100x75.jpg','/images/games/jojos_fashion_show/jojos_fashion_show179x135.jpg','/images/games/jojos_fashion_show/jojos_fashion_show320x240.jpg','false','/images/games/thumbnails_med_2/jojos_fashion_show130x75.gif','/exe/Jojos_Fashion_Show-setup.exe?lc=en&ext=Jojos_Fashion_Show-setup.exe','Rock the runway with your fashions! ','Showcase your fashion sense on runways from New York to Paris! ','false',false,false,'Jojos Fashion Show');ag(114325567,'Great Secrets: Da Vinci','/images/games/great_secrets_da_vinci/great_secrets_da_vinci81x46.gif',1007,114357927,'','false','/images/games/great_secrets_da_vinci/great_secrets_da_vinci16x16.gif',false,11323,'/images/games/great_secrets_da_vinci/great_secrets_da_vinci100x75.jpg','/images/games/great_secrets_da_vinci/great_secrets_da_vinci179x135.jpg','/images/games/great_secrets_da_vinci/great_secrets_da_vinci320x240.jpg','false','/images/games/thumbnails_med_2/great_secrets_da_vinci130x75.gif','/exe/Great_Secrets_Da_Vinci-setup.exe?lc=en&ext=Great_Secrets_Da_Vinci-setup.exe','Relive Leonardo da Vinci’s life! ','Embark on a life-long adventure through Leonardo da Vinci’s diary! ','false',false,false,'Great Secrets Da Vinci');ag(114326367,'Blood Ties','/images/games/blood_ties/blood_ties81x46.gif',1100710,114358130,'','false','/images/games/blood_ties/blood_ties16x16.gif',false,11323,'/images/games/blood_ties/blood_ties100x75.jpg','/images/games/blood_ties/blood_ties179x135.jpg','/images/games/blood_ties/blood_ties320x240.jpg','false','/images/games/thumbnails_med_2/blood_ties130x75.gif','/exe/Blood_Ties-setup.exe?lc=en&ext=Blood_Ties-setup.exe','Crack a missing persons case! ','Unearth hidden items throughout the city to find missing persons! ','false',false,false,'Blood Ties');ag(114354747,'Cosmic Stacker','/images/games/cosmic_stack/cosmic_stack81x46.gif',0,114387683,'b78dd64a-c656-465b-b61f-71a18f4de73e','false','/images/games/cosmic_stack/cosmic_stack16x16.gif',false,11323,'/images/games//100x75.jpg','/images/games//179x135.jpg','/images/games//320x240.jpg','false','/images/games/thumbnails_med_2/cosmic_stack130x75.gif','','A stellar brain-bending challenge!','Match rings to make them disappear in this stellar brain bender!','true',false,false,'Cosmic Stacker_Online');ag(114378260,'Fashion Star','/images/games/fashion_star/fashion_star81x46.gif',110012530,114411133,'','false','/images/games/fashion_star/fashion_star16x16.gif',false,11323,'/images/games/fashion_star/fashion_star100x75.jpg','/images/games/fashion_star/fashion_star179x135.jpg','/images/games/fashion_star/fashion_star320x240.jpg','false','/images/games/thumbnails_med_2/fashion_star130x75.gif','/exe/Fashion_Star-setup.exe?lc=en&ext=Fashion_Star-setup.exe','Be a freelance fashion stylist! ','Prepare models for photo shoots as a freelance fashion stylist!','false',false,false,'Fashion Star');ag(114426490,'The Nightshift Code','/images/games/the_nightshift_code/the_nightshift_code81x46.gif',110060583,11445987,'','false','/images/games/the_nightshift_code/the_nightshift_code16x16.gif',false,11323,'/images/games/the_nightshift_code/the_nightshift_code100x75.jpg','/images/games/the_nightshift_code/the_nightshift_code179x135.jpg','/images/games/the_nightshift_code/the_nightshift_code320x240.jpg','false','/images/games/thumbnails_med_2/the_nightshift_code130x75.gif','/exe/The_Nightshift_Code-setup.exe?lc=en&ext=The_Nightshift_Code-setup.exe','Decode objects to find treasures! ','Decode hidden objects that will lead you to buried treasures! ','false',false,false,'The Nightshift Code');ag(114427150,'Wonderland Adventures','/images/games/wonderland_adventures/wonderland_adventures81x46.gif',1007,114460603,'','false','/images/games/wonderland_adventures/wonderland_adventures16x16.gif',false,11323,'/images/games/wonderland_adventures/wonderland_adventures100x75.jpg','/images/games/wonderland_adventures/wonderland_adventures179x135.jpg','/images/games/wonderland_adventures/wonderland_adventures320x240.jpg','false','/images/games/thumbnails_med_2/wonderland_adventures130x75.gif','/exe/Wonderland_Adventures-setup.exe?lc=en&ext=Wonderland_Adventures-setup.exe','Experience 100 mini-adventures! ','Save Wonderland in a puzzler split into over 100 mini-adventures! ','false',false,false,'Wonderland Adventures');ag(114439250,'Dominoes','/images/games/dominoes_mp/dominoes_mp81x46.gif',0,11447293,'e1e1282e-b7fe-41df-89b9-c0f48a138977','true','/images/games/dominoes_mp/dominoes_mp16x16.gif',false,11323,'/images/games/dominoes_mp/dominoes_mp100x75.jpg','/images/games/dominoes_mp/dominoes_mp179x135.jpg','/images/games/dominoes_mp/dominoes_mp320x240.jpg','false','/images/games/dominoes_mp/blank_dominoes_mp130x75.gif','','Classic multiplayer double-six Dominoes.','Take on a friend head-to-head in classic double-six Dominoes ','true',true,true,'Dominoes (MP)');ag(114462137,'Babysitting Mania','/images/games/babysitting_mania/babysitting_mania81x46.gif',110012530,11449510,'','false','/images/games/babysitting_mania/babysitting_mania16x16.gif',false,11323,'/images/games/babysitting_mania/babysitting_mania100x75.jpg','/images/games/babysitting_mania/babysitting_mania179x135.jpg','/images/games/babysitting_mania/babysitting_mania320x240.jpg','false','/images/games/thumbnails_med_2/babysitting_mania130x75.gif','/exe/Babysitting_Mania-setup.exe?lc=en&ext=Babysitting_Mania-setup.exe','Baby-sit brats in 20 households! ','Baby-sit out-of-control kids in 20 crazy households!  ','false',false,false,'Babysitting Mania');ag(114481587,'Towers','/images/games/towers/towers81x46.gif',1004,114514493,'','false','/images/games/towers/towers16x16.gif',false,11323,'/images/games/towers/towers100x75.jpg','/images/games/towers/towers179x135.jpg','/images/games/towers/towers320x240.jpg','false','/images/games/thumbnails_med_2/towers130x75.gif','/exe/Towers-setup.exe?lc=en&ext=Towers-setup.exe','Play solitaire in four civilizations! ','Pass through four civilizations in this super-addictive solitaire game! ','false',false,false,'Towers');ag(114482480,'Lost Worlds','/images/games/lost_worlds/lost_worlds81x46.gif',1007,114515497,'','false','/images/games/lost_worlds/lost_worlds16x16.gif',false,11323,'/images/games/lost_worlds/lost_worlds100x75.jpg','/images/games/lost_worlds/lost_worlds179x135.jpg','/images/games/lost_worlds/lost_worlds320x240.jpg','false','/images/games/thumbnails_med_2/lost_worlds130x75.gif','/exe/Lost_Worlds-setup.exe?lc=en&ext=Lost_Worlds-setup.exe','Excavate ruins with the History Channel! ','Join the History Channel on an excavation of ancient ruins! ','false',false,false,'Lost Worlds');ag(114483183,'Mystery Museum','/images/games/mystery_museum/mystery_museum81x46.gif',1100710,114516153,'','false','/images/games/mystery_museum/mystery_museum16x16.gif',false,11323,'/images/games/mystery_museum/mystery_museum100x75.jpg','/images/games/mystery_museum/mystery_museum179x135.jpg','/images/games/mystery_museum/mystery_museum320x240.jpg','false','/images/games/thumbnails_med_2/mystery_museum130x75.gif','/exe/Mystery_Museum-setup.exe?lc=en&ext=Mystery_Museum-setup.exe','Recover Da Vinci’s Mona Lisa! ','Rebuild 13 famous paintings to find the stolen Mona Lisa! ','false',false,false,'Mystery Museum');ag(114485497,'The Sims Carnival™   SnapCity','/images/games/snap_city/snap_city81x46.gif',1007,114518370,'','false','/images/games/snap_city/snap_city16x16.gif',false,11323,'/images/games/snap_city/snap_city100x75.jpg','/images/games/snap_city/snap_city179x135.jpg','/images/games/snap_city/snap_city320x240.jpg','false','/images/games/thumbnails_med_2/snap_city130x75.gif','/exe/The_Sims_Carnival_SnapCity_reg-setup.exe?lc=en&ext=The_Sims_Carnival_SnapCity_reg-setup.exe','Develop neighborhoods throughout your city! ','Develop 25 commercial and residential neighborhoods as mayor of your city! ','false',false,true,'The Sims Carnival SnapCity (re');ag(114619323,'IndestructoCopter','/images/games/indestructocopter/indestructocopter81x46.gif',0,114652683,'6d6b8c5e-d010-41b7-a034-2a4413c7d50a','false','/images/games/indestructocopter/indestructocopter16x16.gif',false,11323,'/images/games/indestructocopter/indestructocopter100x75.jpg','/images/games/indestructocopter/indestructocopter179x135.jpg','/images/games/indestructocopter/indestructocopter320x240.jpg','false','/images/games/thumbnails_med_2/indestructocopter130x75.gif','','Target the enemy Air Force!','Target the enemy Air Force in the all new IndestructoCopter!','true',false,false,'IndestructoCoper_OL');ag(114625717,'Coffee Shop','/images/games/coffee_shop/coffee_shop81x46.gif',0,114658997,'3f6118e2-0a34-433d-b353-2be8e0ea79d8','false','/images/games/coffee_shop/coffee_shop16x16.gif',false,11323,'/images/games/coffee_shop/coffee_shop100x75.jpg','/images/games/coffee_shop/coffee_shop179x135.jpg','/images/games/coffee_shop/coffee_shop320x240.jpg','false','/images/games/thumbnails_med_2/coffee_shop130x75.gif','','Run your own coffee shop!','Mix recipes, set prices, and win customers as you run a street-side coffee shop. ','true',false,false,'Coffee Shop OL');ag(114627450,'Around the World in 80 Days','/images/games/around_the_world_in_80_days/around_the_world_in_80_days81x46.gif',1007,114660713,'','false','/images/games/around_the_world_in_80_days/around_the_world_in_80_days16x16.gif',false,11323,'/images/games/around_the_world_in_80_days/around_the_world_in_80_days100x75.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days179x135.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days320x240.jpg','false','/images/games/thumbnails_med_2/around_the_world_in_80_days130x75.gif','/exe/Around_the_World_in_80_Days-setup.exe?lc=en&ext=Around_the_World_in_80_Days-setup.exe','A whirlwind journey through 4 continents! ','A whirlwind journey through four continents by land, sea and air! ','false',false,false,'Around the World in 80 Days');ag(114639850,'Shift','/images/games/shift/shift81x46.gif',0,114672540,'d423549b-0446-481e-afe7-2e55c828fa09','false','/images/games/shift/shift16x16.gif',false,11323,'/images/games/shift/shift100x75.jpg','/images/games/shift/shift179x135.jpg','/images/games/shift/shift320x240.jpg','false','/images/games/thumbnails_med_2/shift130x75.gif','','Flip reality and escape.','Flip reality and use your wits to escape the world of Shift.','true',false,false,'Shift_OL');ag(114643957,'Big City Adventure: Sydney','/images/games/big_city_adventure_sydney/big_city_adventure_sydney81x46.gif',1100710,114676767,'','false','/images/games/big_city_adventure_sydney/big_city_adventure_sydney16x16.gif',false,11323,'/images/games/big_city_adventure_sydney/big_city_adventure_sydney100x75.jpg','/images/games/big_city_adventure_sydney/big_city_adventure_sydney179x135.jpg','/images/games/big_city_adventure_sydney/big_city_adventure_sydney320x240.jpg','false','/images/games/thumbnails_med_2/big_city_adventure_sydney130x75.gif','/exe/Big_City_Adventure_Sydney-setup.exe?lc=en&ext=Big_City_Adventure_Sydney-setup.exe','Explore the city Down Under! ','Explore Sydney, Australia in search of thousands of hidden objects! ','false',false,false,'Big City Adventure Sydney');ag(114650210,'Diamond Drop 2','/images/games/diamond_drop_2/diamond_drop_281x46.gif',1007,114683510,'','false','/images/games/diamond_drop_2/diamond_drop_216x16.gif',false,11323,'/images/games/diamond_drop_2/diamond_drop_2100x75.jpg','/images/games/diamond_drop_2/diamond_drop_2179x135.jpg','/images/games/diamond_drop_2/diamond_drop_2320x240.jpg','false','/images/games/thumbnails_med_2/diamond_drop_2130x75.gif','/exe/Diamond_Drop_2-setup.exe?lc=en&ext=Diamond_Drop_2-setup.exe','Find gems and true love! ','Help Gary the mole collect falling gems and find true love! ','false',false,false,'Diamond Drop 2');ag(114653997,'Amulet of Tricolor','/images/games/amulet_of_tricolor/amulet_of_tricolor81x46.gif',1007,114686823,'','false','/images/games/amulet_of_tricolor/amulet_of_tricolor16x16.gif',false,11323,'/images/games/amulet_of_tricolor/amulet_of_tricolor100x75.jpg','/images/games/amulet_of_tricolor/amulet_of_tricolor179x135.jpg','/images/games/amulet_of_tricolor/amulet_of_tricolor320x240.jpg','false','/images/games/thumbnails_med_2/amulet_of_tricolor130x75.gif','/exe/Amulet_of_Tricolor-setup.exe?lc=en&ext=Amulet_of_Tricolor-setup.exe','Lift a sorcerer’s sleeping curse! ','Match colorful gems to wake fairies from a sleeping curse! ','false',false,false,'Amulet of Tricolor');ag(114658360,'OceaniX','/images/games/oceanix/oceanix81x46.gif',1007,114691780,'','false','/images/games/oceanix/oceanix16x16.gif',false,11323,'/images/games/oceanix/oceanix100x75.jpg','/images/games/oceanix/oceanix179x135.jpg','/images/games/oceanix/oceanix320x240.jpg','false','/images/games/thumbnails_med_2/oceanix130x75.gif','/exe/OceaniX-setup.exe?lc=en&ext=OceaniX-setup.exe','An underwater puzzle collapse adventure! ','Board a submarine in search of treasures in this match-3 puzzler! ','false',false,false,'OceaniX');ag(114662913,'Sheep’s Quest','/images/games/Sheeps_Quest/Sheeps_Quest81x46.gif',1007,114695367,'','false','/images/games/Sheeps_Quest/Sheeps_Quest16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/sheeps_quest/sheeps_quest320x240.jpg','false','/images/games/thumbnails_med_2/Sheeps_Quest130x75.gif','/exe/Sheeps_Quest-setup.exe?lc=en&ext=Sheeps_Quest-setup.exe','Guide an adorable herd of sheep! ','Guide sheep past enemies and obstacles in this stimulating brainteaser! ','false',false,false,'Sheeps Quest');ag(114663370,'Coffee Rush','/images/games/Coffee_Rush/Coffee_Rush81x46.gif',110012530,11469687,'','false','/images/games/Coffee_Rush/Coffee_Rush16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/coffee_rush/coffee_rush320x240.jpg','false','/images/games/thumbnails_med_2/Coffee_Rush130x75.gif','/exe/Coffee_Rush-setup.exe?lc=en&ext=Coffee_Rush-setup.exe','Brew blends for wacky customers! ','Brew 18 tasty blends for 12 hilarious coffee shop customers! ','false',false,false,'Coffee Rush');ag(114664920,'Spandex Force','/images/games/spandex_force/spandex_force81x46.gif',1007,114697590,'','false','/images/games/spandex_force/spandex_force16x16.gif',false,11323,'/images/games/spandex_force/spandex_force100x75.jpg','/images/games/spandex_force/spandex_force179x135.jpg','/images/games/spandex_force/spandex_force320x240.jpg','false','/images/games/thumbnails_med_2/spandex_force_130x75.gif','/exe/Spandex_Force-setup.exe?lc=en&ext=Spandex_Force-setup.exe','Create your own super hero! ','Clean up a crime-infested town as the newest superhero! ','false',false,false,'Spandex Force');ag(114668510,'Doggie Dash','/images/games/doggie_dash/doggie_dash81x46.gif',110012530,114701823,'','false','/images/games/doggie_dash/doggie_dash16x16.gif',false,11323,'/images/games/doggie_dash/doggie_dash100x75.jpg','/images/games/doggie_dash/doggie_dash179x135.jpg','/images/games/doggie_dash/doggie_dash320x240.jpg','false','/images/games/thumbnails_med_2/doggie_dash130x75.gif','/exe/Doggie_Dash-setup.exe?lc=en&ext=Doggie_Dash-setup.exe','Clean, groom and pamper pets!','Clean, groom and pamper pets while you grow your own business!','false',false,false,'Doggie Dash');ag(114671950,'Chicken Invaders 3','/images/games/chickInvaders3/chickInvaders381x46.gif',0,114704763,'8c91c85c-c9ff-498b-ac9f-11aed630da37','false','/images/games/chickInvaders3/chickInvaders316x16.gif',false,11323,'/images/games/chickInvaders3/chickInvaders3100x75.jpg','/images/games/chickInvaders3/chickInvaders3179x135.jpg','/images/games/chickInvaders3/chickInvaders3320x240.jpg','false','/images/games/thumbnails_med_2/chickInvaders3130x75.gif','','Save Earth from intergalactic chickens! ','Fight off invading intergalactic chickens taking revenge on Earthlings! ','true',true,true,'Chicken Invaders 3 OLT1');ag(114676123,'Cosmic Stacker','/images/games/cosmic_stack/cosmic_stack81x46.gif',0,114709673,'b78dd64a-c656-465b-b61f-71a18f4de73e','false','/images/games/cosmic_stack/cosmic_stack16x16.gif',false,11323,'/images/games/cosmic_stack/cosmic_stack100x75.jpg','/images/games/cosmic_stack/cosmic_stack179x135.jpg','/images/games/cosmic_stack/cosmic_stack320x240.jpg','false','/images/games/thumbnails_med_2/cosmic_stack130x75.gif','','A stellar brain-bending challenge!','Match rings to make them disappear in this stellar brain bender!','true',false,false,'Cosmic Stacker OL');ag(114680873,'Ice Cream Craze','/images/games/ice_cream_craze/ice_cream_craze81x46.gif',110012530,11471377,'','false','/images/games/ice_cream_craze/ice_cream_craze16x16.gif',false,11323,'/images/games/ice_cream_craze/ice_cream_craze100x75.jpg','/images/games/ice_cream_craze/ice_cream_craze179x135.jpg','/images/games/ice_cream_craze/ice_cream_craze320x240.jpg','false','/images/games/thumbnails_med_2/ice_cream_craze130x75.gif','/exe/Ice_Cream_Craze-setup.exe?lc=en&ext=Ice_Cream_Craze-setup.exe','Create and serve delicious desserts! ','Create delicious new desserts at a 1950s era ice cream shop! ','false',false,false,'Ice Cream Craze');ag(114704217,'Puzzle Quest','/images/games/puzzle_quest/puzzle_quest81x46.gif',1007,114737607,'','false','/images/games/puzzle_quest/puzzle_quest16x16.gif',false,11323,'/images/games/puzzle_quest/puzzle_quest100x75.jpg','/images/games/puzzle_quest/puzzle_quest179x135.jpg','/images/games/puzzle_quest/puzzle_quest320x240.jpg','false','/images/games/thumbnails_med_2/puzzle_quest130x75.gif','/exe/Puzzle_Quest-setup.exe?lc=en&ext=Puzzle_Quest-setup.exe','A match-3 battle against evil!','Save the kingdom from evil in this epic match-3 battle!','false',false,false,'Puzzle Quest');ag(114710687,'Jumble Daily','/images/games/jumble_daily/jumble_daily81x46.gif',0,114743530,'2cf9e435-076b-475b-8df5-bc570e0bef6d','false','/images/games/jumble_daily/jumble_daily16x16.gif',false,11323,'/images/games/jumble_daily/jumble_daily100x75.jpg','/images/games/jumble_daily/jumble_daily179x135.jpg','/images/games/jumble_daily/jumble_daily320x240.jpg','false','/images/games/thumbnails_med_2/jumble_daily130x75.gif','','Un-Jumble the Jumble words!','Un-Jumble the daily Jumble words! Then solve today’s clue.','true',false,false,'Jumble Daily OL');ag(114711683,'Fashion Solitaire','/images/games/Fashion_Solitaire/Fashion_Solitaire81x46.gif',1004,114744887,'','false','/images/games/Fashion_Solitaire/Fashion_Solitaire16x16.gif',false,11323,'/images/games/noImage.jpg','/images/games/noImage.jpg','/images/games/fashion_solitaire/fashion_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/Fashion_Solitaire130x75.gif','/exe/Fashion_Solitaire-setup.exe?lc=en&ext=Fashion_Solitaire-setup.exe','Match trendy outfits with models. ','Create eight fashion collections and match them to models!','false',false,false,'Fashion Solitaire');ag(114716193,'Tumblebugs 2','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge81x46.gif',110012530,114749710,'','false','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge16x16.gif',false,11323,'/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge100x75.jpg','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge179x135.jpg','/images/games/tumblebugs_2_challenge/tumblebugs_2_challenge320x240.jpg','false','/images/games/thumbnails_med_2/tumblebugs_2_challenge130x75.gif','/exe/Tumblebugs_2-setup.exe?lc=en&ext=Tumblebugs_2-setup.exe','Rescue your beetle buddies! ','Round up your beetle buddies to battle nasty invaders! ','false',false,false,'Tumblebugs 2');ag(114717227,'Magic Farm','/images/games/magic_farm/magic_farm81x46.gif',110012530,114750837,'','false','/images/games/magic_farm/magic_farm16x16.gif',false,11323,'/images/games/magic_farm/magic_farm100x75.jpg','/images/games/magic_farm/magic_farm179x135.jpg','/images/games/magic_farm/magic_farm320x240.jpg','false','/images/games/thumbnails_med_2/magic_farm130x75.gif','/exe/Magic_Farm-setup.exe?lc=en&ext=Magic_Farm-setup.exe','Grow and sell flowers and fruits!','Grow and sell flowers and fruits while protecting them from pests!','false',false,false,'Magic Farm');ag(114724970,'YoudaCamper','/images/games/youdacamper/youdacamper81x46.gif',110012530,114757800,'','false','/images/games/youdacamper/youdacamper16x16.gif',false,11323,'/images/games/youdacamper/youdacamper100x75.jpg','/images/games/youdacamper/youdacamper179x135.jpg','/images/games/youdacamper/youdacamper320x240.jpg','false','/images/games/thumbnails_med_2/youdacamper130x75.gif','/exe/YoudaCamper-setup.exe?lc=en&ext=YoudaCamper-setup.exe','Design and manage a profitable campsite! ','Design and manage a profitable campsite in the great outdoors! ','false',false,false,'YoudaCamper');ag(114725460,'Rainbow Web 2','/images/games/rainbow_web2/rainbow_web281x46.gif',1007,11475883,'','false','/images/games/rainbow_web2/rainbow_web216x16.gif',false,11323,'/images/games/rainbow_web2/rainbow_web2100x75.jpg','/images/games/rainbow_web2/rainbow_web2179x135.jpg','/images/games/rainbow_web2/rainbow_web2320x240.jpg','false','/images/games/thumbnails_med_2/rainbow_web2130x75.gif','/exe/Rainbow_Web_2-setup.exe?lc=en&ext=Rainbow_Web_2-setup.exe','Break the Sorcerer Spider’s spell! ','Solve puzzles to break the evil spell of the Sorcerer Spider! ','false',false,false,'Rainbow Web 2');ag(114727850,'The Count of Monte Cristo','/images/games/the_count_of_monte_cristo/the_count_of_monte_cristo81x46.gif',1100710,114760723,'','false','/images/games/the_count_of_monte_cristo/the_count_of_monte_cristo16x16.gif',false,11323,'/images/games/the_count_of_monte_cristo/the_count_of_monte_cristo100x75.jpg','/images/games/the_count_of_monte_cristo/the_count_of_monte_cristo179x135.jpg','/images/games/the_count_of_monte_cristo/the_count_of_monte_cristo320x240.jpg','false','/images/games/thumbnails_med_2/the_count_of_monte_cristo130x75.gif','/exe/The_Count_of_Monte_Cristo-setup.exe?lc=en&ext=The_Count_of_Monte_Cristo-setup.exe','Escape prison and take revenge! ','Escape prison and take revenge in this romantic hidden object game!  ','false',false,false,'The Count of Monte Cristo');ag(114733960,'IQ:Identity Quest','/images/games/iq_identity_quest/iq_identity_quest81x46.gif',1007,114766773,'','false','/images/games/iq_identity_quest/iq_identity_quest16x16.gif',false,11323,'/images/games/iq_identity_quest/iq_identity_quest100x75.jpg','/images/games/iq_identity_quest/iq_identity_quest179x135.jpg','/images/games/iq_identity_quest/iq_identity_quest320x240.jpg','false','/images/games/thumbnails_med_2/iq_identity_quest130x75.gif','/exe/IQ_Identity_Quest-setup.exe?lc=en&ext=IQ_Identity_Quest-setup.exe','Become the master of your mind!','Unravel the mystery of the Puzzle Cube and master your mind!','false',false,false,'IQ Identity Quest');ag(114738273,'Jewel Quest','/images/games/jewelquest/jewelquest81x46.gif',0,114771193,'bf310de0-d814-4e5d-aa56-c17847ec4d96','false','/images/games/jewelquest/jewelquest16x16.gif',false,11323,'/images/games/jewelquest/jewelquest100x75.jpg','/images/games/jewelquest/jewelquest179x135.jpg','/images/games/jewelquest/jewelquest320x240.jpg','false','/images/games/thumbnails_med_2/jewelquest130x75.gif','/exe/jewelquest-setup.exe?lc=en&ext=jewelquest-setup.exe','A mesmerizing archeological puzzler!','Find sparkling treasures in ancient Mayan ruins in this mesmerizing puzzler!','true',true,true,'Jewel Quest OLT1');ag(114740783,'Crazy 8&rsquo;s','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s81x46.gif',0,114773313,'56dcad92-84be-4e4c-8920-f979eaedf618','true','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s16x16.gif',false,11323,'/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s100x75.jpg','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s179x135.jpg','/images/games/huit_americain_crazy_8s/huit_americain_crazy_8s320x240.jpg','false','/images/games/thumbnails_med_2/huit_americain_crazy_8s130x75.gif','','Experience pure fun in Crazy 8’s!','A fast and furious frenzy! Experience pure fun in Crazy 8’s! ','true',true,true,'Huit AmÃ©ricain Crazy 8s_MP');ag(114753397,'Poker Superstars III','/images/games/poker_superstars_3/poker_superstars_381x46.gif',0,114786333,'f400fdf8-2be2-4b92-982d-251fbd01453b','false','/images/games/poker_superstars_3/poker_superstars_316x16.gif',false,11323,'/images/games/poker_superstars_3/poker_superstars_3100x75.jpg','/images/games/poker_superstars_3/poker_superstars_3179x135.jpg','/images/games/poker_superstars_3/poker_superstars_3320x240.jpg','false','/images/games/thumbnails_med_2/poker_superstars_3130x75.gif','','Challenge the new poker superstars! ','Get psyched for the next poker showdown with all-new superstars! ','true',true,true,'Poker Superstars 3 OLT1');ag(114755537,'Around the World in 80 Days','/images/games/around_the_world_in_80_days/around_the_world_in_80_days81x46.gif',0,114788113,'9267246f-9d19-4ede-ac93-ac9e27b8eec5','false','/images/games/around_the_world_in_80_days/around_the_world_in_80_days16x16.gif',false,11323,'/images/games/around_the_world_in_80_days/around_the_world_in_80_days100x75.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days179x135.jpg','/images/games/around_the_world_in_80_days/around_the_world_in_80_days320x240.jpg','false','/images/games/thumbnails_med_2/around_the_world_in_80_days130x75.gif','','A whirlwind journey through 4 continents! ','A whirlwind journey through four continents by land, sea and air! ','true',true,true,'Around the World in 80 Days OL');ag(114757960,'Battleship','/images/games/battleship/battleship81x46.gif',0,114790867,'3ab9c103-a1f3-4580-885d-55e0db2f0fc1','false','/images/games/battleship/battleship16x16.gif',false,11323,'/images/games/battleship/battleship100x75.jpg','/images/games/battleship/battleship179x135.jpg','/images/games/battleship/battleship320x240.jpg','false','/images/games/thumbnails_med_2/battleship130x75.gif','/exe/Battleship_Fleet_Command-setup.exe?lc=en&ext=Battleship_Fleet_Command-setup.exe','Find and sink enemy ships!','Sink rival ships in this classic family game of naval strategy!','true',true,true,'Battleship OLT1');ag(114770730,'Animal Agents','/images/games/animal_agents/animal_agents81x46.gif',1100710,114803107,'','false','/images/games/animal_agents/animal_agents16x16.gif',false,11323,'/images/games/animal_agents/animal_agents100x75.jpg','/images/games/animal_agents/animal_agents179x135.jpg','/images/games/animal_agents/animal_agents320x240.jpg','false','/images/games/thumbnails_med_2/animal_agents130x75.gif','/exe/Animal_Agents-setup.exe?lc=en&ext=Animal_Agents-setup.exe','Search for missing farm animals! ','Uncover a dark secret as you investigate missing farm animals! ','false',false,false,'Animal Agents');ag(114774927,'Dream Chronicles 2','/images/games/dream_chronicles_2/dream_chronicles_281x46.gif',1000,114807520,'','false','/images/games/dream_chronicles_2/dream_chronicles_216x16.gif',false,11323,'/images/games/dream_chronicles_2/dream_chronicles_2100x75.jpg','/images/games/dream_chronicles_2/dream_chronicles_2179x135.jpg','/images/games/dream_chronicles_2/dream_chronicles_2320x240.jpg','false','/images/games/thumbnails_med_2/dream_chronicles_2130x75.gif','/exe/Dream_Chronicles_2-setup.exe?lc=en&ext=Dream_Chronicles_2-setup.exe','Find 138 hidden dream pieces! ','Help Faye find 138 dream pieces and escape the Fairy Queen! ','false',false,false,'Dream Chronicles 2');ag(114805773,'Boogie Bunnies','/images/games/boogie_bunnies/boogie_bunnies81x46.gif',110012530,114838617,'','false','/images/games/boogie_bunnies/boogie_bunnies16x16.gif',false,11323,'/images/games/boogie_bunnies/boogie_bunnies100x75.jpg','/images/games/boogie_bunnies/boogie_bunnies179x135.jpg','/images/games/boogie_bunnies/boogie_bunnies320x240.jpg','false','/images/games/thumbnails_med_2/boogie_bunnies130x75.gif','/exe/Boogie_Bunnies-setup.exe?lc=en&ext=Boogie_Bunnies-setup.exe','Match-up furry disco balls! ','Match-up furry disco balls to help the Boogie Bunnies become superstars! ','false',false,false,'Boogie Bunnies');ag(114807207,'Big Kahuna Reef','/images/games/big_kahuna_reef/big_kahuna81x46.gif',0,114840113,'a4f7b541-b5e4-433b-b186-05eaa39f5f15','false','/images/games/big_kahuna_reef/big_kahuna16x16.gif',false,11323,'/images/games/big_kahuna_reef/big_kahuna100x75.jpg','/images/games/big_kahuna_reef/big_kahuna179x135.jpg','/images/games/big_kahuna_reef/big_kahuna320x240.jpg','false','/images/games/thumbnails_med_2/big_kahuna130x75.gif','/exe/Big_Kahuna_Reef-setup.exe?lc=en&ext=Big_Kahuna_Reef-setup.exe','Match shells and swim the reef! ','Dive the Hawaiian reefs in your quest for a mystical totem!','true',true,true,'Big Kahuna Reef OLT1');ag(114808207,'Cubis Gold 2','/images/games/cubisgold2/cubisgold281x46.gif',0,114841177,'20e33497-04f0-4346-975a-5f9df0993877','false','/images/games/cubisgold2/cubisgold216x16.gif',false,11323,'/images/games/cubisgold2/cubisgold2100x75.jpg','/images/games/cubisgold2/cubisgold2179x135.jpg','/images/games/cubisgold2/cubisgold2320x240.jpg','false','/images/games/thumbnails_med_2/cubisgold2130x75.gif','','300 new block-rockin’ levels!','Experience the next dimension of the hit 3D matching game!','true',true,true,'Cubis Gold 2 OLT1');ag(114811147,'Dynasty','/images/games/Dynasty/Dynasty81x46.jpg',0,114844583,'145c072d-7dbb-459d-aca5-44a7e1707099','false','/images/games/Dynasty/Dynasty16x16.gif',false,11323,'/images/games/Dynasty/Dynasty100x75.jpg','/images/games/Dynasty/Dynasty179x135.jpg','/images/games/Dynasty/Dynasty320x240.jpg','false','/images/games/thumbnails_med_2/Dynasty130x75.gif','','Free the baby dragons!','Free baby dragons from their eggs in this delightful ball-shooting game!','true',true,true,'Dynasty OLT1');ag(114812443,'Elemental','/images/games/Elemental/Elemental81x46.gif',0,114845410,'cf3f5f92-cdb1-41d0-90c6-880dc9e2a64f','false','/images/games/Elemental/Elemental16x16.gif',false,11323,'/images/games/Elemental/Elemental100x75.jpg','/images/games/Elemental/Elemental179x135.jpg','/images/games/Elemental/Elemental320x240.jpg','false','/images/games/thumbnails_med_2/Elemental130x75.gif','','Combine the building blocks of life!','Water. Air. Earth. Fire! Combine the building blocks of life!','true',true,true,'Elemental OLT1');ag(114813537,'Mahjong Match','/images/games/mahjong_match/mahjong_match81x46.gif',0,114846130,'6e30813a-5975-48e1-a822-84cbc2f547d1','false','/images/games/mahjong_match/mahjong_match16x16.gif',false,11323,'/images/games/mahjong_match/mahjong_match100x75.jpg','/images/games/mahjong_match/mahjong_match179x135.jpg','/images/games/mahjong_match/mahjong_match320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_match130x75.gif','','Mahjongg meets inlay puzzle fun!','Classic tile matching mahjongg solitaire meets inlay-style puzzle fun!','true',true,true,'Mahjong Match OLT1');ag(114822807,'Gems Quest','/images/games/gems_quest/gems_quest81x46.gif',1007,114855590,'','false','/images/games/gems_quest/gems_quest16x16.gif',false,11323,'/images/games/gems_quest/gems_quest100x75.jpg','/images/games/gems_quest/gems_quest179x135.jpg','/images/games/gems_quest/gems_quest320x240.jpg','false','/images/games/thumbnails_med_2/gems_quest130x75.gif','/exe/Gems_Quest-setup.exe?lc=en&ext=Gems_Quest-setup.exe','Awaken eight ancient totems! ','Awaken eight ancient totems which will grant you an amazing gift! ','false',false,false,'Gems Quest');ag(114827540,'PJ Pride: Pet Detective','/images/games/pj_pride/pj_pride81x46.gif',0,114860477,'b334391e-c931-4fbb-ae24-7f2dc39507b9','false','/images/games/pj_pride/pj_pride16x16.gif',false,11323,'/images/games/pj_pride/pj_pride100x75.jpg','/images/games/pj_pride/pj_pride179x135.jpg','/images/games/pj_pride/pj_pride320x240.jpg','false','/images/games/thumbnails_med_2/pj_pride130x75.gif','','Track down 90 missing pets!','Investigate 96 unique scenes in your search for missing pets! ','true',true,true,'Polly Pride Pet Detective OLT1');ag(114828640,'Garden Defense','/images/games/garden_defense/garden_defense81x46.gif',0,114861623,'ff07518a-0e04-426a-b588-2ee9971d0150','false','/images/games/garden_defense/garden_defense16x16.gif',false,11323,'/images/games/garden_defense/garden_defense100x75.jpg','/images/games/garden_defense/garden_defense179x135.jpg','/images/games/garden_defense/garden_defense320x240.jpg','false','/images/games/thumbnails_med_2/garden_defense130x75.gif','','Protect gardens from malicious pests!','Defend your garden with an arsenal of lawn ornaments, plants and bugs.','true',true,true,'Garden Defense OLT1');ag(114829643,'Boggle','/images/games/Boggle/Boggle81x46.gif',0,114862470,'e9f06674-c38d-4451-8a11-0defea941ab2','false','/images/games/Boggle/Boggle16x16.gif',false,11323,'/images/games/Boggle/Boggle100x75.jpg','/images/games/Boggle/Boggle179x135.jpg','/images/games/Boggle/Boggle320x240.jpg','false','/images/games/thumbnails_med_2/Boggle130x75.gif','','Make words before time expires! ','Make words for the highest point value before time runs out!','true',true,true,'Boggle OLT1');ag(114852710,'Westward II: Heroes of the Frontier','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier81x46.gif',110012530,114885430,'','false','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier16x16.gif',false,11323,'/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier100x75.jpg','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier179x135.jpg','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier320x240.jpg','false','/images/games/thumbnails_med_2/westward_2_heroes_of_the_frontier130x75.gif','/exe/Westward_II-setup.exe?lc=en&ext=Westward_II-setup.exe','Build a wild west outpost! ','Build settlements and deliver justice in this all-new frontier adventure! ','false',false,false,'Westward II');ag(114853527,'Dragonstone','/images/games/dragonstone/dragonstone81x46.gif',110012530,114886903,'','false','/images/games/dragonstone/dragonstone16x16.gif',false,11323,'/images/games/dragonstone/dragonstone100x75.jpg','/images/games/dragonstone/dragonstone179x135.jpg','/images/games/dragonstone/dragonstone320x240.jpg','false','/images/games/thumbnails_med_2/dragonstone130x75.gif','/exe/Dragonstone-setup.exe?lc=en&ext=Dragonstone-setup.exe','Win the princess’s love! ','Help a knight recover the DragonStone and win the princess’s love! ','false',false,false,'Dragonstone');ag(114855630,'Wordz','/images/games/wordz/wordz81x46.gif',0,114888990,'580f7230-62f2-4ae1-90a6-972700de2198','false','/images/games/wordz/wordz16x16.gif',false,11323,'/images/games/wordz/wordz100x75.jpg','/images/games/wordz/wordz179x135.jpg','/images/games/wordz/wordz320x240.jpg','false','/images/games/thumbnails_med_2/wordz130x75.gif','','Test your vocabulary and spelling skills!','Test your vocabulary and spelling skills, swap letters and decipher new words in Wordz!','true',false,false,'Wordz OL');ag(114856197,'Glassez','/images/games/glassez/glassez81x46.gif',0,114889883,'57c563aa-ecd7-4cfa-b759-b699e8ca67c9','false','/images/games/glassez/glassez16x16.gif',false,11323,'/images/games/glassez/glassez100x75.jpg','/images/games/glassez/glassez179x135.jpg','/images/games/glassez/glassez320x240.jpg','false','/images/games/thumbnails_med_2/glassez130x75.gif','','A pleasant brain teasing surprise!','If you are puzzle games fan, try a pleasant brain teasing surprise.','true',false,false,'Glassez OL');ag(114857510,'Sonny','/images/games/sonny/sonny81x46.gif',0,114890210,'8443a564-f82e-4c5d-bcda-c518cfce71d4','false','/images/games/sonny/sonny16x16.gif',false,11323,'/images/games/sonny/sonny100x75.jpg','/images/games/sonny/sonny179x135.jpg','/images/games/sonny/sonny320x240.jpg','false','/images/games/thumbnails_med_2/sonny130x75.gif','','Epic Zombie RPG Adventure','An epic RPG adventure, play as a Zombie!','true',false,false,'Sonny OL');ag(114858953,'Mysteriez','/images/games/Mysteriez/Mysteriez81x46.gif',0,114891500,'20b5b4e9-a5b5-4f9e-badc-52c27b800aeb','false','/images/games/Mysteriez/Mysteriez16x16.gif',false,11323,'/images/games/Mysteriez/Mysteriez100x75.jpg','/images/games/Mysteriez/Mysteriez179x135.jpg','/images/games/Mysteriez/Mysteriez320x240.jpg','false','/images/games/thumbnails_med_2/Mysteriez130x75.gif','','Play this hidden object game!','Be a detective in this hidden object game. Play Mysteriez!','true',false,false,'Mysteriez OL');ag(114859503,'Desktop Tower Defense','/images/games/desktop_tower_defence/desktop_tower_defence81x46.gif',0,114892457,'518df4f9-b7c0-4ad9-947a-162a0c3cd06d','false','/images/games/desktop_tower_defence/desktop_tower_defence16x16.gif',false,11323,'/images/games/desktop_tower_defence/desktop_tower_defence100x75.jpg','/images/games/desktop_tower_defence/desktop_tower_defence179x135.jpg','/images/games/desktop_tower_defence/desktop_tower_defence320x240.jpg','false','/images/games/thumbnails_med_2/desktop_tower_defence130x75.gif','','Stop enemies in their tracks!  ','Stop enemies in their tracks! Over 100 levels of play.','true',true,true,'Desktop Tower Defense OLT1');ag(114930960,'Risk','/images/games/risk/risk81x46.gif',0,114963927,'54060593-9e1e-4733-a1c3-a854b1820026','false','/images/games/risk/risk16x16.gif',false,11323,'/images/games/risk/risk100x75.jpg','/images/games/risk/risk179x135.jpg','/images/games/risk/risk320x240.jpg','false','/images/games/thumbnails_med_2/risk130x75.gif','','Attack. Defend. Dominate the world! ','Plot invasions in this classic board game of conspiracy and adventure! ','true',true,true,'Risk OLT1');ag(114932637,'Flip Words 2','/images/games/flipwords2/flipwords281x46.gif',0,114965590,'19858d4f-b802-4db7-97bf-4cfda296e206','false','/images/games/flipwords2/flipwords216x16.gif',false,11323,'/images/games/flipwords2/flipwords2100x75.jpg','/images/games/flipwords2/flipwords2179x135.jpg','/images/games/flipwords2/flipwords2320x240.jpg','false','/images/games/thumbnails_med_2/flipwords2130x75.gif','','Solve thousands of familiar phrases! ','Flip letters, make words, and solve thousands of familiar phrases! ','true',true,true,'Flip Words 2 OLT1');ag(114933493,'The Mind Bender','/images/games/the_mind_bender/the_mind_bender81x46.gif',0,114966743,'2fae4455-365c-47c6-bed0-4c3e7e6e27dc','false','/images/games/the_mind_bender/the_mind_bender16x16.gif',false,11323,'/images/games/the_mind_bender/the_mind_bender100x75.jpg','/images/games/the_mind_bender/the_mind_bender179x135.jpg','/images/games/the_mind_bender/the_mind_bender320x240.jpg','false','/images/games/thumbnails_med_2/the_mind_bender130x75.gif','','Telekenesis is your ally!','Use telekenesis to overcome various obstacles and get through each level.','true',false,false,'The Mind Bender OL');ag(114941777,'Travel Agency','/images/games/travel_agency/travel_agency81x46.gif',110012530,114974680,'','false','/images/games/travel_agency/travel_agency16x16.gif',false,11323,'/images/games/travel_agency/travel_agency100x75.jpg','/images/games/travel_agency/travel_agency179x135.jpg','/images/games/travel_agency/travel_agency320x240.jpg','false','/images/games/thumbnails_med_2/travel_agency130x75.gif','/exe/Travel_Agency-setup.exe?lc=en&ext=Travel_Agency-setup.exe','Run your own travel agency! ','Book vacations for customers as the owner of your own agency! ','false',false,false,'Travel Agency');ag(114945627,'Family Feud III: Dream Home','/images/games/family_feud_3/family_feud_381x46.gif',110012530,114978987,'','false','/images/games/family_feud_3/family_feud_316x16.gif',false,11323,'/images/games/family_feud_3/family_feud_3100x75.jpg','/images/games/family_feud_3/family_feud_3179x135.jpg','/images/games/family_feud_3/family_feud_3320x240.jpg','false','/images/games/thumbnails_med_2/family_feud_3130x75.gif','/exe/Family_Feud_3-setup.exe?lc=en&ext=Family_Feud_3-setup.exe','Decorate your dream home! ','Guess survey answers and earn points to decorate your dream home! ','false',false,false,'Family Feud 3');ag(114946193,'Natalie Brooks','/images/games/natalie_brooks/natalie_brooks81x46.gif',1000,114979910,'','false','/images/games/natalie_brooks/natalie_brooks16x16.gif',false,11323,'/images/games/natalie_brooks/natalie_brooks100x75.jpg','/images/games/natalie_brooks/natalie_brooks179x135.jpg','/images/games/natalie_brooks/natalie_brooks320x240.jpg','false','/images/games/thumbnails_med_2/natalie_brooks130x75.gif','/exe/Natalie_Brooks-setup.exe?lc=en&ext=Natalie_Brooks-setup.exe','Explore a house full of secrets! ','Help Natalie find items in a house full of secrets! ','false',false,false,'Natalie Brooks');ag(114961977,'ZOODomino','/images/games/zoodomino/zoodomino81x46.gif',110012530,114994837,'','false','/images/games/zoodomino/zoodomino16x16.gif',false,11323,'/images/games/zoodomino/zoodomino100x75.jpg','/images/games/zoodomino/zoodomino179x135.jpg','/images/games/zoodomino/zoodomino320x240.jpg','false','/images/games/thumbnails_med_2/zoodomino130x75.gif','/exe/ZOODomino-setup.exe?lc=en&ext=ZOODomino-setup.exe','Help dragonflies save the world! ','Help magic dragonflies save the world in this dominoes challenge! ','false',false,false,'ZOODomino');ag(114964527,'Cooking Academy','/images/games/cooking_academy/cooking_academy81x46.gif',110012530,114997403,'','false','/images/games/cooking_academy/cooking_academy16x16.gif',false,11323,'/images/games/cooking_academy/cooking_academy100x75.jpg','/images/games/cooking_academy/cooking_academy179x135.jpg','/images/games/cooking_academy/cooking_academy320x240.jpg','false','/images/games/thumbnails_med_2/cooking_academy130x75.gif','/exe/Cooking_Academy-setup.exe?lc=en&ext=Cooking_Academy-setup.exe','Learn to be a top chef! ','Prepare 50 recipes as a student in a prestigious culinary school! ','false',false,false,'Cooking Academy');ag(114969777,'DarkSide','/images/games/darkside/darkside81x46.gif',110060583,115002603,'','false','/images/games/darkside/darkside16x16.gif',false,11323,'/images/games/darkside/darkside100x75.jpg','/images/games/darkside/darkside179x135.jpg','/images/games/darkside/darkside320x240.jpg','false','/images/games/thumbnails_med_2/darkside130x75.gif','/exe/DarkSide-setup.exe?lc=en&ext=DarkSide-setup.exe','Blow away alien-packed asteroids! ','Blast your way through hundreds of massive, alien-packed asteroids! ','false',false,false,'DarkSide');ag(114972710,'Ice Cream Dee Lites','/images/games/ice_cream_dee_lites/ice_cream_dee_lites81x46.gif',110012530,115005583,'','false','/images/games/ice_cream_dee_lites/ice_cream_dee_lites16x16.gif',false,11323,'/images/games/ice_cream_dee_lites/ice_cream_dee_lites100x75.jpg','/images/games/ice_cream_dee_lites/ice_cream_dee_lites179x135.jpg','/images/games/ice_cream_dee_lites/ice_cream_dee_lites320x240.jpg','false','/images/games/thumbnails_med_2/ice_cream_dee_lites130x75.gif','/exe/Ice_Cream_Dee_Lites-setup.exe?lc=en&ext=Ice_Cream_Dee_Lites-setup.exe','Manage a hectic ice cream shop! ','Help Dee serve delicious frozen treats to 16 zany customers! ','false',false,false,'Ice Cream Dee Lites');ag(114996620,'Lucky Coins','/images/games/lucky_coins/lucky_coins81x46.gif',0,115029450,'85158b5b-9450-4553-9e2e-6f984f78929d','false','/images/games/lucky_coins/lucky_coins16x16.gif',false,11323,'/images/games/lucky_coins/lucky_coins100x75.jpg','/images/games/lucky_coins/lucky_coins179x135.jpg','/images/games/lucky_coins/lucky_coins320x240.jpg','false','/images/games/thumbnails_med_2/lucky_coins130x75.gif','','Do you feel lucky today?','Bumping fun mix of Pinball, Pachinko & other casino style games!','true',true,true,'Lucky Coins OLT1');ag(114997207,'Legend of Aladdin','/images/games/legend_of_aladdin/legend_of_aladdin81x46.gif',0,115030160,'d0d032ca-c980-45f1-bf50-aba5f51667ad','false','/images/games/legend_of_aladdin/legend_of_aladdin16x16.gif',false,11323,'/images/games/legend_of_aladdin/legend_of_aladdin100x75.jpg','/images/games/legend_of_aladdin/legend_of_aladdin179x135.jpg','/images/games/legend_of_aladdin/legend_of_aladdin320x240.jpg','false','/images/games/thumbnails_med_2/legend_of_aladdin130x75.gif','','Recover 120 magic carpet pieces!','Recover 120 magic carpet pieces in this exotic icon-matching adventure!','true',true,true,'Legend of Aladdin OLT1');ag(114998800,'Castle Smasher','/images/games/castle_smasher/castle_smasher81x46.gif',0,115031520,'b7ad3fc3-3868-47fc-b3b6-3f4709b2c31a','false','/images/games/castle_smasher/castle_smasher16x16.gif',false,11323,'/images/games/castle_smasher/castle_smasher100x75.jpg','/images/games/castle_smasher/castle_smasher179x135.jpg','/images/games/castle_smasher/castle_smasher320x240.jpg','false','/images/games/thumbnails_med_2/castle_smasher130x75.gif','','Conquer the kingdom!','Conquer the kingdom with your catapult!','true',true,true,'Castle Smasher OLT1');ag(114999340,'ZOODomino','/images/games/zoo_domino/zoo_domino81x46.gif',0,115032260,'7f366929-4136-4268-9115-9e75e8da6252','false','/images/games/zoo_domino/zoo_domino16x16.gif',false,11323,'/images/games/zoo_domino/zoo_domino100x75.jpg','/images/games/zoo_domino/zoo_domino179x135.jpg','/images/games/zoo_domino/zoo_domino320x240.jpg','false','/images/games/thumbnails_med_2/zoo_domino130x75.gif','','Help dragonflies save the world! ','Help magic dragonflies save the world in this dominoes challenge! ','true',true,true,'ZooDomino OLT1');ag(115001157,'Boomstick','/images/games/boomstick/boomstick81x46.gif',0,115034357,'8f88b309-0c5e-48bf-8bda-7926bc84ece9','false','/images/games/boomstick/boomstick16x16.gif',false,11323,'/images/games/boomstick/boomstick100x75.jpg','/images/games/boomstick/boomstick179x135.jpg','/images/games/boomstick/boomstick320x240.jpg','false','/images/games/thumbnails_med_2/boomstick130x75.gif','','Shotgun blasting fun and mayhem!','You and your trusty shotgun against an onslaught of shapes.','true',false,false,'Boomstick OL');ag(115002687,'Pet Shop Hop','/images/games/pet_shop_hop/pet_shop_hop81x46.gif',110012530,115035187,'','false','/images/games/pet_shop_hop/pet_shop_hop16x16.gif',false,11323,'/images/games/pet_shop_hop/pet_shop_hop100x75.jpg','/images/games/pet_shop_hop/pet_shop_hop179x135.jpg','/images/games/pet_shop_hop/pet_shop_hop320x240.jpg','false','/images/games/thumbnails_med_2/pet_shop_hop130x75.gif','/exe/Pet_Shop_Hop-setup.exe?lc=en&ext=Pet_Shop_Hop-setup.exe','Manage a successful pet shop! ','Match customers with adorable pets in this business simulation game! ','false',false,false,'Pet Shop Hop');ag(115011423,'Snapshot Adventures','/images/games/snapshot_adventures/snapshot_adventures81x46.gif',0,11504480,'aa653ae1-0eef-4ad1-ad87-1101469e2d0c','false','/images/games/snapshot_adventures/snapshot_adventures16x16.gif',false,11323,'/images/games/snapshot_adventures/snapshot_adventures100x75.jpg','/images/games/snapshot_adventures/snapshot_adventures179x135.jpg','/images/games/snapshot_adventures/snapshot_adventures320x240.jpg','false','/images/games/thumbnails_med_2/snapshot_adventures130x75.gif','','Photograph 135 species of birds!','Photograph 135 species of birds on a cross-country journey!','true',false,false,'Snapshot Adventures OL');ag(115017100,'Nanny Mania','/images/games/NannyMania/NannyMania81x46.gif',0,115050913,'5e550006-a941-4c69-b479-a310e8202ed2','false','/images/games/NannyMania/NannyMania16x16.gif',false,11323,'/images/games/NannyMania/NannyMania100x75.jpg','/images/games/NannyMania/NannyMania179x135.jpg','/images/games/NannyMania/NannyMania320x240.jpg','false','/images/games/thumbnails_med_2/NannyMania130x75.gif','','Manage a busy household! ','Manage a busy household while looking after four crazy kids! ','true',false,false,'Nanny Mania OL');ag(115033430,'Mahjong Quest 2','/images/games/mahjong_quest_2/mahjong_quest_281x46.gif',0,115066743,'479950c1-8f7e-4d22-be34-d32e607c4667','false','/images/games/mahjong_quest_2/mahjong_quest_216x16.gif',false,11323,'/images/games/mahjong_quest_2/mahjong_quest_2100x75.jpg','/images/games/mahjong_quest_2/mahjong_quest_2179x135.jpg','/images/games/mahjong_quest_2/mahjong_quest_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_quest_2130x75.gif','','Help Kwasi rebalance the universe! ','Solve mahjong puzzles to restore Kwasi’s split Yin & Yang persona! ','true',true,true,'Mahjong Quest 2 OLT1');ag(115039953,'Belle’s Beauty Boutique','/images/games/BellesBeauty/BellesBeauty81x46.gif',0,115072733,'773d0959-cfd7-44ef-bcd6-2495e2ab3c05','false','/images/games/BellesBeauty/BellesBeauty16x16.gif',false,11323,'/images/games/BellesBeauty/BellesBeauty100x75.jpg','/images/games/BellesBeauty/BellesBeauty179x135.jpg','/images/games/BellesBeauty/BellesBeauty320x240.jpg','false','/images/games/thumbnails_med_2/BellesBeauty130x75.gif','/exe/Belles_Beauty_Boutique-setup.exe?lc=en&ext=Belles_Beauty_Boutique-setup.exe','Run your own beauty salon! ','Cut the hair of a crazy cast of beauty parlor customers!  ','true',false,true,'Belles Beauty Boutique OLT1');ag(115047883,'Planet Journey','/images/games/planet_journey/planet_journey81x46.gif',0,115080633,'dbf487a4-66a6-488d-8061-afd8c626f161','false','/images/games/planet_journey/planet_journey16x16.gif',false,11323,'/images/games/planet_journey/planet_journey100x75.jpg','/images/games/planet_journey/planet_journey179x135.jpg','/images/games/planet_journey/planet_journey320x240.jpg','false','/images/games/thumbnails_med_2/planet_journey130x75.gif','','Keep your spaceship safe from aliens.','Keep your spaceship safe from aliens while journeying through space!','true',false,false,'Planet Journey OL');ag(115048393,'Cupid Run','/images/games/cupid_run/cupid_run81x46.gif',0,115081127,'c72583b5-a04d-42d8-98b8-95504ebd6233','false','/images/games/cupid_run/cupid_run16x16.gif',false,11323,'/images/games/cupid_run/cupid_run100x75.jpg','/images/games/cupid_run/cupid_run179x135.jpg','/images/games/cupid_run/cupid_run320x240.jpg','false','/images/games/thumbnails_med_2/cupid_run130x75.gif','','Earn points by jumping clouds!','Jump over as many clouds as you can to collect points!!','true',false,false,'Cupid Run OL');ag(115050127,'Mystery PI - The Vegas Heist','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist81x46.gif',1000,115083830,'','false','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist16x16.gif',false,11323,'/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist100x75.jpg','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist179x135.jpg','/images/games/mystery_pi_the_vegas_heist/mystery_pi_the_vegas_heist320x240.jpg','false','/images/games/thumbnails_med_2/mystery_pi_the_vegas_heist130x75.gif','/exe/Mystery_PI_The_Vegas_Heist-setup.exe?lc=en&ext=Mystery_PI_The_Vegas_Heist-setup.exe','Recover billions stolen from a casino! ','Find and return $4 billion stolen from Vegas’s newest casino! ','false',false,false,'Mystery PI The Vegas Heist');ag(115052737,'Bottle Busters','/images/games/bottle_busters/bottle_busters81x46.gif',110012530,115085610,'','false','/images/games/bottle_busters/bottle_busters16x16.gif',false,11323,'/images/games/bottle_busters/bottle_busters100x75.jpg','/images/games/bottle_busters/bottle_busters179x135.jpg','/images/games/bottle_busters/bottle_busters320x240.jpg','false','/images/games/thumbnails_med_2/bottle_busters130x75.gif','/exe/Bottle_Busters-setup.exe?lc=en&ext=Bottle_Busters-setup.exe','Knock down 3D bottles! ','Bust bottles and win prizes in a 3D physics environment!  ','false',false,false,'Bottle Busters');ag(115053100,'Dairy Dash','/images/games/dairy_dash/dairy_dash81x46.gif',110012530,115086977,'','false','/images/games/dairy_dash/dairy_dash16x16.gif',false,11323,'/images/games/dairy_dash/dairy_dash100x75.jpg','/images/games/dairy_dash/dairy_dash179x135.jpg','/images/games/dairy_dash/dairy_dash320x240.jpg','false','/images/games/thumbnails_med_2/dairy_dash130x75.gif','/exe/Dairy_Dash-setup.exe?lc=en&ext=Dairy_Dash-setup.exe','Help city slickers manage a farm! ','Help city slickers successfully raise livestock and grow produce! ','false',false,false,'Dairy Dash');ag(115056617,'Eye for Design','/images/games/eye_for_design/eye_for_design81x46.gif',1007,115089507,'','false','/images/games/eye_for_design/eye_for_design16x16.gif',false,11323,'/images/games/eye_for_design/eye_for_design100x75.jpg','/images/games/eye_for_design/eye_for_design179x135.jpg','/images/games/eye_for_design/eye_for_design320x240.jpg','false','/images/games/thumbnails_med_2/eye_for_design130x75.gif','/exe/Eye_for_Design-setup.exe?lc=en&ext=Eye_for_Design-setup.exe','Design and decorate dream homes! ','Design and decorate dream homes in this interior design puzzler! ','false',false,false,'Eye for Design');ag(115058743,'Finders Keepers','/images/games/finders_keepers/finders_keepers81x46.gif',0,115091213,'568e48b6-d0b0-4ea5-b696-9e8466360020','false','/images/games/finders_keepers/finders_keepers16x16.gif',false,11323,'/images/games/finders_keepers/finders_keepers100x75.jpg','/images/games/finders_keepers/finders_keepers179x135.jpg','/images/games/finders_keepers/finders_keepers320x240.jpg','false','/images/games/thumbnails_med_2/finders_keepers130x75.gif','','A high seas quest for treasure!','A high seas quest for treasure and adventure with Floyd Finders and Goldie the cat! ','true',false,false,'Finders Keepers OL');ag(115064787,'Virtual Villagers 3: The Secret City','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city81x46.gif',1000,115097380,'','false','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city16x16.gif',false,11323,'/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city100x75.jpg','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city179x135.jpg','/images/games/virtual_villagers_the_secret_city/virtual_villagers_the_secret_city320x240.jpg','false','/images/games/thumbnails_med_2/virtual_villagers_the_secret_city130x75.gif','/exe/Virtual_Villagers_3_The_Secret_City-setup.exe?lc=en&ext=Virtual_Villagers_3_The_Secret_City-setup.exe','Guide castaways into a mysterious city!','Guide a tribe of castaways to a mysterious new city!  ','false',false,false,'Virtual Villagers 3 The Secret');ag(115065740,'Bubble Town','/images/games/bubbletown/bubbletown81x46.gif',110012530,115098587,'','false','/images/games/bubbletown/bubbletown16x16.gif',false,11323,'/images/games/bubbletown/bubbletown100x75.jpg','/images/games/bubbletown/bubbletown179x135.jpg','/images/games/bubbletown/bubbletown320x240.jpg','false','/images/games/thumbnails_med_2/bubbletown130x75.gif','/exe/Bubbletown-setup.exe?lc=en&ext=Bubbletown-setup.exe','Save Borb Bay from calamity!','Save Borb Bay from calamity in this addictive arcade-puzzler!','false',false,false,'Bubbletown');ag(115071933,'Penguin’s Journey','/images/games/penguins_journey/penguins_journey81x46.gif',1007,115104700,'','false','/images/games/penguins_journey/penguins_journey16x16.gif',false,11323,'/images/games/penguins_journey/penguins_journey100x75.jpg','/images/games/penguins_journey/penguins_journey179x135.jpg','/images/games/penguins_journey/penguins_journey320x240.jpg','false','/images/games/thumbnails_med_2/penguins_journey130x75.gif','/exe/Penguins_Journey-setup.exe?lc=en&ext=Penguins_Journey-setup.exe','Puzzle together bridges to Antarctica. ','Puzzle together bridges to help penguins reach their Antarctic homeland! ','false',false,false,'Penguins Journey');ag(115072230,'Mystery Cookbook','/images/games/mystery_cookbook/mystery_cookbook81x46.gif',1100710,115105763,'','false','/images/games/mystery_cookbook/mystery_cookbook16x16.gif',false,11323,'/images/games/mystery_cookbook/mystery_cookbook100x75.jpg','/images/games/mystery_cookbook/mystery_cookbook179x135.jpg','/images/games/mystery_cookbook/mystery_cookbook320x240.jpg','false','/images/games/thumbnails_med_2/mystery_cookbook130x75.gif','/exe/Mystery_Cookbook-setup.exe?lc=en&ext=Mystery_Cookbook-setup.exe','Find missing chapters of a cookbook! ','Search for hidden objects and find missing chapters of a cookbook! ','false',false,false,'Mystery Cookbook');ag(115077637,'Virtual Farm','/images/games/virtual_farm/virtual_farm81x46.gif',110012530,115110323,'','false','/images/games/virtual_farm/virtual_farm16x16.gif',false,11323,'/images/games/virtual_farm/virtual_farm100x75.jpg','/images/games/virtual_farm/virtual_farm179x135.jpg','/images/games/virtual_farm/virtual_farm320x240.jpg','false','/images/games/thumbnails_med_2/virtual_farm130x75.gif','/exe/Virtual_Farm-setup.exe?lc=en&ext=Virtual_Farm-setup.exe','Grow and sell produce! ','Manage a farm, monitor demand, and take your goods to market! ','false',false,false,'Virtual Farm');ag(115079987,'Tropicabana','/images/games/tropicabana/tropicabana81x46.gif',1007,115112877,'','false','/images/games/tropicabana/tropicabana16x16.gif',false,11323,'/images/games/tropicabana/tropicabana100x75.jpg','/images/games/tropicabana/tropicabana179x135.jpg','/images/games/tropicabana/tropicabana320x240.jpg','false','/images/games/thumbnails_med_2/tropicabana130x75.gif','/exe/Tropicabana-setup.exe?lc=en&ext=Tropicabana-setup.exe','Entertain Tropicabana casino audiences! ','Keep audiences entertained as the manager of the Tropicabana casino! ','false',false,false,'Tropicabana');ag(115080293,'Ice Smash','/images/games/ice_smash/ice_smash81x46.gif',0,115113963,'47126cf4-0ac1-4ac3-8100-28a5a9be491e','false','/images/games/ice_smash/ice_smash16x16.gif',false,11323,'/images/games/ice_smash/ice_smash100x75.jpg','/images/games/ice_smash/ice_smash179x135.jpg','/images/games/ice_smash/ice_smash320x240.jpg','false','/images/games/thumbnails_med_2/ice_smash130x75.gif','','Smash the ice to rescue the baby tortoises!','Smash the ice to rescue and save your baby tortoises!','true',false,false,'Ice Smash OL');ag(115097303,'Lost Treasures of Alexandria','/images/games/lost_treasures_of_alexandria/lost_treasures_of_alexandria81x46.gif',1007,115130977,'','false','/images/games/lost_treasures_of_alexandria/lost_treasures_of_alexandria16x16.gif',false,11323,'/images/games/lost_treasures_of_alexandria/lost_treasures_of_alexandria100x75.jpg','/images/games/lost_treasures_of_alexandria/lost_treasures_of_alexandria179x135.jpg','/images/games/lost_treasures_of_alexandria/lost_treasures_of_alexandria320x240.jpg','false','/images/games/thumbnails_med_2/lost_treasures_of_alexandria130x75.gif','/exe/Lost_Treasures_of_Alexandria-setup.exe?lc=en&ext=Lost_Treasures_of_Alexandria-setup.exe','A match-3 journey through time! ','Join an archeologist on a match-3 journey through the ages! ','false',false,false,'Lost Treasures of Alexandria');ag(115100790,'Brickz! 2','/images/games/brickz_2/brickz_281x46.gif',0,11513340,'57c466b4-7e84-4680-8f8b-3bd56390fc37','false','/images/games/brickz_2/brickz_216x16.gif',false,11323,'/images/games/brickz_2/brickz_2100x75.jpg','/images/games/brickz_2/brickz_2179x135.jpg','/images/games/brickz_2/brickz_2320x240.jpg','false','/images/games/thumbnails_med_2/brickz_2130x75.gif','','Build the highest tower possible!','Move the blocks carefully and build the highest tower possible!','true',false,false,'Brickz 2 OL');ag(115101127,'TBA','/images/games/TBA/TBA81x46.gif',0,115134407,'3ada1003-1c19-46f7-8e24-97ed8e9a2c5a','false','/images/games/TBA/TBA16x16.gif',false,11323,'/images/games/TBA/TBA100x75.jpg','/images/games/TBA/TBA179x135.jpg','/images/games/TBA/TBA320x240.jpg','false','/images/games/thumbnails_med_2/TBA130x75.gif','','Launch from port to port! ','Launch from port to port as fast as you can. ','true',true,true,'TBA OLT1');ag(115102137,'Sunday Lawn','/images/games/sunday_lawn/sunday_lawn81x46.gif',0,115135823,'a5fc0fb1-bfa0-4206-a03c-b1d0313b3254','false','/images/games/sunday_lawn/sunday_lawn16x16.gif',false,11323,'/images/games/sunday_lawn/sunday_lawn100x75.jpg','/images/games/sunday_lawn/sunday_lawn179x135.jpg','/images/games/sunday_lawn/sunday_lawn320x240.jpg','false','/images/games/thumbnails_med_2/sunday_lawn130x75.gif','','Have fun mowing the lawn!','Mowing the lawn has never been this much fun!','true',true,true,'Sunday Lawn OLT1');ag(115105990,'Crime Puzzle','/images/games/CrimePuzzle/CrimePuzzle81x46.gif',0,115138833,'ab9ccf82-55c1-45a7-829a-8cfbf162c8c9','false','/images/games/CrimePuzzle/CrimePuzzle16x16.gif',false,11323,'/images/games/CrimePuzzle/CrimePuzzle100x75.jpg','/images/games/CrimePuzzle/CrimePuzzle179x135.jpg','/images/games/CrimePuzzle/CrimePuzzle320x240.jpg','false','/images/games/thumbnails_med_2/CrimePuzzle130x75.gif','','Solve clues to recover stolen stamps! ','Investigate shadowy figures to recover Sir Dawson’s stolen stamp collection! ','true',true,true,'Crime Puzzle OLT1');ag(115118933,'Fitz','/images/games/fitz/fitz81x46.gif',0,115151857,'3c10092e-e74a-418f-ae25-15c15b592e93','false','/images/games/fitz/fitz16x16.gif',false,11323,'/images/games/fitz/fitz100x75.jpg','/images/games/fitz/fitz179x135.jpg','/images/games/fitz/fitz320x240.jpg','false','/images/games/thumbnails_med_2/fitz130x75.gif','','Swap tiles and match three!','Swap colorful tiles and match three or more to make them burst!','true',false,false,'Fitz OL');ag(115121193,'The Lost Cases of Sherlock Holmes','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes81x46.gif',1000,115154583,'','false','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes16x16.gif',false,11323,'/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes100x75.jpg','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes179x135.jpg','/images/games/the_lost_cases_of_sherlock_holmes/the_lost_cases_of_sherlock_holmes320x240.jpg','false','/images/games/thumbnails_med_2/the_lost_cases_of_sherlock_holmes130x75.gif','/exe/The_Lost_Cases_of_Sherlock_Holmes-setup.exe?lc=en&ext=The_Lost_Cases_of_Sherlock_Holmes-setup.exe','Solve 16 different crimes! ','Investigate 16 cases of forgery, espionage, theft and murder! ','false',false,false,'The Lost Cases of Sherlock Hol');ag(115122170,'Suspects and Clues','/images/games/suspects_and_clues/suspects_and_clues81x46.gif',1007,115155950,'','false','/images/games/suspects_and_clues/suspects_and_clues16x16.gif',false,11323,'/images/games/suspects_and_clues/suspects_and_clues100x75.jpg','/images/games/suspects_and_clues/suspects_and_clues179x135.jpg','/images/games/suspects_and_clues/suspects_and_clues320x240.jpg','false','/images/games/thumbnails_med_2/suspects_and_clues130x75.gif','/exe/Suspects_and_Clues-setup.exe?lc=en&ext=Suspects_and_Clues-setup.exe','Solve the heist of the century! ','Catch the thieves and counterfeiters behind the heist of the century! ','false',false,false,'Suspects and Clues');ag(115125397,'Supermarket Mania','/images/games/supermarket_mania/supermarket_mania81x46.gif',110012530,115158223,'','false','/images/games/supermarket_mania/supermarket_mania16x16.gif',false,11323,'/images/games/supermarket_mania/supermarket_mania100x75.jpg','/images/games/supermarket_mania/supermarket_mania179x135.jpg','/images/games/supermarket_mania/supermarket_mania320x240.jpg','false','/images/games/thumbnails_med_2/supermarket_mania130x75.gif','/exe/Supermarket_Mania-setup.exe?lc=en&ext=Supermarket_Mania-setup.exe','Fun stock-‘til-you-drop action! ','Turn five small-time grocery stores into huge successes! ','false',false,false,'Supermarket Mania');ag(115127990,'Laura Jones and the Gates of Good and Evil','/images/games/laura_jones/laura_jones81x46.gif',1000,115160833,'','false','/images/games/laura_jones/laura_jones16x16.gif',false,11323,'/images/games/laura_jones/laura_jones100x75.jpg','/images/games/laura_jones/laura_jones179x135.jpg','/images/games/laura_jones/laura_jones320x240.jpg','false','/images/games/thumbnails_med_2/laura_jones130x75.gif','/exe/Laura_Jones-setup.exe?lc=en&ext=Laura_Jones-setup.exe','Defend the Portal from evil! ','Find the keys that open the gates of Good and Evil! ','false',false,false,'Laura Jones and the Gates of G');ag(115145653,'Easter Eggin','/images/games/easter_eggin/easter_eggin81x46.gif',0,115178470,'c13e3925-7c81-4fa9-afd0-426e5a06e6d9','false','/images/games/easter_eggin/easter_eggin16x16.gif',false,11323,'/images/games/easter_eggin/easter_eggin100x75.jpg','/images/games/easter_eggin/easter_eggin179x135.jpg','/images/games/easter_eggin/easter_eggin320x240.jpg','false','/images/games/thumbnails_med_2/easter_eggin130x75.gif','','Find all the easter eggs!','Search and find all the eggs in this easter classic! ','true',true,true,'Easter Eggin OLT1');ag(115146870,'Valentiner','/images/games/valentiner/valentiner81x46.gif',0,115179790,'91b7eb3b-301c-4d5c-a1fd-c39fe731bd00','false','/images/games/valentiner/valentiner16x16.gif',false,11323,'/images/games/valentiner/valentiner100x75.jpg','/images/games/valentiner/valentiner179x135.jpg','/images/games/valentiner/valentiner320x240.jpg','false','/images/games/thumbnails_med_2/valentiner130x75.gif','','Grab hearts made of gold!','Play cupid and grab hearts made of gold before time runs out!','true',true,true,'Valentiner OLT1');ag(115155843,'Gold Miner: SE','/images/games/gold_miner_se/gold_miner_se81x46.gif',0,115188310,'556b1e28-7215-4f3f-8f4e-7d1d272948d6','false','/images/games/gold_miner_se/gold_miner_se16x16.gif',false,11323,'/images/games/gold_miner_se/gold_miner_se100x75.jpg','/images/games/gold_miner_se/gold_miner_se179x135.jpg','/images/games/gold_miner_se/gold_miner_se320x240.jpg','false','/images/games/thumbnails_med_2/gold_miner_se130x75.gif','','Gold Miner is back!','Grab the gold as fast as you can!','true',true,true,'Gold Miner SE OLT1');ag(115156273,'Pizza Delivery 2','/images/games/pizza_delivery_2/pizza_delivery_281x46.gif',0,115189570,'0ab94965-f4e9-45bb-a858-c654dfb24471','false','/images/games/pizza_delivery_2/pizza_delivery_216x16.gif',false,11323,'/images/games/pizza_delivery_2/pizza_delivery_2100x75.jpg','/images/games/pizza_delivery_2/pizza_delivery_2179x135.jpg','/images/games/pizza_delivery_2/pizza_delivery_2320x240.jpg','false','/images/games/thumbnails_med_2/pizza_delivery_2130x75.gif','','Manage a popular pizzeria !','Manage a popular pizzeria in this fast-paced arcade game!','true',false,false,'Pizza Delivery 2 OL');ag(115157203,'Phit','/images/games/phit/phit81x46.gif',0,115190953,'412b8975-e16d-4003-ade5-b914d440dc9b','false','/images/games/phit/phit16x16.gif',false,11323,'/images/games/phit/phit100x75.jpg','/images/games/phit/phit179x135.jpg','/images/games/phit/phit320x240.jpg','false','/images/games/thumbnails_med_2/phit130x75.gif','','Can you ”Phit” it all together?','”Phit” pieces together in this addictive puzzle game.','true',false,false,'Phit OL');ag(115160807,'Bug Bustin','/images/games/bug_bustin/bug_bustin81x46.gif',0,115193697,'d3ab693f-cd4e-46c3-96b0-c0d2fa3fcbf4','false','/images/games/bug_bustin/bug_bustin16x16.gif',false,11323,'/images/games/bug_bustin/bug_bustin100x75.jpg','/images/games/bug_bustin/bug_bustin179x135.jpg','/images/games/bug_bustin/bug_bustin320x240.jpg','false','/images/games/thumbnails_med_2/bug_bustin130x75.gif','','Exterminate bugs using unique weapons.','Bugs of all kinds be aware, the exterminator is coming to annihilate here.','true',true,true,'Bug Bustin OLT1');ag(115162883,'Wedding Dash 2','/images/games/wedding_dash_2/wedding_dash_281x46.gif',110012530,115195743,'','false','/images/games/wedding_dash_2/wedding_dash_216x16.gif',false,11323,'/images/games/wedding_dash_2/wedding_dash_2100x75.jpg','/images/games/wedding_dash_2/wedding_dash_2179x135.jpg','/images/games/wedding_dash_2/wedding_dash_2320x240.jpg','false','/images/games/thumbnails_med_2/wedding_dash_2130x75.gif','/exe/Wedding_Dash_2-setup.exe?lc=en&ext=Wedding_Dash_2-setup.exe','Plan weddings in exotic locations! ','Fulfill wedding requests from Bridezilla and the all-new Groom-Kong! ','false',false,false,'Wedding Dash 2');ag(115171837,'High Tide','/images/games/high_tide/high_tide81x46.gif',0,115204273,'b74c106d-de3a-4b64-a186-57b5193a7e9f','false','/images/games/high_tide/high_tide16x16.gif',false,11323,'/images/games/high_tide/high_tide100x75.jpg','/images/games/high_tide/high_tide179x135.jpg','/images/games/high_tide/high_tide320x240.jpg','false','/images/games/thumbnails_med_2/high_tide130x75.gif','','Keep jumping to stay ahead!','The tide is rising, so keep jumping to stay ahead!','true',true,true,'High Tide OLT1');ag(115172877,'Pool Jam','/images/games/pool_jam/pool_jam81x46.gif',0,115205970,'4b76ca7c-d614-444d-bc82-adea77aad581','false','/images/games/pool_jam/pool_jam16x16.gif',false,11323,'/images/games/pool_jam/pool_jam100x75.jpg','/images/games/pool_jam/pool_jam179x135.jpg','/images/games/pool_jam/pool_jam320x240.jpg','false','/images/games/thumbnails_med_2/pool_jam130x75.gif','','Everyone’s favorite pool game!','See how you rack up in everyone’s favorite pool game!','true',true,true,'Pool Jam OLT1');ag(115173990,'Speed','/images/games/speed/speed81x46.gif',0,115206893,'817d4d24-7271-4792-a9a3-90fa05457d5d','false','/images/games/speed/speed16x16.gif',false,11323,'/images/games/speed/speed100x75.jpg','/images/games/speed/speed179x135.jpg','/images/games/speed/speed320x240.jpg','false','/images/games/thumbnails_med_2/speed130x75.gif','','Think you’re fast? Try Speed!','The fastest card game this side of the Mississippi!','true',true,true,'Speed OLT1');ag(115176620,'Master Qwan’s Mahjongg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg81x46.gif',0,115209793,'f7e2e8ff-9b6c-43c4-9104-0315322ca3c3','false','/images/games/master_qwans_mahjongg/master_qwans_mahjongg16x16.gif',false,11323,'/images/games/master_qwans_mahjongg/master_qwans_mahjongg100x75.jpg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg179x135.jpg','/images/games/master_qwans_mahjongg/master_qwans_mahjongg320x240.jpg','false','/images/games/thumbnails_med_2/master_qwans_mahjongg130x75.gif','','Classic mahjongg fun!','Beat the Master in this classic fun mahjonng game!','true',true,true,'Master Qwanâ€™s Mahjongg OLT1');ag(115187917,'Stunt Bike Island','/images/games/stunt_bike_island/stunt_bike_island81x46.gif',0,115220307,'b234a9de-c923-44da-b141-9f2adff8c6bb','false','/images/games/stunt_bike_island/stunt_bike_island16x16.gif',false,11323,'/images/games/stunt_bike_island/stunt_bike_island100x75.jpg','/images/games/stunt_bike_island/stunt_bike_island179x135.jpg','/images/games/stunt_bike_island/stunt_bike_island320x240.jpg','false','/images/games/thumbnails_med_2/stunt_bike_island130x75.gif','','Extreme tropical mountain biking!','Stunt Bike Island is the bike game with spectacular stunts and a tropical twist!','true',false,false,'Stunt Bike Island OL');ag(115189690,'Hell&rsquo;s Kitchen','/images/games/hells_kitchen/hells_kitchen81x46.gif',110012530,115222907,'','false','/images/games/hells_kitchen/hells_kitchen16x16.gif',false,11323,'/images/games/hells_kitchen/hells_kitchen100x75.jpg','/images/games/hells_kitchen/hells_kitchen179x135.jpg','/images/games/hells_kitchen/hells_kitchen320x240.jpg','false','/images/games/thumbnails_med_2/hells_kitchen130x75.gif','/exe/Hells_Kitchen-setup.exe?lc=en&ext=Hells_Kitchen-setup.exe','Can you survive the pressure cooker? ','Work your way through a series of rigorous cooking challenges! ','false',false,false,'Hells Kitchen');ag(115208410,'First Class Flurry','/images/games/first_class_flurry/first_class_flurry81x46.gif',110012530,115241707,'','false','/images/games/first_class_flurry/first_class_flurry16x16.gif',false,11323,'/images/games/first_class_flurry/first_class_flurry100x75.jpg','/images/games/first_class_flurry/first_class_flurry179x135.jpg','/images/games/first_class_flurry/first_class_flurry320x240.jpg','false','/images/games/thumbnails_med_2/first_class_flurry130x75.gif','/exe/First_Class_Flurry-setup.exe?lc=en&ext=First_Class_Flurry-setup.exe','Pamper passengers as a flight attendant! ','Help flight attendant Claire pamper unpredictable economy and first-class passengers! ','false',false,false,'First Class Flurry');ag(115212887,'Cross Sums','/images/games/cross_sums/cross_sums81x46.gif',0,115245403,'7f73eb74-cf91-4845-8837-c31b4f92c9e7','false','/images/games/cross_sums/cross_sums16x16.gif',false,11323,'/images/games/cross_sums/cross_sums100x75.jpg','/images/games/cross_sums/cross_sums179x135.jpg','/images/games/cross_sums/cross_sums320x240.jpg','false','/images/games/thumbnails_med_2/cross_sums130x75.gif','','A numbers game with a grid.','Add consecutive numbers to reach the given totals in a grid.','true',false,false,'Cross Sums OL');ag(115213523,'Backwards','/images/games/backwards/backwards81x46.gif',0,115246227,'818ebb68-e15f-402e-82da-e96439e9317f','false','/images/games/backwards/backwards16x16.gif',false,11323,'/images/games/backwards/backwards100x75.jpg','/images/games/backwards/backwards179x135.jpg','/images/games/backwards/backwards320x240.jpg','false','/images/games/thumbnails_med_2/backwards130x75.gif','','Simple math to solve backwards','Using simple math, find the equations to the given answers.','true',false,false,'Backwards OL');ag(115214367,'Ranch Rush','/images/games/ranch_rush/ranch_rush81x46.gif',1000,115247383,'','false','/images/games/ranch_rush/ranch_rush16x16.gif',false,11323,'/images/games/ranch_rush/ranch_rush100x75.jpg','/images/games/ranch_rush/ranch_rush179x135.jpg','/images/games/ranch_rush/ranch_rush320x240.jpg','false','/images/games/thumbnails_med_2/ranch_rush130x75.gif','/exe/Ranch_Rush-setup.exe?lc=en&ext=Ranch_Rush-setup.exe','Turn three acres into a thriving ranch! ','Help Sara turn three acres into a thriving Farmer’s Market Ranch.  ','false',false,false,'Ranch Rush');ag(115219193,'Family Restaurant','/images/games/family_restaurant/family_restaurant81x46.gif',0,115252850,'e323429e-7c43-4e5a-94ca-222bbc21a4e8','false','/images/games/family_restaurant/family_restaurant16x16.gif',false,11323,'/images/games/family_restaurant/family_restaurant100x75.jpg','/images/games/family_restaurant/family_restaurant179x135.jpg','/images/games/family_restaurant/family_restaurant320x240.jpg','false','/images/games/thumbnails_med_2/family_restaurant130x75.gif','','Test your kitchen efficiency skills! ','Quickly prepare tasty, creative dishes to earn a 5-star rating! ','true',false,false,'Family Restaurant OL');ag(115222563,'Babyblimp','/images/games/babyblimp/babyblimp81x46.gif',110012530,115255610,'','false','/images/games/babyblimp/babyblimp16x16.gif',false,11323,'/images/games/babyblimp/babyblimp100x75.jpg','/images/games/babyblimp/babyblimp179x135.jpg','/images/games/babyblimp/babyblimp320x240.jpg','false','/images/games/thumbnails_med_2/babyblimp130x75.gif','/exe/Babyblimp-setup.exe?lc=en&ext=Babyblimp-setup.exe','Help storks deliver babies. ','Oversee baby production and make sure storks correctly deliver newborns! ','false',false,false,'Babyblimp');ag(115224440,'Fishdom','/images/games/fishdom/fishdom81x46.gif',1000,115257753,'','false','/images/games/fishdom/fishdom16x16.gif',false,11323,'/images/games/fishdom/fishdom100x75.jpg','/images/games/fishdom/fishdom179x135.jpg','/images/games/fishdom/fishdom320x240.jpg','false','/images/games/thumbnails_med_2/fishdom130x75.gif','/exe/Fishdom-setup.exe?lc=en&ext=Fishdom-setup.exe','Create your virtual dream aquarium! ','Create a virtual aquarium with exotic fish and attractive ornaments! ','false',false,false,'Fishdom');ag(115228113,'The Clumsy’s','/images/games/the_clumsys/the_clumsys81x46.gif',1100710,115261740,'','false','/images/games/the_clumsys/the_clumsys16x16.gif',false,11323,'/images/games/the_clumsys/the_clumsys100x75.jpg','/images/games/the_clumsys/the_clumsys179x135.jpg','/images/games/the_clumsys/the_clumsys320x240.jpg','false','/images/games/thumbnails_med_2/the_clumsys130x75.gif','/exe/The_Clumsys-setup.exe?lc=en&ext=The_Clumsys-setup.exe','Locate 20 kids lost in time!  ','Help Grandpa track down 20 kids lost in time! ','false',false,false,'The Clumsys');ag(115231370,'Build In Time','/images/games/build_in_time/build_in_time81x46.gif',110012530,115264933,'','false','/images/games/build_in_time/build_in_time16x16.gif',false,11323,'/images/games/build_in_time/build_in_time100x75.jpg','/images/games/build_in_time/build_in_time179x135.jpg','/images/games/build_in_time/build_in_time320x240.jpg','false','/images/games/thumbnails_med_2/build_in_time130x75.gif','/exe/Build_In_Time-setup.exe?lc=en&ext=Build_In_Time-setup.exe','Build modern and retro homes! ','Build modern and retro homes for movie starlets, hippies and more! ','false',false,false,'Build In Time');ag(115232530,'Jewel Quest III','/images/games/jewel_quest_3/jewel_quest_381x46.gif',1000,115265627,'','false','/images/games/jewel_quest_3/jewel_quest_316x16.gif',false,11323,'/images/games/jewel_quest_3/jewel_quest_3100x75.jpg','/images/games/jewel_quest_3/jewel_quest_3179x135.jpg','/images/games/jewel_quest_3/jewel_quest_3320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_3130x75.gif','/exe/Jewel_Quest_3-setup.exe?lc=en&ext=Jewel_Quest_3-setup.exe','Match jewels to unlock secrets!','Match jewels, unlock secrets and find the fabled Golden Jewel Board!','false',false,false,'Jewel Quest 3');ag(115233673,'Dream Day Wedding: Married in Manhattan','/images/games/dream_day_wedding_2/dream_day_wedding_281x46.gif',1000,115266830,'','false','/images/games/dream_day_wedding_2/dream_day_wedding_216x16.gif',false,11323,'/images/games/dream_day_wedding_2/dream_day_wedding_2100x75.jpg','/images/games/dream_day_wedding_2/dream_day_wedding_2179x135.jpg','/images/games/dream_day_wedding_2/dream_day_wedding_2320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_wedding_2130x75.gif','/exe/Dream_Day_Wedding_2-setup.exe?lc=en&ext=Dream_Day_Wedding_2-setup.exe','Plan two types of Manhattan weddings! ','Help two very different couples create their ultimate Manhattan weddings! ','false',false,false,'Dream Day Wedding 2');ag(115235353,'Pyramid Runner','/images/games/pyramid_runner/pyramid_runner81x46.gif',0,115268370,'7f50d650-a0db-43e1-85cb-013ef4016c59','false','/images/games/pyramid_runner/pyramid_runner16x16.gif',false,11323,'/images/games/pyramid_runner/pyramid_runner100x75.jpg','/images/games/pyramid_runner/pyramid_runner179x135.jpg','/images/games/pyramid_runner/pyramid_runner320x240.jpg','false','/images/games/thumbnails_med_2/pyramid_runner130x75.gif','','Discover the world’s hidden treasures!','Get ready to discover the world’s hidden treasures!','true',false,false,'Pyramid Runner OL');ag(115237770,'Arctic Quest 2','/images/games/Arctic_Quest_2/Arctic_Quest_281x46.gif',0,115270913,'5f8739f8-2494-4802-ab20-192c8f850558','false','/images/games/Arctic_Quest_2/Arctic_Quest_216x16.gif',false,11323,'/images/games/Arctic_Quest_2/Arctic_Quest_2100x75.jpg','/images/games/Arctic_Quest_2/Arctic_Quest_2179x135.jpg','/images/games/Arctic_Quest_2/Arctic_Quest_2320x240.jpg','false','/images/games/thumbnails_med_2/Arctic_Quest_2130x75.gif','','Save creatures from an icy prison! ','Bring exotic creatures back to life by solving 100 inlay puzzles! ','true',false,false,'Arctic Quest 2 OL');ag(115238163,'Crystalix','/images/games/crystalix/crystalix81x46.gif',0,115271617,'8ee9fffd-33a6-498c-ac50-a44a554127dc','false','/images/games/crystalix/crystalix16x16.gif',false,11323,'/images/games/crystalix/crystalix100x75.jpg','/images/games/crystalix/crystalix179x135.jpg','/images/games/crystalix/crystalix320x240.jpg','false','/images/games/thumbnails_med_2/crystalix130x75.gif','','Save Fairyland from a comet crash!','Save Fairyland from a comet crash and millions of shattered crystals!','true',false,false,'Crystalix OL');ag(115239890,'Mahjongg Artifacts 2','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_281x46.gif',0,115272703,'d7e8cc1e-9783-4495-a9a0-f758f6ea7c33','false','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_216x16.gif',false,11323,'/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2100x75.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2179x135.jpg','/images/games/mahjongg_artifacts_2/mahjongg_artifacts_2320x240.jpg','false','/images/games/thumbnails_med_2/mahjongg_artifacts_2130x75.gif','','An awesome tile-matching adventure!  ','Gather pearls to purchase special powers in this tile-matching adventure!  ','true',false,false,'Mahjongg Artifacts 2 OL');ag(115240523,'Flower Quest','/images/games/Flower_Quest/Flower_Quest81x46.gif',0,115273243,'ef240bb2-1895-467d-8f8f-df1d7dba6ec5','false','/images/games/Flower_Quest/Flower_Quest16x16.gif',false,11323,'/images/games/Flower_Quest/Flower_Quest100x75.jpg','/images/games/Flower_Quest/Flower_Quest179x135.jpg','/images/games/Flower_Quest/Flower_Quest320x240.jpg','false','/images/games/thumbnails_med_2/Flower_Quest130x75.gif','','Quest to rebuild the flower kingdom!','Connect and collect flowers to unleash the magic inside them!','true',false,false,'Flower Quest OL');ag(115242337,'The Black Knight','/images/games/the_black_knight/the_black_knight81x46.gif',0,115275680,'8b5c0dff-e0d2-4e5b-9210-dcc448cc6194','false','/images/games/the_black_knight/the_black_knight16x16.gif',false,11323,'/images/games/the_black_knight/the_black_knight100x75.jpg','/images/games/the_black_knight/the_black_knight179x135.jpg','/images/games/the_black_knight/the_black_knight320x240.jpg','false','/images/games/thumbnails_med_2/the_black_knight130x75.gif','','Collect gold from peasants!','Collect gold from freeloading peasants!','true',true,true,'The Black Knight OLT1');ag(115246907,'Elf Bowling: Hawaiian Vacation','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation81x46.gif',0,115279140,'','false','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation16x16.gif',false,11323,'/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation100x75.jpg','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation179x135.jpg','/images/games/elf_bowling_hawaiian_vacation/elf_bowling_hawaiian_vacation320x240.jpg','false','/images/games/thumbnails_med_2/elf_bowling_hawaiian_vacation130x75.gif','/exe/Elf_Bowling_Hawaiian_Vacation-setup.exe?lc=en&ext=Elf_Bowling_Hawaiian_Vacation-setup.exe','Bowl with the zaniest characters around! ','Bowl over opponents with dirty tricks like oil slicks! ','false',false,false,'Elf Bowling Hawaiian Vacation');ag(115248650,'Serfs Up','/images/games/serfs_up/serfs_up81x46.gif',0,115281650,'67fd472d-5d3d-46cb-ae10-0f62e5054ba8','false','/images/games/serfs_up/serfs_up16x16.gif',false,11323,'/images/games/serfs_up/serfs_up100x75.jpg','/images/games/serfs_up/serfs_up179x135.jpg','/images/games/serfs_up/serfs_up320x240.jpg','false','/images/games/thumbnails_med_2/serfs_up130x75.gif','','How far will your serfs fly?','Launch the peasants and serfs as far as you can! Play Serf’s Up!','true',true,true,'Serfs Up OLT1');ag(115250583,'Fishdom','/images/games/fishdom/fishdom81x46.gif',0,115283787,'d598d8ba-c279-49a1-a247-88eb11e339b6','false','/images/games/fishdom/fishdom16x16.gif',false,11323,'/images/games/fishdom/fishdom100x75.jpg','/images/games/fishdom/fishdom179x135.jpg','/images/games/fishdom/fishdom320x240.jpg','false','/images/games/thumbnails_med_2/fishdom130x75.gif','','Create your virtual dream aquarium! ','Create a virtual aquarium with exotic fish and attractive ornaments! ','true',true,true,'Fishdom OLT1');ag(115251523,'Rocket’s Red Glare','/images/games/rockets_red_glare/rockets_red_glare81x46.gif',0,115284133,'e8634f5c-0725-413b-a84c-43ee3ddc9f91','false','/images/games/rockets_red_glare/rockets_red_glare16x16.gif',false,11323,'/images/games/rockets_red_glare/rockets_red_glare100x75.jpg','/images/games/rockets_red_glare/rockets_red_glare179x135.jpg','/images/games/rockets_red_glare/rockets_red_glare320x240.jpg','false','/images/games/thumbnails_med_2/rockets_red_glare130x75.gif','','Make Uncle Sam proud!','Help Uncle Sam wow the crowds with fireworks.','true',true,true,'Rocketâ€™s Red Glare OLT1');ag(115254883,'Jewel Miner','/images/games/jewel_miner/jewel_miner81x46.gif',0,115287977,'e382ad82-12bc-454a-b420-fe8039b82c5a','false','/images/games/jewel_miner/jewel_miner16x16.gif',false,11323,'/images/games/jewel_miner/jewel_miner100x75.jpg','/images/games/jewel_miner/jewel_miner179x135.jpg','/images/games/jewel_miner/jewel_miner320x240.jpg','false','/images/games/thumbnails_med_2/jewel_miner130x75.gif','','Mine for precious jewels.','Incredible jewel-matching puzzle action!','true',true,true,'Jewel Miner OLT1');ag(115256437,'Bling Bling Blaster','/images/games/blingblingblaster/blingblingblaster81x46.gif',0,115289813,'f820415d-95d3-48ca-bc43-5f90c91c15fe','false','/images/games/blingblingblaster/blingblingblaster16x16.gif',false,11323,'/images/games/blingblingblaster/blingblingblaster100x75.jpg','/images/games/blingblingblaster/blingblingblaster179x135.jpg','/images/games/blingblingblaster/blingblingblaster320x240.jpg','false','/images/games/thumbnails_med_2/blingblingblaster130x75.gif','','Match treasure and become rich!','Match and create sets of three pieces of treasure!','true',true,true,'Bling Bling Blaster OLT1');ag(115257803,'HangStan Trivia','/images/games/hangstan_trivia/hangstan_trivia81x46.gif',0,115290520,'3c6ad547-9370-4e51-a2dd-bc8e1215d922','false','/images/games/hangstan_trivia/hangstan_trivia16x16.gif',false,11323,'/images/games/hangstan_trivia/hangstan_trivia100x75.jpg','/images/games/hangstan_trivia/hangstan_trivia179x135.jpg','/images/games/hangstan_trivia/hangstan_trivia320x240.jpg','false','/images/games/thumbnails_med_2/hangstan_trivia130x75.gif','','Save Stan the pig!','Help Stan the pig avoid becoming Farmer Ted’s lunch!','true',true,true,'HangStan Trivia OLT1');ag(115258960,'The Princess Bride Game','/images/games/the_princess_bride_game/the_princess_bride_game81x46.gif',0,11529187,'df914a27-5a2e-4c4e-a07d-71a9c9d5245b','false','/images/games/the_princess_bride_game/the_princess_bride_game16x16.gif',false,11323,'/images/games/the_princess_bride_game/the_princess_bride_game100x75.jpg','/images/games/the_princess_bride_game/the_princess_bride_game179x135.jpg','/images/games/the_princess_bride_game/the_princess_bride_game320x240.jpg','false','/images/games/thumbnails_med_2/the_princess_bride_game130x75.gif','','Experience true love and high adventure! ','Help the Princess and her True Love vanquish the evil prince! ','true',false,false,'The Princess Bride Game OL');ag(115260463,'Snowy Treasure Hunter','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter81x46.gif',0,115293713,'94b17bbe-acd1-4de7-a481-d74dfd62d5ed','false','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter16x16.gif',false,11323,'/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter100x75.jpg','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter179x135.jpg','/images/games/Snowy_Treasure_Hunter/Snowy_Treasure_Hunter320x240.jpg','false','/images/games/thumbnails_med_2/Snowy_Treasure_Hunter130x75.gif','','Outsmart evil sea creatures for treasure!','Help Snowy the Bear outwit devious monsters and find treasures!','true',false,false,'Snowy Treasure Hunter OL');ag(115267797,'Fashion Dash','/images/games/fashion_dash/fashion_dash81x46.gif',110012530,115300860,'','false','/images/games/fashion_dash/fashion_dash16x16.gif',false,11323,'/images/games/fashion_dash/fashion_dash100x75.jpg','/images/games/fashion_dash/fashion_dash179x135.jpg','/images/games/fashion_dash/fashion_dash320x240.jpg','false','/images/games/thumbnails_med_2/fashion_dash130x75.gif','/exe/Fashion_Dash-setup.exe?lc=en&ext=Fashion_Dash-setup.exe','Outfit customers with perfectly tailored attire! ','Outfit customers willing to pay big bucks for perfectly tailored attire! ','false',false,false,'Fashion Dash');ag(115268843,'Discovery! A Seek & Find Adventure','/images/games/discovery/discovery81x46.gif',1100710,11530160,'','false','/images/games/discovery/discovery16x16.gif',false,11323,'/images/games/discovery/discovery100x75.jpg','/images/games/discovery/discovery179x135.jpg','/images/games/discovery/discovery320x240.jpg','false','/images/games/thumbnails_med_2/discovery130x75.gif','/exe/Discovery_A_Seek_Find_Adventure-setup.exe?lc=en&ext=Discovery_A_Seek_Find_Adventure-setup.exe','Find hidden objects around the world! ','Uncover 1,000 hidden objects including the jackpot in six international destinations! ','false',false,false,'Discovery A Seek & Find Advent');ag(115270120,'Yummy Drink Factory','/images/games/yummy_drink_factory/yummy_drink_factory81x46.gif',110012530,115303260,'','false','/images/games/yummy_drink_factory/yummy_drink_factory16x16.gif',false,11323,'/images/games/yummy_drink_factory/yummy_drink_factory100x75.jpg','/images/games/yummy_drink_factory/yummy_drink_factory179x135.jpg','/images/games/yummy_drink_factory/yummy_drink_factory320x240.jpg','false','/images/games/thumbnails_med_2/yummy_drink_factory130x75.gif','/exe/Yummy_Drink_Factory-setup.exe?lc=en&ext=Yummy_Drink_Factory-setup.exe','Create drinks for fairytale creatures! ','Create and serve 36 different dessert drinks to fairytale creatures! ','false',false,false,'Yummy Drink Factory');ag(115274630,'The TV Game Show','/images/games/the_tv_game_show/the_tv_game_show81x46.gif',0,115307957,'87219dc1-a057-4311-a343-1b8e83db602c','false','/images/games/the_tv_game_show/the_tv_game_show16x16.gif',false,11323,'/images/games/the_tv_game_show/the_tv_game_show100x75.jpg','/images/games/the_tv_game_show/the_tv_game_show179x135.jpg','/images/games/the_tv_game_show/the_tv_game_show320x240.jpg','false','/images/games/thumbnails_med_2/the_tv_game_show130x75.gif','','Game Show word-finding fun!','Find the words as fast as you can to score big!','true',true,true,'The TV Game Show OLT1');ag(115276917,'Schooled','/images/games/schooled/schooled81x46.gif',0,115309603,'43891eb3-02d1-47bb-bf62-1d344b8c67e4','false','/images/games/schooled/schooled16x16.gif',false,11323,'/images/games/schooled/schooled100x75.jpg','/images/games/schooled/schooled179x135.jpg','/images/games/schooled/schooled320x240.jpg','false','/images/games/thumbnails_med_2/schooled130x75.gif','','A word game without boredom.','Can you handle the competition in a school of fish?','true',false,false,'Schooled OL');ag(115280190,'Saqqarah','/images/games/saqqarah/saqqarah81x46.gif',1007,115313707,'','false','/images/games/saqqarah/saqqarah16x16.gif',false,11323,'/images/games/saqqarah/saqqarah100x75.jpg','/images/games/saqqarah/saqqarah179x135.jpg','/images/games/saqqarah/saqqarah320x240.jpg','false','/images/games/thumbnails_med_2/saqqarah130x75.gif','/exe/Saqqarah-setup.exe?lc=en&ext=Saqqarah-setup.exe','Fulfill an ancient Egyptian prophecy! ','Stop an evil ancient Egyptian god from escaping his tomb! ','false',false,false,'Saqqarah');ag(115281967,'Run N Gun','/images/games/run_n_gun/run_n_gun81x46.gif',0,115314637,'aeb8c8b3-6a53-460a-a6f7-57b337d8c42d','false','/images/games/run_n_gun/run_n_gun16x16.gif',false,11323,'/images/games/run_n_gun/run_n_gun100x75.jpg','/images/games/run_n_gun/run_n_gun179x135.jpg','/images/games/run_n_gun/run_n_gun320x240.jpg','false','/images/games/thumbnails_med_2/run_n_gun130x75.gif','','Lead your team to victory!','Are you ready for some football?','true',true,true,'Run N Gun OLT1');ag(115282457,'Lightning','/images/games/lightning/lightning81x46.gif',0,115315317,'55e5018e-2f82-46c1-b1c8-fb214045acf0','false','/images/games/lightning/lightning16x16.gif',false,11323,'/images/games/lightning/lightning100x75.jpg','/images/games/lightning/lightning179x135.jpg','/images/games/lightning/lightning320x240.jpg','false','/images/games/thumbnails_med_2/lightning130x75.gif','','Are you fast as lightning?','Get rid of all your cards before the computer does.','true',true,true,'Lightning OLT1');ag(115284853,'Big Money','/images/games/BigMoney/BigMoney81x46.gif',0,115317760,'66cbdfeb-bbfd-4311-b3e0-46f901e31669','false','/images/games/BigMoney/BigMoney16x16.gif',false,11323,'/images/games/BigMoney/BigMoney100x75.jpg','/images/games/BigMoney/BigMoney179x135.jpg','/images/games/BigMoney/BigMoney320x240.jpg','false','/images/games/thumbnails_med_2/BigMoney130x75.gif','','Are you worth big money?','Make a mint in this crazy popping game!','true',true,true,'Big Money OLT1');ag(115290153,'Go Go Gourmet: Chef of the Year','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year81x46.gif',1000,115323997,'','false','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year16x16.gif',false,11323,'/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year100x75.jpg','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year179x135.jpg','/images/games/go_go_gourmet_chef_of_the_year/go_go_gourmet_chef_of_the_year320x240.jpg','false','/images/games/thumbnails_med_2/go_go_gourmet_chef_of_the_year130x75.gif','/exe/Go_Go_Gourmet_2-setup.exe?lc=en&ext=Go_Go_Gourmet_2-setup.exe','Compete against top international chefs!','Help Ginger win cooking competitions against the world’s top chefs!','false',false,false,'Go Go Gourmet 2');ag(115295813,'Jewel Quest III','/images/games/jewel_quest_3/jewel_quest_381x46.gif',0,115328673,'34343c31-ebce-4309-8ad6-e41c8808b0b3','false','/images/games/jewel_quest_3/jewel_quest_316x16.gif',false,11323,'/images/games/jewel_quest_3/jewel_quest_3100x75.jpg','/images/games/jewel_quest_3/jewel_quest_3179x135.jpg','/images/games/jewel_quest_3/jewel_quest_3320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_3130x75.gif','','Match jewels to unlock secrets!','Match jewels, unlock secrets and find the fabled Golden Jewel Board!','true',true,true,'Jewel Quest 3 OLT1');ag(115296133,'Glyph 2','/images/games/glyph2/glyph281x46.gif',1007,115329883,'','false','/images/games/glyph2/glyph216x16.gif',false,11323,'/images/games/glyph2/glyph2100x75.jpg','/images/games/glyph2/glyph2179x135.jpg','/images/games/glyph2/glyph2320x240.jpg','false','/images/games/thumbnails_med_2/glyph2130x75.gif','/exe/Glyph_2-setup.exe?lc=en&ext=Glyph_2-setup.exe','Save the dying world of Kuros! ','Save the dying world of Kuros in this mysterious puzzle adventure! ','false',false,false,'Glyph 2');ag(115303133,'The Race','/images/games/the_race/the_race81x46.gif',1100710,115336993,'','false','/images/games/the_race/the_race16x16.gif',false,11323,'/images/games/the_race/the_race100x75.jpg','/images/games/the_race/the_race179x135.jpg','/images/games/the_race/the_race320x240.jpg','false','/images/games/thumbnails_med_2/the_race130x75.gif','/exe/The_Race-setup.exe?lc=en&ext=The_Race-setup.exe','Find hidden object around the world!','Race through 10 countries collecting hidden objects along the way!','false',false,false,'The Race');ag(115310837,'Jojos Fashion Show 2','/images/games/jojos_fashion_show_2/jojos_fashion_show_281x46.gif',110012530,115343523,'','false','/images/games/jojos_fashion_show_2/jojos_fashion_show_216x16.gif',false,11323,'/images/games/jojos_fashion_show_2/jojos_fashion_show_2100x75.jpg','/images/games/jojos_fashion_show_2/jojos_fashion_show_2179x135.jpg','/images/games/jojos_fashion_show_2/jojos_fashion_show_2320x240.jpg','true','/images/games/thumbnails_med_2/jojos_fashion_show_2130x75.gif','/exe/jojos_fashion_show_2-setup.exe?lc=en&ext=jojos_fashion_show_2-setup.exe','Launch a new clothing line!','Launch a new clothing line on runways from L.A. to Berlin!','false',false,false,'Jojos Fashion Show 2');ag(115312823,'Family Flights','/images/games/family_flights/family_flights81x46.gif',110012530,115345637,'','false','/images/games/family_flights/family_flights16x16.gif',false,11323,'/images/games/family_flights/family_flights100x75.jpg','/images/games/family_flights/family_flights179x135.jpg','/images/games/family_flights/family_flights320x240.jpg','false','/images/games/thumbnails_med_2/family_flights130x75.gif','/exe/Family_Flights-setup.exe?lc=en&ext=Family_Flights-setup.exe','Cater to quirky airline passengers!','Cater to the demands of a plane full of quirky passengers!','false',false,false,'Family Flights');ag(115313460,'Enchanted Cavern','/images/games/enchanted_cavern/enchanted_cavern81x46.gif',1007,115346307,'','false','/images/games/enchanted_cavern/enchanted_cavern16x16.gif',false,11323,'/images/games/enchanted_cavern/enchanted_cavern100x75.jpg','/images/games/enchanted_cavern/enchanted_cavern179x135.jpg','/images/games/enchanted_cavern/enchanted_cavern320x240.jpg','false','/images/games/thumbnails_med_2/enchanted_cavern130x75.gif','/exe/enchanted_cavern-setup.exe?lc=en&ext=enchanted_cavern-setup.exe','Match stones inside a cavern!','Match precious stones on a journey through a legendary cavern!','false',false,false,'Enchanted Cavern');ag(115320460,'Turbo Fiesta','/images/games/turbo_fiesta/turbo_fiesta81x46.gif',110012530,115353133,'','false','/images/games/turbo_fiesta/turbo_fiesta16x16.gif',false,11323,'/images/games/turbo_fiesta/turbo_fiesta100x75.jpg','/images/games/turbo_fiesta/turbo_fiesta179x135.jpg','/images/games/turbo_fiesta/turbo_fiesta320x240.jpg','false','/images/games/thumbnails_med_2/turbo_fiesta130x75.gif','/exe/Turbo_Fiesta-setup.exe?lc=en&ext=Turbo_Fiesta-setup.exe','Serve fast food to interplanetary customers!','Serve fast food to interplanetary customers in this astronomical, gastronomical adventure!','false',false,false,'Turbo Fiesta');ag(115323810,'Rainbow Mystery','/images/games/rainbowmystery/rainbowmystery81x46.gif',0,115356327,'bed33235-16ab-488c-bd15-0399bcc7299f','false','/images/games/rainbowmystery/rainbowmystery16x16.gif',false,11323,'/images/games/rainbowmystery/rainbowmystery100x75.jpg','/images/games/rainbowmystery/rainbowmystery179x135.jpg','/images/games/rainbowmystery/rainbowmystery320x240.jpg','false','/images/games/thumbnails_med_2/rainbowmystery130x75.gif','','Restore color to a cursed rainbow!','Break a curse to restore color to the Rainbow World!  ','true',true,true,'Rainbow Mystery OLT 1');ag(115328120,'Hidden Wonders Of The Depths','/images/games/hidden_wonders/hidden_wonders81x46.gif',1100710,115361857,'','false','/images/games/hidden_wonders/hidden_wonders16x16.gif',false,11323,'/images/games/hidden_wonders/hidden_wonders100x75.jpg','/images/games/hidden_wonders/hidden_wonders179x135.jpg','/images/games/hidden_wonders/hidden_wonders320x240.jpg','false','/images/games/thumbnails_med_2/hidden_wonders130x75.gif','/exe/hidden_wonders_of_the_depths-setup.exe?lc=en&ext=hidden_wonders_of_the_depths-setup.exe','A deep-sea match-3 adventure!','Explore underwater realms in this unique match-3 action puzzler!','false',false,false,'Hidden Wonders Of The Depths');ag(115329757,'Jewelleria','/images/games/jewelleria/jewelleria81x46.gif',110012530,115362320,'','false','/images/games/jewelleria/jewelleria16x16.gif',false,11323,'/images/games/jewelleria/jewelleria100x75.jpg','/images/games/jewelleria/jewelleria179x135.jpg','/images/games/jewelleria/jewelleria320x240.jpg','false','/images/games/thumbnails_med_2/jewelleria130x75.gif','/exe/jewelleria-setup.exe?lc=en&ext=jewelleria-setup.exe','Launch a jewelry store empire!','Turn a small family jewelry shop into a mega jewelry center!','false',false,false,'Jewelleria');ag(115334267,'Fashionista','/images/games/fashionista/fashionista81x46.gif',110012530,115367597,'','false','/images/games/fashionista/fashionista16x16.gif',false,11323,'/images/games/fashionista/fashionista100x75.jpg','/images/games/fashionista/fashionista179x135.jpg','/images/games/fashionista/fashionista320x240.jpg','false','/images/games/thumbnails_med_2/fashionista130x75.gif','/exe/fashionista-setup.exe?lc=en&ext=fashionista-setup.exe',' Publish your own fashion magazine!','Influence the fashion world as publisher of a chic magazine!','false',false,false,'Fashionista');ag(115335723,'Jewel Match 2','/images/games/jewel_match_2/jewel_match_281x46.gif',1007,115368130,'','false','/images/games/jewel_match_2/jewel_match_216x16.gif',false,11323,'/images/games/jewel_match_2/jewel_match_2100x75.jpg','/images/games/jewel_match_2/jewel_match_2179x135.jpg','/images/games/jewel_match_2/jewel_match_2320x240.jpg','false','/images/games/thumbnails_med_2/jewel_match_2130x75.gif','/exe/jewel_match_2-setup.exe?lc=en&ext=jewel_match_2-setup.exe','Build a magical kingdom of jewels!','Build majestic castles with photorealistic scenes in this match-three wonderland!','false',false,false,'Jewel Match 2');ag(115336143,'Mysteries of Horus','/images/games/mysteries_of_horus/mysteries_of_horus81x46.gif',0,11536933,'f4d1a267-4e2a-4351-831d-ae74c9409ecd','false','/images/games/mysteries_of_horus/mysteries_of_horus16x16.gif',false,11323,'/images/games/mysteries_of_horus/mysteries_of_horus100x75.jpg','/images/games/mysteries_of_horus/mysteries_of_horus179x135.jpg','/images/games/mysteries_of_horus/mysteries_of_horus320x240.jpg','false','/images/games/thumbnails_med_2/mysteries_of_horus130x75.gif','','Appease Egyptian gods with gifts! ','Appease Egyptian gods with gifts in this engrossing brain-bender! ','true',false,false,'Mysteries of Horus OL');ag(115337343,'Mysterious City: Golden Prague','/images/games/mysterious_city/mysterious_city81x46.gif',1100710,115370297,'','false','/images/games/mysterious_city/mysterious_city16x16.gif',false,11323,'/images/games/mysterious_city/mysterious_city100x75.jpg','/images/games/mysterious_city/mysterious_city179x135.jpg','/images/games/mysterious_city/mysterious_city320x240.jpg','false','/images/games/thumbnails_med_2/mysterious_city130x75.gif','/exe/mysterious_city_golden_prague-setup.exe?lc=en&ext=mysterious_city_golden_prague-setup.exe','Find your professor lost in Prague!','Explore historic Prague and in this hidden object mystery!','false',false,false,'Mysterious City Golden Prague');ag(115348373,'Beach Party Craze','/images/games/beach_party_craze/beach_party_craze81x46.gif',1000,11538193,'','false','/images/games/beach_party_craze/beach_party_craze16x16.gif',false,11323,'/images/games/beach_party_craze/beach_party_craze100x75.jpg','/images/games/beach_party_craze/beach_party_craze179x135.jpg','/images/games/beach_party_craze/beach_party_craze320x240.jpg','false','/images/games/thumbnails_med_2/beach_party_craze130x75.gif','/exe/Beach_Party_Craze-setup.exe?lc=en&ext=Beach_Party_Craze-setup.exe','Manage a swanky beach resort!','Cater to sun-kissed clients at a swanky beach resort!','false',false,false,'Beach Party Craze');ag(115353417,'Diner Dash Seasonal Snack Pack','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack81x46.gif',110012530,115387637,'','false','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack16x16.gif',false,11323,'/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack100x75.jpg','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack179x135.jpg','/images/games/diner_dash_seasonal_snack_pack/diner_dash_seasonal_snack_pack320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_seasonal_snack_pack130x75.gif','/exe/Diner_Dash_Seasonal_Snack_Pack-setup.exe?lc=en&ext=Diner_Dash_Seasonal_Snack_Pack-setup.exe','Enjoy the first five episodes!','Enjoy the first five episodes plus five new restaurants!','false',false,false,'Diner Dash Seasonal Snack Pack');ag(115364873,'Governor of Poker','/images/games/governor_of_poker/governor_of_poker81x46.gif',1004,11539813,'','false','/images/games/governor_of_poker/governor_of_poker16x16.gif',false,11323,'/images/games/governor_of_poker/governor_of_poker100x75.jpg','/images/games/governor_of_poker/governor_of_poker179x135.jpg','/images/games/governor_of_poker/governor_of_poker320x240.jpg','false','/images/games/thumbnails_med_2/governor_of_poker130x75.gif','/exe/governor_of_poker-setup.exe?lc=en&ext=governor_of_poker-setup.exe','Win oodles of cash and property!','Buy fancy houses and cars with your poker tournament winnings!','false',false,false,'Governor of Poker');ag(115365613,'Treasure Masters Inc','/images/games/treasure_masters/treasure_masters81x46.gif',1000,115399507,'','false','/images/games/treasure_masters/treasure_masters16x16.gif',false,11323,'/images/games/treasure_masters/treasure_masters100x75.jpg','/images/games/treasure_masters/treasure_masters179x135.jpg','/images/games/treasure_masters/treasure_masters320x240.jpg','false','/images/games/thumbnails_med_2/treasure_masters130x75.gif','/exe/treasure_masters_inc-setup.exe?lc=en&ext=treasure_masters_inc-setup.exe','Explore the bowels of a lost ship!','Unearth an amazing artifact from the bowels of a lost ship!','false',false,false,'Treasure Masters Inc');ag(115366200,'Carnival Mania','/images/games/carnival_mania/carnival_mania81x46.gif',110012530,11540073,'','false','/images/games/carnival_mania/carnival_mania16x16.gif',false,11323,'/images/games/carnival_mania/carnival_mania100x75.jpg','/images/games/carnival_mania/carnival_mania179x135.jpg','/images/games/carnival_mania/carnival_mania320x240.jpg','false','/images/games/thumbnails_med_2/carnival_mania130x75.gif','/exe/carnival_mania-setup.exe?lc=en&ext=carnival_mania-setup.exe','Restore a run-down amusement park!','Restore an old, run-down amusement park to its former glory!','false',false,false,'Carnival Mania');ag(115369807,'Sunshine Acres','/images/games/sunshine_acres/sunshine_acres81x46.gif',110012530,115403700,'','false','/images/games/sunshine_acres/sunshine_acres16x16.gif',false,11323,'/images/games/sunshine_acres/sunshine_acres100x75.jpg','/images/games/sunshine_acres/sunshine_acres179x135.jpg','/images/games/sunshine_acres/sunshine_acres320x240.jpg','false','/images/games/thumbnails_med_2/sunshine_acres130x75.gif','/exe/sunshine_acres-setup.exe?lc=en&ext=sunshine_acres-setup.exe','Make your living off the land!','Turn a small parcel of land into sprawling farmlands!','false',false,false,'Sunshine Acres');ag(115370650,'World Mosaics','/images/games/world_mosaics/world_mosaics81x46.gif',1007,11540487,'','false','/images/games/world_mosaics/world_mosaics16x16.gif',false,11323,'/images/games/world_mosaics/world_mosaics100x75.jpg','/images/games/world_mosaics/world_mosaics179x135.jpg','/images/games/world_mosaics/world_mosaics320x240.jpg','false','/images/games/thumbnails_med_2/world_mosaics130x75.gif','/exe/world_mosaics-setup.exe?lc=en&ext=world_mosaics-setup.exe','Solve pictographic puzzles from the past!','Solve pictographic puzzles to unravel the mysteries of a lost society!','false',false,false,'World Mosaics');ag(115413980,'Fashion Apprentice','/images/games/fashion_apprentice/fashion_apprentice81x46.gif',1007,115448370,'','false','/images/games/fashion_apprentice/fashion_apprentice16x16.gif',false,11323,'/images/games/fashion_apprentice/fashion_apprentice100x75.jpg','/images/games/fashion_apprentice/fashion_apprentice179x135.jpg','/images/games/fashion_apprentice/fashion_apprentice320x240.jpg','false','/images/games/thumbnails_med_2/fashion_apprentice130x75.gif','/exe/fashion_apprentice-setup.exe?lc=en&ext=fashion_apprentice-setup.exe','Become an internationally-acclaimed fashionista!','Design the latest outfits as an internationally-acclaimed fashionista!','false',false,false,'Fashion Apprentice');ag(115415417,'Magic Encyclopedia First Story','/images/games/magic_encyclopedia/magic_encyclopedia81x46.gif',1000,115450200,'','false','/images/games/magic_encyclopedia/magic_encyclopedia16x16.gif',false,11323,'/images/games/magic_encyclopedia/magic_encyclopedia100x75.jpg','/images/games/magic_encyclopedia/magic_encyclopedia179x135.jpg','/images/games/magic_encyclopedia/magic_encyclopedia320x240.jpg','false','/images/games/thumbnails_med_2/magic_encyclopedia130x75.gif','/exe/magic_encyclopedia_first_story-setup.exe?lc=en&ext=magic_encyclopedia_first_story-setup.exe','Find objects on a magical journey!','Find hidden objects on a journey of magic and wonder!','false',false,false,'Magic Encyclopedia First Story');ag(115416667,'Zenerchi','/images/games/zenerchi/zenerchi81x46.gif',1007,115451480,'','false','/images/games/zenerchi/zenerchi16x16.gif',false,11323,'/images/games/zenerchi/zenerchi100x75.jpg','/images/games/zenerchi/zenerchi179x135.jpg','/images/games/zenerchi/zenerchi320x240.jpg','false','/images/games/thumbnails_med_2/zenerchi130x75.gif','/exe/zenerchi-setup.exe?lc=en&ext=zenerchi-setup.exe','A meditative match-three mind game!','Revitalize your chakras in this meditative match-three mind game!','false',false,false,'Zenerchi');ag(115420647,'4 Elements','/images/games/4_elements/4_elements81x46.gif',1000,115455520,'','false','/images/games/4_elements/4_elements16x16.gif',false,11323,'/images/games/4_elements/4_elements100x75.jpg','/images/games/4_elements/4_elements179x135.jpg','/images/games/4_elements/4_elements320x240.jpg','false','/images/games/thumbnails_med_2/4_elements130x75.gif','/exe/4_elements-setup.exe?lc=en&ext=4_elements-setup.exe','Unlock four ancient books of magic!','Unlock four magical books to restore peace to the kingdom!','false',false,false,'4 Elements');ag(115421903,'Sherlock Holmes Mystery of the Persian Carpet','/images/games/sherlock_holmes/sherlock_holmes81x46.gif',1100710,115456360,'','false','/images/games/sherlock_holmes/sherlock_holmes16x16.gif',false,11323,'/images/games/sherlock_holmes/sherlock_holmes100x75.jpg','/images/games/sherlock_holmes/sherlock_holmes179x135.jpg','/images/games/sherlock_holmes/sherlock_holmes320x240.jpg','false','/images/games/thumbnails_med_2/sherlock_holmes130x75.gif','/exe/sherlock_holmes_persian_carpet-setup.exe?lc=en&ext=sherlock_holmes_persian_carpet-setup.exe','Investigate a murder in Victorian London!','Help Sherlock Holmes solve a dark mystery in Victorian London!','false',false,false,'Sherlock Holmes Mystery of Per');ag(115422263,'OnWords','/images/games/on_words_MP/on_words_MP81x46.gif',0,115457967,'5543091a-8009-4f32-9041-b734986e31b9','true','/images/games/on_words_MP/on_words_MP16x16.gif',false,11323,'/images/games/on_words_MP/on_words_MP100x75.jpg','/images/games/on_words_MP/on_words_MP179x135.jpg','/images/games/on_words_MP/on_words_MP320x240.jpg','false','/images/games/thumbnails_med_2/on_words_MP130x75.gif','','Multiplayer word scramble fun!','Is your vocabulary up to the challenge? Multiplayer word scramble fun! ','true',true,true,'OnWords_MP');ag(115429217,'Alex Trax','/images/games/alex_trax/alex_trax81x46.gif',0,115464547,'1f5c1b1f-3118-47ce-93f8-51d62e90f7ce','false','/images/games/alex_trax/alex_trax16x16.gif',false,11323,'/images/games/alex_trax/alex_trax100x75.jpg','/images/games/alex_trax/alex_trax179x135.jpg','/images/games/alex_trax/alex_trax320x240.jpg','false','/images/games/thumbnails_med_2/alex_trax130x75.gif','','AlexTrax is a beautiful game of cycling adventure in unseen deadly mountains.','AlexTrax is a beautiful game of cycling adventure in unseen deadly mountains.','true',true,true,'Alex Trax OLT1');ag(115430860,'Amazing Adventures: Around The World','/images/games/amazing_adventures_atw/amazing_adventures_atw81x46.gif',1000,115465610,'','false','/images/games/amazing_adventures_atw/amazing_adventures_atw16x16.gif',false,11323,'/images/games/amazing_adventures_atw/amazing_adventures_atw100x75.jpg','/images/games/amazing_adventures_atw/amazing_adventures_atw179x135.jpg','/images/games/amazing_adventures_atw/amazing_adventures_atw320x240.jpg','false','/images/games/thumbnails_med_2/amazing_adventures_atw130x75.gif','/exe/amazing_adventures_around_world-setup.exe?lc=en&ext=amazing_adventures_around_world-setup.exe','Find the world’s most expensive gem!','Explore 25 exotic locations for the most expensive gem ever known!','false',false,false,'Amazing Adventures Around Worl');ag(115431323,'Hawaiian Explorer 2','/images/games/hawaiian_explorer_2/hawaiian_explorer_281x46.gif',1100710,11546690,'','false','/images/games/hawaiian_explorer_2/hawaiian_explorer_216x16.gif',false,11323,'/images/games/hawaiian_explorer_2/hawaiian_explorer_2100x75.jpg','/images/games/hawaiian_explorer_2/hawaiian_explorer_2179x135.jpg','/images/games/hawaiian_explorer_2/hawaiian_explorer_2320x240.jpg','false','/images/games/thumbnails_med_2/hawaiian_explorer_2130x75.gif','/exe/hawaiian_explorer_2-setup.exe?lc=en&ext=hawaiian_explorer_2-setup.exe','Search Hawaii for a lost explorer!','Search Hawaiian temples and caves for a lost maverick explorer!','false',false,false,'Hawaiian Explorer 2');ag(115434810,'Alpha Assault','/images/games/alpha_assault/alpha_assault81x46.gif',0,115469467,'81b4c97e-bec2-45f5-aecb-a2a0fb77c7bd','false','/images/games/alpha_assault/alpha_assault16x16.gif',false,11323,'/images/games/alpha_assault/alpha_assault100x75.jpg','/images/games/alpha_assault/alpha_assault179x135.jpg','/images/games/alpha_assault/alpha_assault320x240.jpg','false','/images/games/thumbnails_med_2/alpha_assault130x75.gif','','An addicting strategy word game.','Stop the evil red tiles from taking over the castle in this addicting strategy word game!','true',true,true,'Alpha Assault OLT1');ag(115437737,'Mystery Stories: Island Of Hope','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope81x46.gif',1000,115472453,'','false','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope16x16.gif',false,11323,'/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope100x75.jpg','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope179x135.jpg','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope320x240.jpg','false','/images/games/thumbnails_med_2/mystery_stories_island_of_hope130x75.gif','/exe/mystery_stories_island_of_hope-setup.exe?lc=en&ext=mystery_stories_island_of_hope-setup.exe','Dispel an ancient Caribbean curse!','Dispel an ancient Caribbean curse in this hidden object caper!','false',false,false,'Mystery Stories Island Of Hope');ag(115438320,'Cinema Tycoon 2: Movie','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania81x46.gif',110012530,115473570,'','false','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania16x16.gif',false,11323,'/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania100x75.jpg','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania179x135.jpg','/images/games/cinema_tycoon_2_movie_mania/cinema_tycoon_2_movie_mania320x240.jpg','false','/images/games/thumbnails_med_2/cinema_tycoon_2_movie_mania130x75.gif','/exe/Cinema_Tycoon_2-setup.exe?lc=en&ext=Cinema_Tycoon_2-setup.exe','Build a profitable cinema business!','Pick box office hits as the owner of a theater chain!','false',false,false,'Cinema Tycoon 2');ag(115440173,'Poker For Dummies®','/images/games/poker_dummies/poker_dummies81x46.gif',1004,115475877,'','false','/images/games/poker_dummies/poker_dummies16x16.gif',false,11323,'/images/games/poker_dummies/poker_dummies100x75.jpg','/images/games/poker_dummies/poker_dummies179x135.jpg','/images/games/poker_dummies/poker_dummies320x240.jpg','false','/images/games/thumbnails_med_2/poker_dummies130x75.gif','/exe/Poker_For_Dummies_REGULAR-setup.exe?lc=en&ext=Poker_For_Dummies_REGULAR-setup.exe','Dummies Poker!','Poker For Dummies® is your ace in the hole.','false',false,false,'Poker For Dummies (Regular)');ag(115441253,'Tri-Peaks 2 Quest for the Ruby Ring','/images/games/tri_peaks_2/tri_peaks_281x46.gif',1004,11547680,'','false','/images/games/tri_peaks_2/tri_peaks_216x16.gif',false,11323,'/images/games/tri_peaks_2/tri_peaks_2100x75.jpg','/images/games/tri_peaks_2/tri_peaks_2179x135.jpg','/images/games/tri_peaks_2/tri_peaks_2320x240.jpg','false','/images/games/thumbnails_med_2/tri_peaks_2130x75.gif','/exe/Tri_Peaks_Solitaire_2_Regular-setup.exe?lc=en&ext=Tri_Peaks_Solitaire_2_Regular-setup.exe','Adventure! Danger! Solitaire!','Tri-Peaks 2: Fast-paced solitaire with treasures!','false',false,false,'Tri Peaks 2 (Regular');ag(115443300,'Cooking Dash','/images/games/cooking_dash/cooking_dash81x46.gif',110012530,11547820,'','false','/images/games/cooking_dash/cooking_dash16x16.gif',false,11323,'/images/games/cooking_dash/cooking_dash100x75.jpg','/images/games/cooking_dash/cooking_dash179x135.jpg','/images/games/cooking_dash/cooking_dash320x240.jpg','false','/images/games/thumbnails_med_2/cooking_dash130x75.gif','/exe/cooking_dash-setup.exe?lc=en&ext=cooking_dash-setup.exe','Join Flo on a TV cooking show!','Join Flo as she guest stars on a TV cooking show!','false',false,false,'Cooking Dash');ag(115450600,'Slingo Supreme','/images/games/slingo_supreme/slingo_supreme81x46.gif',1004,115485413,'','false','/images/games/slingo_supreme/slingo_supreme16x16.gif',false,11323,'/images/games/slingo_supreme/slingo_supreme100x75.jpg','/images/games/slingo_supreme/slingo_supreme179x135.jpg','/images/games/slingo_supreme/slingo_supreme320x240.jpg','false','/images/games/thumbnails_med_2/slingo_supreme130x75.gif','/exe/slingo_supreme-setup.exe?lc=en&ext=slingo_supreme-setup.exe','Create 16,000 different Slingo games!','Unlock all-new power-ups to create 16,000 different Slingo games!','false',false,false,'Slingo Supreme');ag(115451300,'Wild West Quest','/images/games/wild_west_quest/wild_west_quest81x46.gif',1007,115486143,'','false','/images/games/wild_west_quest/wild_west_quest16x16.gif',false,11323,'/images/games/wild_west_quest/wild_west_quest100x75.jpg','/images/games/wild_west_quest/wild_west_quest179x135.jpg','/images/games/wild_west_quest/wild_west_quest320x240.jpg','false','/images/games/thumbnails_med_2/wild_west_quest130x75.gif','/exe/wild_west_quest-setup.exe?lc=en&ext=wild_west_quest-setup.exe','Save Grandpa Willy from banditos!','Save Grandpa Willy from a gang of wild west banditos!','false',false,false,'Wild West Quest');ag(115453917,'Turbo Spirit','/images/games/turbo_spirit/turbo_spirit81x46.gif',0,115488713,'18853e01-cb09-4c33-aaec-ff0115b66950','false','/images/games/turbo_spirit/turbo_spirit16x16.gif',false,11323,'/images/games/turbo_spirit/turbo_spirit100x75.jpg','/images/games/turbo_spirit/turbo_spirit179x135.jpg','/images/games/turbo_spirit/turbo_spirit320x240.jpg','false','/images/games/thumbnails_med_2/turbo_spirit130x75.gif','','TurboSpirit is an awesome bike racing game.','TurboSpirit is an awesome bike racing game.','true',true,true,'Turbo Spirit OLT1');ag(115455627,'Cake Mania 3','/images/games/cake_mania_3/cake_mania_381x46.gif',110012530,115490283,'','false','/images/games/cake_mania_3/cake_mania_316x16.gif',false,11323,'/images/games/cake_mania_3/cake_mania_3100x75.jpg','/images/games/cake_mania_3/cake_mania_3179x135.jpg','/images/games/cake_mania_3/cake_mania_3320x240.jpg','false','/images/games/thumbnails_med_2/cake_mania_3130x75.gif','/exe/cake_mania_3-setup.exe?lc=en&ext=cake_mania_3-setup.exe','Help Jill return from time travel!','Help Jill travel back from the past before her wedding begins!','false',false,false,'Cake Mania 3');ag(115456843,'Hidden Jewel Adventure','/images/games/hidden_jewel/hidden_jewel81x46.gif',110012530,115491720,'','false','/images/games/hidden_jewel/hidden_jewel16x16.gif',false,11323,'/images/games/hidden_jewel/hidden_jewel100x75.jpg','/images/games/hidden_jewel/hidden_jewel179x135.jpg','/images/games/hidden_jewel/hidden_jewel320x240.jpg','false','/images/games/thumbnails_med_2/hidden_jewel130x75.gif','/exe/hidden_jewel_adventure-setup.exe?lc=en&ext=hidden_jewel_adventure-setup.exe','Find the hidden power jewel!','A mesmerizing mix of match-3 and hidden object gameplay!','false',false,false,'Hidden Jewel Adventure');ag(115458437,'Neverland','/images/games/neverland/neverland81x46.gif',1100710,115493250,'','false','/images/games/neverland/neverland16x16.gif',false,11323,'/images/games/neverland/neverland100x75.jpg','/images/games/neverland/neverland179x135.jpg','/images/games/neverland/neverland320x240.jpg','false','/images/games/thumbnails_med_2/neverland130x75.gif','/exe/neverland-setup.exe?lc=en&ext=neverland-setup.exe','Rediscover your youth and lost toys!','Help Diana rediscover her youth and recover lost toys in Neverland!','false',false,false,'Neverland');ag(115459780,'Mystery of Unicorn Castle','/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle81x46.gif',1000,115494610,'','false','/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle16x16.gif',false,11323,'/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle100x75.jpg','/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle179x135.jpg','/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle320x240.jpg','false','/images/games/thumbnails_med_2/mystery_of_unicorn_castle130x75.gif','/exe/mystery_of_unicorn_castle-setup.exe?lc=en&ext=mystery_of_unicorn_castle-setup.exe','Unravel a castle&rsquo;s centuries-old secrets!','Find hidden objects to unravel centuries-old secrets of a castle!','false',false,false,'Mystery of Unicorn Castle');ag(115462930,'Way To Go! Bowling','/images/games/way_to_go_bowling/way_to_go_bowling81x46.gif',0,115497757,'','false','/images/games/way_to_go_bowling/way_to_go_bowling16x16.gif',false,11323,'/images/games/way_to_go_bowling/way_to_go_bowling100x75.jpg','/images/games/way_to_go_bowling/way_to_go_bowling179x135.jpg','/images/games/way_to_go_bowling/way_to_go_bowling320x240.jpg','false','/images/games/thumbnails_med_2/way_to_go_bowling130x75.gif','/exe/way_to_go_bowling-setup.exe?lc=en&ext=way_to_go_bowling-setup.exe','Realistic 3D bowling!','Make your mark at the new 3D lanes!','false',false,false,'Way To Go Bowling Regular');ag(115469933,'Scrapbook Paige','/images/games/scrapbook_paige/scrapbook_paige81x46.gif',1100710,115504700,'','false','/images/games/scrapbook_paige/scrapbook_paige16x16.gif',false,11323,'/images/games/scrapbook_paige/scrapbook_paige100x75.jpg','/images/games/scrapbook_paige/scrapbook_paige179x135.jpg','/images/games/scrapbook_paige/scrapbook_paige320x240.jpg','false','/images/games/thumbnails_med_2/scrapbook_paige130x75.gif','/exe/scrapbook_paige-setup.exe?lc=en&ext=scrapbook_paige-setup.exe','Design scrapbook pages for customers!','Find items that will give your scrapbooks that extra-personal touch!','false',false,false,'Scrapbook Paige');ag(115473733,'Patchworkz!','/images/games/patchworkz/patchworkz81x46.gif',0,115508293,'9232f0e8-66e4-4130-81fb-c855f4baecc9','false','/images/games/patchworkz/patchworkz16x16.gif',false,11323,'/images/games/patchworkz/patchworkz100x75.jpg','/images/games/patchworkz/patchworkz179x135.jpg','/images/games/patchworkz/patchworkz320x240.jpg','false','/images/games/thumbnails_med_2/patchworkz130x75.gif','','Discover new spicy freebie Patchworkz!','Discover new spicy freebie Patchworkz! Make your own patchwork of 250 types, colors and different forms of patches!','true',false,false,'Patchworkz OL');ag(115489243,'Hide and Secret 2 Cliffhunger Castle','/images/games/hide_and_secret_2/hide_and_secret_281x46.gif',110012530,115524963,'','false','/images/games/hide_and_secret_2/hide_and_secret_216x16.gif',false,11323,'/images/games/hide_and_secret_2/hide_and_secret_2100x75.jpg','/images/games/hide_and_secret_2/hide_and_secret_2179x135.jpg','/images/games/hide_and_secret_2/hide_and_secret_2320x240.jpg','false','/images/games/thumbnails_med_2/hide_and_secret_2130x75.gif','/exe/hide_and_secret_2-setup.exe?lc=en&ext=hide_and_secret_2-setup.exe','A Medieval Mystery of Secrets and Suspense!','Search for secrets among hidden objects to solve this medieval mystery!','false',false,false,'Hide and Secret 2');ag(115493360,'Puzzle Hero','/images/games/puzzle_hero/puzzle_hero81x46.gif',1007,115528253,'','false','/images/games/puzzle_hero/puzzle_hero16x16.gif',false,11323,'/images/games/puzzle_hero/puzzle_hero100x75.jpg','/images/games/puzzle_hero/puzzle_hero179x135.jpg','/images/games/puzzle_hero/puzzle_hero320x240.jpg','false','/images/games/thumbnails_med_2/puzzle_hero130x75.gif','/exe/puzzle_hero-setup.exe?lc=en&ext=puzzle_hero-setup.exe','Battle over fifty 3D monsters!','Battle fifty 3D monsters in this thrilling role playing adventure!','false',false,false,'Puzzle Hero');ag(115495490,'10 Days Under the Sea','/images/games/10_days_under_the_sea/10_days_under_the_sea81x46.gif',110012530,115530397,'','false','/images/games/10_days_under_the_sea/10_days_under_the_sea16x16.gif',false,11323,'/images/games/10_days_under_the_sea/10_days_under_the_sea100x75.jpg','/images/games/10_days_under_the_sea/10_days_under_the_sea179x135.jpg','/images/games/10_days_under_the_sea/10_days_under_the_sea320x240.jpg','false','/images/games/thumbnails_med_2/10_days_under_the_sea130x75.gif','/exe/10_days_under_the_sea-setup.exe?lc=en&ext=10_days_under_the_sea-setup.exe','Find objects under the sea!','Find hidden objects to help Little Carrie recapture her spirit!','false',false,false,'10 Days Under the Sea');ag(115517947,'Anne&rsquo;s Dream World','/images/games/annes_dream_world/annes_dream_world81x46.gif',1007,115552120,'','false','/images/games/annes_dream_world/annes_dream_world16x16.gif',false,11323,'/images/games/annes_dream_world/annes_dream_world100x75.jpg','/images/games/annes_dream_world/annes_dream_world179x135.jpg','/images/games/annes_dream_world/annes_dream_world320x240.jpg','false','/images/games/thumbnails_med_2/annes_dream_world130x75.gif','/exe/annes_dream_world-setup.exe?lc=en&ext=annes_dream_world-setup.exe','Battle jellies in Anne’s dream!','Enter Anne’s dream to help her save her village from jellies!','false',false,false,'Annes Dream World');ag(115518510,'The Hidden Object Show: Season 2','/images/games/the_hidden_object_show_2/the_hidden_object_show_281x46.gif',1100710,115553603,'','false','/images/games/the_hidden_object_show_2/the_hidden_object_show_216x16.gif',false,11323,'/images/games/the_hidden_object_show_2/the_hidden_object_show_2100x75.jpg','/images/games/the_hidden_object_show_2/the_hidden_object_show_2179x135.jpg','/images/games/the_hidden_object_show_2/the_hidden_object_show_2320x240.jpg','false','/images/games/thumbnails_med_2/the_hidden_object_show_2130x75.gif','/exe/the_hidden_object_show_2-setup.exe?lc=en&ext=the_hidden_object_show_2-setup.exe','Test observation skills & win prizes!','Test your skills of observation and win loads of carnival prizes!','false',false,false,'The Hidden Object Show 2');ag(115528390,'Peggle Nights','/images/games/peggle_nights/peggle_nights81x46.gif',110012530,115563203,'','false','/images/games/peggle_nights/peggle_nights16x16.gif',false,11323,'/images/games/peggle_nights/peggle_nights100x75.jpg','/images/games/peggle_nights/peggle_nights179x135.jpg','/images/games/peggle_nights/peggle_nights320x240.jpg','false','/images/games/thumbnails_med_2/peggle_nights130x75.gif','/exe/peggle_nights-setup.exe?lc=en&ext=peggle_nights-setup.exe','Aim, shoot and clear pegs!','Aim, shoot and clear 25 orange pegs with 10 metal balls!','false',false,false,'Peggle Nights');ag(115529330,'Pathways 2','/images/games/pathways_2/pathways_281x46.gif',0,115564157,'2374a2ce-d993-492f-927b-d3b6adcc4dde','false','/images/games/pathways_2/pathways_216x16.gif',false,11323,'/images/games/pathways_2/pathways_2100x75.jpg','/images/games/pathways_2/pathways_2179x135.jpg','/images/games/pathways_2/pathways_2320x240.jpg','false','/images/games/thumbnails_med_2/pathways_2130x75.gif','','Find the path using basic math.','By following the given mathematical rule, try to find the correct path to end the game.','true',true,true,'PathwaysÂ 2 OLT1');ag(115530203,'Samantha Swift and the Hidden Roses of Athena','/images/games/samantha_swift/samantha_swift81x46.gif',1000,115565423,'','false','/images/games/samantha_swift/samantha_swift16x16.gif',false,11323,'/images/games/samantha_swift/samantha_swift100x75.jpg','/images/games/samantha_swift/samantha_swift179x135.jpg','/images/games/samantha_swift/samantha_swift320x240.jpg','false','/images/games/thumbnails_med_2/samantha_swift130x75.gif','/exe/samanth_swift_hidden_roses-setup.exe?lc=en&ext=samanth_swift_hidden_roses-setup.exe','Solve a great archeological mystery!','Solve one of the greatest archeological mysteries of all time!','false',false,false,'Samantha Swift Hidden Roses');ag(115538280,'Matchblox 2: Abram’s Quest','/images/games/matchblox_2/matchblox_281x46.gif',1007,11557313,'','false','/images/games/matchblox_2/matchblox_216x16.gif',false,11323,'/images/games/matchblox_2/matchblox_2100x75.jpg','/images/games/matchblox_2/matchblox_2179x135.jpg','/images/games/matchblox_2/matchblox_2320x240.jpg','false','/images/games/thumbnails_med_2/matchblox_2130x75.gif','/exe/matchblox_2_abrams_quest-setup.exe?lc=en&ext=matchblox_2_abrams_quest-setup.exe','Match blox to unlock secrets!','Match colored blox and solve puzzles to unlock Captain Abram&rsquo;s secrets!','false',false,false,'Matchblox 2 Abrams Quest');ag(115540840,'Dr. Lynch: Grave Secrets','/images/games/dr_lynch_grave_secrets/dr_lynch_grave_secrets81x46.gif',1000,115575667,'','false','/images/games/dr_lynch_grave_secrets/dr_lynch_grave_secrets16x16.gif',false,11323,'/images/games/dr_lynch_grave_secrets/dr_lynch_grave_secrets100x75.jpg','/images/games/dr_lynch_grave_secrets/dr_lynch_grave_secrets179x135.jpg','/images/games/dr_lynch_grave_secrets/dr_lynch_grave_secrets320x240.jpg','false','/images/games/thumbnails_med_2/dr_lynch_grave_secrets130x75.gif','/exe/dr_lynch_grave_secrets-setup.exe?lc=en&ext=dr_lynch_grave_secrets-setup.exe','A paranormal seek-&-find adventure!','A seek-&-find adventure where myth, mystery and skepticism converge!','false',false,false,'Dr Lynch Grave Secrets');ag(115561607,'Anna’s Ice Cream','/images/games/annas_ice_cream/annas_ice_cream81x46.gif',110012530,115596433,'','false','/images/games/annas_ice_cream/annas_ice_cream16x16.gif',false,11323,'/images/games/annas_ice_cream/annas_ice_cream100x75.jpg','/images/games/annas_ice_cream/annas_ice_cream179x135.jpg','/images/games/annas_ice_cream/annas_ice_cream320x240.jpg','false','/images/games/thumbnails_med_2/annas_ice_cream130x75.gif','/exe/annas_ice_cream-setup.exe?lc=en&ext=annas_ice_cream-setup.exe','Run a fast-paced ice cream parlor!','Make and serve delicious ice cream concoctions to demanding customers!','false',false,false,'Annas Ice Cream');ag(115566607,'Jewel Quest Mysteries','/images/games/jewel_quest_mysteries/jewel_quest_mysteries81x46.gif',110012530,115601467,'','false','/images/games/jewel_quest_mysteries/jewel_quest_mysteries16x16.gif',false,11323,'/images/games/jewel_quest_mysteries/jewel_quest_mysteries100x75.jpg','/images/games/jewel_quest_mysteries/jewel_quest_mysteries179x135.jpg','/images/games/jewel_quest_mysteries/jewel_quest_mysteries320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_mysteries130x75.gif','/exe/jewel_quest_mysteries-setup.exe?lc=en&ext=jewel_quest_mysteries-setup.exe','Decode ancient Egyptian mysteries!','Unearth jewels and hidden objects while decoding ancient Egyptian mysteries!','false',false,false,'Jewel Quest Mysteries');ag(115570860,'Mortimer Beckett and the Secrets of Spooky Manor','/images/games/mortimer_beckett_spooky_manor/mortimer_beckett_spooky_manor81x46.gif',1000,115605457,'','false','/images/games/mortimer_beckett_spooky_manor/mortimer_beckett_spooky_manor16x16.gif',false,11323,'/images/games/mortimer_beckett_spooky_manor/mortimer_beckett_spooky_manor100x75.jpg','/images/games/mortimer_beckett_spooky_manor/mortimer_beckett_spooky_manor179x135.jpg','/images/games/mortimer_beckett_spooky_manor/mortimer_beckett_spooky_manor320x240.jpg','false','/images/games/thumbnails_med_2/mortimer_beckett_spooky_manor130x75.gif','/exe/mortimer_beckett_regular-setup.exe?lc=en&ext=mortimer_beckett_regular-setup.exe','Rid Spooky Manor of ghosts!','Solve an eerie mystery and rid Spooky Manor of ghosts!','false',false,false,'Mortimer Beckett Regular');ag(115572357,'Fishco','/images/games/fishco/fishco81x46.gif',110012530,11560713,'','false','/images/games/fishco/fishco16x16.gif',false,11323,'/images/games/fishco/fishco100x75.jpg','/images/games/fishco/fishco179x135.jpg','/images/games/fishco/fishco320x240.jpg','false','/images/games/thumbnails_med_2/fishco130x75.gif','/exe/fischo-setup.exe?lc=en&ext=fischo-setup.exe','Breed, raise and sell fish!','Breed, raise and sell freshwater fish at your aquarium shop!','false',false,false,'Fishco');ag(115576463,'Grave Shift','/images/games/graveshift/graveshift81x46.gif',0,115611323,'281158e5-f8ae-4bd7-8abb-8712a03b9f47','false','/images/games/graveshift/graveshift16x16.gif',false,11323,'/images/games/graveshift/graveshift100x75.jpg','/images/games/graveshift/graveshift179x135.jpg','/images/games/graveshift/graveshift320x240.jpg','false','/images/games/thumbnails_med_2/graveshift130x75.gif','','Puzzle adventure with Sokoban twist.','Help Arimose through this puzzle adventure with a Sokoban twist.','true',true,true,'Graveshift OLT1');ag(115581157,'Vanilla and Chocolate','/images/games/vanilla_and_chocolate/vanilla_and_chocolate81x46.gif',110012530,115616860,'','false','/images/games/vanilla_and_chocolate/vanilla_and_chocolate16x16.gif',false,11323,'/images/games/vanilla_and_chocolate/vanilla_and_chocolate100x75.jpg','/images/games/vanilla_and_chocolate/vanilla_and_chocolate179x135.jpg','/images/games/vanilla_and_chocolate/vanilla_and_chocolate320x240.jpg','false','/images/games/thumbnails_med_2/vanilla_and_chocolate130x75.gif','/exe/vanilla_and_chocolate-setup.exe?lc=en&ext=vanilla_and_chocolate-setup.exe','Build an ice cream empire!','Build an ice cream empire in this innovative business simulation game!','false',false,false,'Vanilla and Chocolate');ag(115586140,'Baseball','/images/games/baseball/baseball81x46.gif',0,115621970,'76deadbe-7018-413e-b2b0-7d043cd49acf','false','/images/games/baseball/baseball16x16.gif',false,11323,'/images/games/baseball/baseball100x75.jpg','/images/games/baseball/baseball179x135.jpg','/images/games/baseball/baseball320x240.jpg','false','/images/games/thumbnails_med_2/baseball130x75.gif','','Play Baseball here! Batter Up!','Play Baseball! Play Arcade, or a special ‘Bottom of the Ninth’ mode! Batter Up!','true',false,false,'Baseball OL');ag(115587213,'Alice Greenfingers 2','/images/games/alice_greenfingers2/alice_greenfingers281x46.gif',1000,115622760,'','false','/images/games/alice_greenfingers2/alice_greenfingers216x16.gif',false,11323,'/images/games/alice_greenfingers2/alice_greenfingers2100x75.jpg','/images/games/alice_greenfingers2/alice_greenfingers2179x135.jpg','/images/games/alice_greenfingers2/alice_greenfingers2320x240.jpg','false','/images/games/thumbnails_med_2/alice_greenfingers2130x75.gif','/exe/alice_greenfingers_2-setup.exe?lc=en&ext=alice_greenfingers_2-setup.exe','Revitalize an old neglected farm!','Revitalize Uncle Berry’s neglected farm in this challenging sim game!','false',false,false,'Alice Greenfingers 2');ag(115590363,'Treasures of Mystery Island','/images/games/treasures_of_mystery_island/treasures_of_mystery_island81x46.gif',1000,115625257,'','false','/images/games/treasures_of_mystery_island/treasures_of_mystery_island16x16.gif',false,11323,'/images/games/treasures_of_mystery_island/treasures_of_mystery_island100x75.jpg','/images/games/treasures_of_mystery_island/treasures_of_mystery_island179x135.jpg','/images/games/treasures_of_mystery_island/treasures_of_mystery_island320x240.jpg','false','/images/games/thumbnails_med_2/treasures_of_mystery_island130x75.gif','/exe/treasures_of_mystery_island-setup.exe?lc=en&ext=treasures_of_mystery_island-setup.exe','Escape from an uncharted island!','Find and assemble hidden objects to escape from an uncharted island!','false',false,false,'Treasures of Mystery Island');ag(115600480,'Bejeweled Twist','/images/games/bejeweled_twist/bejeweled_twist81x46.gif',1000,115635853,'','false','/images/games/bejeweled_twist/bejeweled_twist16x16.gif',false,11323,'/images/games/bejeweled_twist/bejeweled_twist100x75.jpg','/images/games/bejeweled_twist/bejeweled_twist179x135.jpg','/images/games/bejeweled_twist/bejeweled_twist320x240.jpg','false','/images/games/thumbnails_med_2/bejeweled_twist130x75.gif','/exe/bejeweled_twist-setup.exe?lc=en&ext=bejeweled_twist-setup.exe','Spin, match and explode!','Spin high-voltage gems to make matches and form electrifying combos!','false',false,false,'Bejeweled Twist');ag(115603380,'MouseMaze','/images/games/mousemaze/mousemaze81x46.gif',0,115638863,'a62d2c12-78e1-4108-abda-386ae1956055','false','/images/games/mousemaze/mousemaze16x16.gif',false,11323,'/images/games/mousemaze/mousemaze100x75.jpg','/images/games/mousemaze/mousemaze179x135.jpg','/images/games/mousemaze/mousemaze320x240.jpg','false','/images/games/thumbnails_med_2/mousemaze130x75.gif','','MouseMaze is a creative game of mechanic fantasy!','MouseMaze is a creative game of mechanic fantasy!','true',true,true,'Mousemaze OLT1');ag(115604730,'Operation Big Bang','/images/games/operation_big_bang/operation_big_bang81x46.gif',0,115639527,'f1fffd19-93b8-475c-bc81-9d97072d9057','false','/images/games/operation_big_bang/operation_big_bang16x16.gif',false,11323,'/images/games/operation_big_bang/operation_big_bang100x75.jpg','/images/games/operation_big_bang/operation_big_bang179x135.jpg','/images/games/operation_big_bang/operation_big_bang320x240.jpg','false','/images/games/thumbnails_med_2/operation_big_bang130x75.gif','','Operation Big Bang is a tactical game of creating a right path to make reach the &rsquo;Atom&rsquo; to the next side.','Operation Big Bang is a tactical game of creating a right path to make reach the &rsquo;Atom&rsquo; to the next side.','true',true,true,'Operation Big Bang OLT1');ag(115607753,'Diner Dash: Flo Through Time','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time81x46.gif',110012530,115642300,'','false','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time16x16.gif',false,11323,'/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time100x75.jpg','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time179x135.jpg','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time320x240.jpg','false','/images/games/thumbnails_med_2/diner_dash_flo_through_time130x75.gif','/exe/diner_dash_flo_through_time-setup.exe?lc=en&ext=diner_dash_flo_through_time-setup.exe','Visit diners from eons past!','A faulty microwave sends Flo and the gang back in time!','false',false,false,'Diner Dash Flo Through Time');ag(115613823,'Amazing Finds','/images/games/amazing_finds/amazing_finds81x46.gif',110012530,115648150,'','false','/images/games/amazing_finds/amazing_finds16x16.gif',false,11323,'/images/games/amazing_finds/amazing_finds100x75.jpg','/images/games/amazing_finds/amazing_finds179x135.jpg','/images/games/amazing_finds/amazing_finds320x240.jpg','false','/images/games/thumbnails_med_2/amazing_finds130x75.gif','/exe/amazing_finds-setup.exe?lc=en&ext=amazing_finds-setup.exe','Explore the world’s greatest bazaars!','Explore the world’s greatest bazaars to find eight rare collectables!','false',false,false,'Amazing Finds');ag(115631793,'Between The Worlds','/images/games/between_the_worlds/between_the_worlds81x46.gif',1000,115666637,'','false','/images/games/between_the_worlds/between_the_worlds16x16.gif',false,11323,'/images/games/between_the_worlds/between_the_worlds100x75.jpg','/images/games/between_the_worlds/between_the_worlds179x135.jpg','/images/games/between_the_worlds/between_the_worlds320x240.jpg','false','/images/games/thumbnails_med_2/between_the_worlds130x75.gif','/exe/between_the_worlds-setup.exe?lc=en&ext=between_the_worlds-setup.exe','Halt a cryptic crime spree!','Catch the mastermind behind a crime wave terrorizing a city!','false',false,false,'Between The Worlds');ag(115632457,'The Mushroom Age','/images/games/the_mushroom_age/the_mushroom_age81x46.gif',1000,115667237,'','false','/images/games/the_mushroom_age/the_mushroom_age16x16.gif',false,11323,'/images/games/the_mushroom_age/the_mushroom_age100x75.jpg','/images/games/the_mushroom_age/the_mushroom_age179x135.jpg','/images/games/the_mushroom_age/the_mushroom_age320x240.jpg','false','/images/games/thumbnails_med_2/the_mushroom_age130x75.gif','/exe/the_mushroom_age-setup.exe?lc=en&ext=the_mushroom_age-setup.exe','Race through time to save mankind!','Race through time to save the world from futuristic evil powers!','false',false,false,'The Mushroom Age');ag(115642640,'Way Of The Tangram','/images/games/way_of_the_tangram/way_of_the_tangram81x46.gif',1007,115677623,'','false','/images/games/way_of_the_tangram/way_of_the_tangram16x16.gif',false,11323,'/images/games/way_of_the_tangram/way_of_the_tangram100x75.jpg','/images/games/way_of_the_tangram/way_of_the_tangram179x135.jpg','/images/games/way_of_the_tangram/way_of_the_tangram320x240.jpg','false','/images/games/thumbnails_med_2/way_of_the_tangram130x75.gif','/exe/way_of_the_tangram-setup.exe?lc=en&ext=way_of_the_tangram-setup.exe','Solve an ancient Chinese mystery!','Rebuild ancient Chinese figures and solve a 4,000 year-old mystery!','false',false,false,'Way Of The Tangram');ag(115643683,'Forgotten Riddles: The Moonlight Sonatas','/images/games/forgotten_riddles_the_moonlight/forgotten_riddles_the_moonlight81x46.gif',1100710,115678967,'','false','/images/games/forgotten_riddles_the_moonlight/forgotten_riddles_the_moonlight16x16.gif',false,11323,'/images/games/forgotten_riddles_the_moonlight/forgotten_riddles_the_moonlight100x75.jpg','/images/games/forgotten_riddles_the_moonlight/forgotten_riddles_the_moonlight179x135.jpg','/images/games/forgotten_riddles_the_moonlight/forgotten_riddles_the_moonlight320x240.jpg','false','/images/games/thumbnails_med_2/forgotten_riddles_the_moonlight130x75.gif','/exe/forgotten_riddles_moonlight_sonatas-setup.exe?lc=en&ext=forgotten_riddles_moonlight_sonatas-setup.exe','Discover haunting secrets at the opera!','Search for objects in the chambers of a haunted opera house!','false',false,false,'Forgotten Riddles Moonlight So');ag(115655273,'Daycare Nightmare Mini Monsters','/images/games/daycare_nightmare_mini_monsters/daycare_nightmare_mini_monsters81x46.gif',110127790,115690510,'','false','/images/games/daycare_nightmare_mini_monsters/daycare_nightmare_mini_monsters16x16.gif',false,11323,'/images/games/daycare_nightmare_mini_monsters/daycare_nightmare_mini_monsters100x75.jpg','/images/games/daycare_nightmare_mini_monsters/daycare_nightmare_mini_monsters179x135.jpg','/images/games/daycare_nightmare_mini_monsters/daycare_nightmare_mini_monsters320x240.jpg','false','/images/games/thumbnails_med_2/daycare_nightmare_mini_monsters130x75.gif','/exe/daycare_nightmare_mini_monsters-setup.exe?lc=en&ext=daycare_nightmare_mini_monsters-setup.exe','Care for adorable baby beasties!','Care for adorable baby vampires, dragons and other little beasties!','false',false,false,'Daycare Nightmare Mini Monst');ag(115657437,'Diamond Fever','/images/games/diamond_fever/diamond_fever81x46.gif',0,11569260,'878abfcb-af8c-4015-8c6e-3d5da77ab75b','false','/images/games/diamond_fever/diamond_fever16x16.gif',false,11323,'/images/games/diamond_fever/diamond_fever100x75.jpg','/images/games/diamond_fever/diamond_fever179x135.jpg','/images/games/diamond_fever/diamond_fever320x240.jpg','false','/images/games/thumbnails_med_2/diamond_fever130x75.gif','','Grab the Diamonds Quickly!!!','Grab the Diamonds quickly before you explode.','true',false,false,'Diamond Fever OL');ag(115660753,'Airport Mania: First Flight','/images/games/airport_mania_first_flight/airport_mania_first_flight81x46.gif',0,115695223,'dc57f127-484a-425f-a44a-30cf46d282c3','false','/images/games/airport_mania_first_flight/airport_mania_first_flight16x16.gif',false,11323,'/images/games/airport_mania_first_flight/airport_mania_first_flight100x75.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight179x135.jpg','/images/games/airport_mania_first_flight/airport_mania_first_flight320x240.jpg','false','/images/games/thumbnails_med_2/airport_mania_first_flight130x75.gif','','Manage a busy airport! ','Land planes and avoid delays as the manager of an airport! ','true',false,false,'Airport Mania First Flight OL');ag(115666747,'Interpol 2: Most Wanted','/images/games/interpol_2_most_wanted/interpol_2_most_wanted81x46.gif',1100710,115701340,'','false','/images/games/interpol_2_most_wanted/interpol_2_most_wanted16x16.gif',false,11323,'/images/games/interpol_2_most_wanted/interpol_2_most_wanted100x75.jpg','/images/games/interpol_2_most_wanted/interpol_2_most_wanted179x135.jpg','/images/games/interpol_2_most_wanted/interpol_2_most_wanted320x240.jpg','false','/images/games/thumbnails_med_2/interpol_2_most_wanted130x75.gif','/exe/interpol_2_most_wanted-setup.exe?lc=en&ext=interpol_2_most_wanted-setup.exe','Capture criminals around the world!','Travel around the world to capture Interpol’s most cunning criminals.','false',false,false,'Interpol 2: Most Wanted');ag(115670370,'Atlantis Quest','/images/games/Atlantis_Quest/Atlantis_Quest81x46.gif',0,115705243,'f8f21e8c-37ab-47eb-915e-e145d346b456','false','/images/games/Atlantis_Quest/Atlantis_Quest16x16.gif',false,11323,'/images/games/Atlantis_Quest/Atlantis_Quest100x75.jpg','/images/games/Atlantis_Quest/Atlantis_Quest179x135.jpg','/images/games/Atlantis_Quest/Atlantis_Quest320x240.jpg','false','/images/games/thumbnails_med_2/Atlantis_Quest130x75.gif','/exe/Atlantis_Quest-setup.exe?lc=en&ext=Atlantis_Quest-setup.exe','Search the Mediterranean for Atlantis!','Journey the Mediterranean in search of the lost continent of Atlantis!','true',true,true,'Atlantis Quest OLT1');ag(115704307,'Call Of Atlantis','/images/games/call_of_atlantis/call_of_atlantis81x46.gif',1000,115739840,'','false','/images/games/call_of_atlantis/call_of_atlantis16x16.gif',false,11323,'/images/games/call_of_atlantis/call_of_atlantis100x75.jpg','/images/games/call_of_atlantis/call_of_atlantis179x135.jpg','/images/games/call_of_atlantis/call_of_atlantis320x240.jpg','false','/images/games/thumbnails_med_2/call_of_atlantis130x75.gif','/exe/call_of_atlantis-setup.exe?lc=en&ext=call_of_atlantis-setup.exe','Save the legendary continent of Atlantis!','Acquire the seven crystals of power needed to save Atlantis!','false',false,false,'Call Of Atlantis');ag(115708100,'7 Wonders - Treasures of Seven','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven81x46.gif',0,115743193,'fc19b1bc-dea8-4103-81cc-375474ece279','false','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven16x16.gif',false,11323,'/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven100x75.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven179x135.jpg','/images/games/7_wonders_treasures_of_seven/7_wonders_treasures_of_seven320x240.jpg','false','/images/games/thumbnails_med_2/7_wonders_treasures_of_seven130x75.gif','','Build nine historical structures!','Puzzle your way into the hidden City of the Gods!','true',false,false,'7 Wonders - Treasures of Seven');ag(115722970,'Alabama Smith: Escape from Pompeii','/images/games/alabama_smith/alabama_smith81x46.gif',1000,115757720,'','false','/images/games/alabama_smith/alabama_smith16x16.gif',false,11323,'/images/games/alabama_smith/alabama_smith100x75.jpg','/images/games/alabama_smith/alabama_smith179x135.jpg','/images/games/alabama_smith/alabama_smith320x240.jpg','false','/images/games/thumbnails_med_2/alabama_smith130x75.gif','/exe/alabama_smith_escape_from_pompeii-setup.exe?lc=en&ext=alabama_smith_escape_from_pompeii-setup.exe','Escape from erupting Mount Vesuvius!','Escape from erupting Mount Vesuvius in this puzzler full of intrigue!','false',false,false,'Alabama Smith: Escape from Pom');ag(115723300,'Book of Legends','/images/games/book_of_legends/book_of_legends81x46.gif',1100710,115758190,'','false','/images/games/book_of_legends/book_of_legends16x16.gif',false,11323,'/images/games/book_of_legends/book_of_legends100x75.jpg','/images/games/book_of_legends/book_of_legends179x135.jpg','/images/games/book_of_legends/book_of_legends320x240.jpg','false','/images/games/thumbnails_med_2/book_of_legends130x75.gif','/exe/book_of_legends-setup.exe?lc=en&ext=book_of_legends-setup.exe','Unravel mysteries inside a book! ','Unravel a mystery contained within a long forgotten book!','false',false,false,'Book of Legends');ag(115725340,'My Tribe','/images/games/my_tribe/my_tribe81x46.gif',110012530,115760153,'','false','/images/games/my_tribe/my_tribe16x16.gif',false,11323,'/images/games/my_tribe/my_tribe100x75.jpg','/images/games/my_tribe/my_tribe179x135.jpg','/images/games/my_tribe/my_tribe320x240.jpg','false','/images/games/thumbnails_med_2/my_tribe130x75.gif','/exe/my_tribe-setup.exe?lc=en&ext=my_tribe-setup.exe','Help shipwrecked survivors build new lives!','Help shipwrecked survivors learn new skills and build new lives!','false',false,false,'My Tribe');ag(115727523,'Majestic Forest','/images/games/majestic_forest/majestic_forest81x46.gif',1007,115762553,'','false','/images/games/majestic_forest/majestic_forest16x16.gif',false,11323,'/images/games/majestic_forest/majestic_forest100x75.jpg','/images/games/majestic_forest/majestic_forest179x135.jpg','/images/games/majestic_forest/majestic_forest320x240.jpg','false','/images/games/thumbnails_med_2/majestic_forest130x75.gif','/exe/majestic_forest-setup.exe?lc=en&ext=majestic_forest-setup.exe','Adventure Puzzles in a Magical Forest!','Uncover the secrets of a magical forest on this challenging puzzle adventure!','false',false,false,'Majestic Forest');ag(115730993,'Westward','/images/games/west/west81x46.gif',0,115765837,'cc616b0d-4515-47b8-98be-740d87b2f92f','false','/images/games/west/west16x16.gif',false,11323,'/images/games/west/west100x75.jpg','/images/games/west/west179x135.jpg','/images/games/west/west320x240.jpg','false','/images/games/thumbnails_med_2/west130x75.gif','','Tame frontiers of the wild west!','Build thriving Western towns while chasing down cheats and scoundrels! ','true',false,false,'Westward OL');ag(115731780,'Neptune’s Secret','/images/games/neptunes_secret/neptunes_secret81x46.gif',1007,115766750,'','false','/images/games/neptunes_secret/neptunes_secret16x16.gif',false,11323,'/images/games/neptunes_secret/neptunes_secret100x75.jpg','/images/games/neptunes_secret/neptunes_secret179x135.jpg','/images/games/neptunes_secret/neptunes_secret320x240.jpg','false','/images/games/thumbnails_med_2/neptunes_secret130x75.gif','/exe/neptunes_secret-setup.exe?lc=en&ext=neptunes_secret-setup.exe','Uncover the secrets of Neptune’s demise! ','Help an archaeologist uncover the true story of Neptune’s demise!','false',false,false,'Neptunes Secret');ag(115733830,'Cake Mania 3','/images/games/cake_mania_3/cake_mania_381x46.gif',0,115768597,'f42c8d47-6973-445b-89ed-da2641c13767','false','/images/games/cake_mania_3/cake_mania_316x16.gif',false,11323,'/images/games/cake_mania_3/cake_mania_3100x75.jpg','/images/games/cake_mania_3/cake_mania_3179x135.jpg','/images/games/cake_mania_3/cake_mania_3320x240.jpg','false','/images/games/thumbnails_med_2/cake_mania_3130x75.gif','','Help Jill return from time travel!','Help Jill travel back from the past before her wedding begins!','true',false,false,'Cake Mania 3 OL');ag(115734653,'Cake Mania 2','/images/games/cake_mania_2/cake_mania_281x46.gif',0,115769640,'06f359a7-8aa3-4132-97c1-1f195fb529af','false','/images/games/cake_mania_2/cake_mania_216x16.gif',false,11323,'/images/games/cake_mania_2/cake_mania_2100x75.jpg','/images/games/cake_mania_2/cake_mania_2179x135.jpg','/images/games/cake_mania_2/cake_mania_2320x240.jpg','false','/images/games/thumbnails_med_2/cake_mania_2130x75.gif','','All new bakery adventures! ','Serve scrumptious cakes to quirky customers in Jill’s latest bakery adventure! ','true',false,false,'Cake Mania 2 OL');ag(115735150,'Build-a-lot 3','/images/games/build_a_lot_3/build_a_lot_381x46.gif',110012530,115770900,'','false','/images/games/build_a_lot_3/build_a_lot_316x16.gif',false,11323,'/images/games/build_a_lot_3/build_a_lot_3100x75.jpg','/images/games/build_a_lot_3/build_a_lot_3179x135.jpg','/images/games/build_a_lot_3/build_a_lot_3320x240.jpg','false','/images/games/thumbnails_med_2/build_a_lot_3130x75.gif','/exe/build_a_lot_3-setup.exe?lc=en&ext=build_a_lot_3-setup.exe','Take over the European housing market!','Restore rundown houses and beautify neighborhoods - all for big profits. ','false',false,false,'Build a lot 3');ag(115764397,'Detective Stories: Hollywood','/images/games/detective_stories_hollywood/detective_stories_hollywood81x46.gif',1000,115799320,'','false','/images/games/detective_stories_hollywood/detective_stories_hollywood16x16.gif',false,11323,'/images/games/detective_stories_hollywood/detective_stories_hollywood100x75.jpg','/images/games/detective_stories_hollywood/detective_stories_hollywood179x135.jpg','/images/games/detective_stories_hollywood/detective_stories_hollywood320x240.jpg','false','/images/games/thumbnails_med_2/detective_stories_hollywood130x75.gif','/exe/detective_stories_hollywood-setup.exe?lc=en&ext=detective_stories_hollywood-setup.exe','Find a missing Hollywood starlet!','Find a missing starlet and the only copy of her film!','false',false,false,'Detective Stories Hollywood');ag(115765833,'Mystery Stories: Berlin Nights','/images/games/mystery_stores_berlin_nights/mystery_stores_berlin_nights81x46.gif',1100710,115800677,'','false','/images/games/mystery_stores_berlin_nights/mystery_stores_berlin_nights16x16.gif',false,11323,'/images/games/mystery_stores_berlin_nights/mystery_stores_berlin_nights100x75.jpg','/images/games/mystery_stores_berlin_nights/mystery_stores_berlin_nights179x135.jpg','/images/games/mystery_stores_berlin_nights/mystery_stores_berlin_nights320x240.jpg','false','/images/games/thumbnails_med_2/mystery_stores_berlin_nights130x75.gif','/exe/mystery_stories_berlin_nights-setup.exe?lc=en&ext=mystery_stories_berlin_nights-setup.exe','Uncover a dark WWII conspiracy!','Search Berlin’s underworld for a legendary World War II machine!','false',false,false,'Mystery Stories Berlin Nights');ag(115770580,'PICTUREKA! MUSEUM MAYHEM','/images/games/pictureka/pictureka81x46.gif',1007,115805583,'','false','/images/games/pictureka/pictureka16x16.gif',false,11323,'/images/games/pictureka/pictureka100x75.jpg','/images/games/pictureka/pictureka179x135.jpg','/images/games/pictureka/pictureka320x240.jpg','false','/images/games/thumbnails_med_2/pictureka130x75.gif','/exe/pictureka_regular-setup.exe?lc=en&ext=pictureka_regular-setup.exe','It’s an outrageous, contagious picture hunt!','Seek and find quirky objects to save the museum!','false',false,false,'Pictureka regular');ag(115773753,'Color Cross','/images/games/color_cross/color_cross81x46.gif',1007,115808643,'','false','/images/games/color_cross/color_cross16x16.gif',false,11323,'/images/games/color_cross/color_cross100x75.jpg','/images/games/color_cross/color_cross179x135.jpg','/images/games/color_cross/color_cross320x240.jpg','false','/images/games/thumbnails_med_2/color_cross130x75.gif','/exe/color_cross-setup.exe?lc=en&ext=color_cross-setup.exe','Solve puzzles to reveal pictures!','Use logic, numbers and colors to reveal an amazing picture!','false',false,false,'Color Cross');ag(115774607,'Holly A Christmas Tale Deluxe','/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe81x46.gif',1100710,115809513,'','false','/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe16x16.gif',false,11323,'/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe100x75.jpg','/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe179x135.jpg','/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe320x240.jpg','false','/images/games/thumbnails_med_2/holly_a_christmas_tale_deluxe130x75.gif','/exe/holly_a_christmas_tale_deluxe-setup.exe?lc=en&ext=holly_a_christmas_tale_deluxe-setup.exe','Find hidden toys for Santa!','Help Santa find the items he needs to complete his rounds!','false',false,false,'Holly A Christmas Tale Deluxe');ag(115785620,'Fabulous Finds','/images/games/fabulous_finds/fabulous_finds81x46.gif',1000,115820260,'','false','/images/games/fabulous_finds/fabulous_finds16x16.gif',false,11323,'/images/games/fabulous_finds/fabulous_finds100x75.jpg','/images/games/fabulous_finds/fabulous_finds179x135.jpg','/images/games/fabulous_finds/fabulous_finds320x240.jpg','false','/images/games/thumbnails_med_2/fabulous_finds130x75.gif','/exe/fabulous_finds-setup.exe?lc=en&ext=fabulous_finds-setup.exe','Find, sell, splurge!','Find and sell unique items - then redecorate with the profits!','false',false,false,'Fabulous Finds');ag(115786133,'OnWords','/images/games/on_words_SP/on_words_SP81x46.gif',0,1158217,'1e96e3d0-38c7-489f-984d-4c9325fc2aae','false','/images/games/on_words_SP/on_words_SP16x16.gif',false,11323,'/images/games/on_words_SP/on_words_SP100x75.jpg','/images/games/on_words_SP/on_words_SP179x135.jpg','/images/games/on_words_SP/on_words_SP320x240.jpg','false','/images/games/thumbnails_med_2/on_words_SP130x75.gif','','Online word scramble fun!','Is your vocabulary up to the OnWords challenge?','true',true,true,'OnWords OLT1');ag(116401400,'Burger Island 2','/images/games/burger_island_2/burger_island_281x46.gif',110012530,11643673,'','false','/images/games/burger_island_2/burger_island_216x16.gif',false,11323,'/images/games/burger_island_2/burger_island_2100x75.jpg','/images/games/burger_island_2/burger_island_2179x135.jpg','/images/games/burger_island_2/burger_island_2320x240.jpg','false','/images/games/thumbnails_med_2/burger_island_2130x75.gif','/exe/burger_island_2-setup.exe?lc=en&ext=burger_island_2-setup.exe','Create all-new burger recipes!','Grill up burgers, omelets and nachos for Beach Burger&rsquo;s hungry customers!','false',false,false,'Burger Island 2');ag(116403663,'Hangman The Wild West 2','/images/games/hangman_the_wild_west_2/hangman_the_wild_west_281x46.gif',0,116438943,'','false','/images/games/hangman_the_wild_west_2/hangman_the_wild_west_216x16.gif',false,11323,'/images/games/hangman_the_wild_west_2/hangman_the_wild_west_2100x75.jpg','/images/games/hangman_the_wild_west_2/hangman_the_wild_west_2179x135.jpg','/images/games/hangman_the_wild_west_2/hangman_the_wild_west_2320x240.jpg','false','/images/games/thumbnails_med_2/hangman_the_wild_west_2130x75.gif','/exe/hangman_the_wild_west_2-setup.exe?lc=en&ext=hangman_the_wild_west_2-setup.exe','Saddle up to a Wild New Hangman!','Saddle up to a wild and crazy new Hangman, pardner!','false',false,false,'Hangman The Wild West 2');ag(116439183,'Heartwild Solitaire','/images/games/heartwild_solitaire/heartwild_solitaire81x46.gif',1004,116475950,'','false','/images/games/heartwild_solitaire/heartwild_solitaire16x16.gif',false,11323,'/images/games/heartwild_solitaire/heartwild_solitaire100x75.jpg','/images/games/heartwild_solitaire/heartwild_solitaire179x135.jpg','/images/games/heartwild_solitaire/heartwild_solitaire320x240.jpg','false','/images/games/thumbnails_med_2/heartwild_solitaire130x75.gif','/exe/heartwild_solitaire-setup.exe?lc=en&ext=heartwild_solitaire-setup.exe','Immerse yourself in romance and adventure!','A unique solitaire-style game full of beauty, romance and adventure!','false',false,false,'Heartwild Solitaire');ag(116490390,'Natalie Brooks: The Treasure of the Lost Kingdom','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom81x46.gif',1000,116526123,'','false','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom16x16.gif',false,11323,'/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom100x75.jpg','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom179x135.jpg','/images/games/natalie_brooks_the_lost_kingdom/natalie_brooks_the_lost_kingdom320x240.jpg','false','/images/games/thumbnails_med_2/natalie_brooks_the_lost_kingdom130x75.gif','/exe/natalie_brooks_the_lost_kingdom-setup.exe?lc=en&ext=natalie_brooks_the_lost_kingdom-setup.exe','Save an archaeologist from kidnappers! ','Help Natalie save an archaeologist from kidnappers demanding an ancient map!','false',false,false,'Natalie Brooks The Treasure of');ag(116494690,'Mystery P.I. - The NY Fortune','/images/games/mystery_pi_the_new_york_fortune/mystery_pi_the_new_york_fortune81x46.gif',1000,116530517,'','false','/images/games/mystery_pi_the_new_york_fortune/mystery_pi_the_new_york_fortune16x16.gif',false,11323,'/images/games/mystery_pi_the_new_york_fortune/mystery_pi_the_new_york_fortune100x75.jpg','/images/games/mystery_pi_the_new_york_fortune/mystery_pi_the_new_york_fortune179x135.jpg','/images/games/mystery_pi_the_new_york_fortune/mystery_pi_the_new_york_fortune320x240.jpg','false','/images/games/thumbnails_med_2/mystery_pi_the_new_york_fortune130x75.gif','/exe/mystery_pi_the_new_york_fortune-setup.exe?lc=en&ext=mystery_pi_the_new_york_fortune-setup.exe','Find a fortune in New York!','Search 25 New York City locations to find a billionaire’s fortune!','false',false,false,'Mystery PI NY Fortune');ag(116495170,'Westward® III: Gold Rush','/images/games/westward_3_gold_rush/westward_3_gold_rush81x46.gif',110012530,116531780,'','false','/images/games/westward_3_gold_rush/westward_3_gold_rush16x16.gif',false,11323,'/images/games/westward_3_gold_rush/westward_3_gold_rush100x75.jpg','/images/games/westward_3_gold_rush/westward_3_gold_rush179x135.jpg','/images/games/westward_3_gold_rush/westward_3_gold_rush320x240.jpg','false','/images/games/thumbnails_med_2/westward_3_gold_rush130x75.gif','/exe/westward_3_gold_rush-setup.exe?lc=en&ext=westward_3_gold_rush-setup.exe','Stake your claim in the wilderness!','Build and defend a growing settlement in the Northern California wilderness!','false',false,false,'Westward 3 Gold Rush');ag(116505387,'Adventure Chronicles: The Search for Lost Treasure','/images/games/adventure_chronicles_tsflt/adventure_chronicles_tsflt81x46.gif',1000,116541200,'','false','/images/games/adventure_chronicles_tsflt/adventure_chronicles_tsflt16x16.gif',false,11323,'/images/games/adventure_chronicles_tsflt/adventure_chronicles_tsflt100x75.jpg','/images/games/adventure_chronicles_tsflt/adventure_chronicles_tsflt179x135.jpg','/images/games/adventure_chronicles_tsflt/adventure_chronicles_tsflt320x240.jpg','false','/images/games/thumbnails_med_2/adventure_chronicles_tsflt130x75.gif','/exe/adventure_chronicles-setup.exe?lc=en&ext=adventure_chronicles-setup.exe','Search for Legendary Hidden Treasures!','Travel the world in search of history&rsquo;s most legendary hidden treasures!','false',false,false,'Adventure Chronicles The Searc');ag(116506490,'Lost In Reefs','/images/games/lost_in_reefs/lost_in_reefs81x46.gif',110012530,116542363,'','false','/images/games/lost_in_reefs/lost_in_reefs16x16.gif',false,11323,'/images/games/lost_in_reefs/lost_in_reefs100x75.jpg','/images/games/lost_in_reefs/lost_in_reefs179x135.jpg','/images/games/lost_in_reefs/lost_in_reefs320x240.jpg','false','/images/games/thumbnails_med_2/lost_in_reefs130x75.gif','/exe/lost_in_reefs-setup.exe?lc=en&ext=lost_in_reefs-setup.exe','Explore ancient deep-sea shipwrecks!','Explore ancient shipwrecks and underwater mysteries in this match-3 puzzler!','false',false,false,'Lost In Reefs');ag(116507277,'Miracles','/images/games/miracles/miracles81x46.gif',110012530,116543167,'','false','/images/games/miracles/miracles16x16.gif',false,11323,'/images/games/miracles/miracles100x75.jpg','/images/games/miracles/miracles179x135.jpg','/images/games/miracles/miracles320x240.jpg','false','/images/games/thumbnails_med_2/miracles130x75.gif','/exe/miracles-setup.exe?lc=en&ext=miracles-setup.exe','Grant Wishes and Seek True Love!','Help outcast sorceress Aliona grant wishes and seek her true love!','false',false,false,'Miracles');ag(116510433,'Orchard','/images/games/orchard/orchard81x46.gif',110012530,116546290,'','false','/images/games/orchard/orchard16x16.gif',false,11323,'/images/games/orchard/orchard100x75.jpg','/images/games/orchard/orchard179x135.jpg','/images/games/orchard/orchard320x240.jpg','false','/images/games/thumbnails_med_2/orchard130x75.gif','/exe/orchard-setup.exe?lc=en&ext=orchard-setup.exe','Run a fruitful family farm!','Harvest crops and expand business as you run a fruitful family farm!','false',false,false,'Orchard');ag(116511547,'TonkyPonky','/images/games/tonkyponky/tonkyponky81x46.gif',110012530,116547423,'','false','/images/games/tonkyponky/tonkyponky16x16.gif',false,11323,'/images/games/tonkyponky/tonkyponky100x75.jpg','/images/games/tonkyponky/tonkyponky179x135.jpg','/images/games/tonkyponky/tonkyponky320x240.jpg','false','/images/games/thumbnails_med_2/tonkyponky130x75.gif','/exe/tonkyponky-setup.exe?lc=en&ext=tonkyponky-setup.exe','Monkey Around in a Tropical Paradise!','Help this mischievous monkey clear sea balls from his tropical paradise!','false',false,false,'TonkyPonky');ag(116512480,'Burger Island 2','/images/games/burger_island_2/burger_island_281x46.gif',0,116548277,'fa63ef56-1891-48e5-8487-11301d25d6fa','false','/images/games/burger_island_2/burger_island_216x16.gif',false,11323,'/images/games/burger_island_2/burger_island_2100x75.jpg','/images/games/burger_island_2/burger_island_2179x135.jpg','/images/games/burger_island_2/burger_island_2320x240.jpg','false','/images/games/thumbnails_med_2/burger_island_2130x75.gif','','Create all-new burger recipes!','Grill up burgers, omelets and nachos for Beach Burger’s hungry customers!','true',false,false,'Burger Island 2 OL');ag(116513237,'Ancient Quest Pack','/images/games/bundle_luxor_7wonders/bundle_luxor_7wonders81x46.gif',1007,116549893,'','false','/images/games/bundle_luxor_7wonders/bundle_luxor_7wonders16x16.gif',false,11323,'/images/games/bundle_luxor_7wonders/bundle_luxor_7wonders100x75.jpg','/images/games/bundle_luxor_7wonders/bundle_luxor_7wonders179x135.jpg','/images/games/bundle_luxor_7wonders/bundle_luxor_7wonders320x240.jpg','false','/images/games/thumbnails_med_2/bundle_luxor_7wonders130x75.gif','/exe/bundle_luxor_7wonders-setup.exe?lc=en&ext=bundle_luxor_7wonders-setup.exe','Epic Adventure Duo: 2 Games!','Game Duo of Epic Proportions <br> Get 2 great games for 1 low price!','false',false,false,'Ancient Quest Pack BUNDLE');ag(116515247,'Nightshift Legacy','/images/games/nightshift_legacy/nightshift_legacy81x46.gif',1100710,11655190,'','false','/images/games/nightshift_legacy/nightshift_legacy16x16.gif',false,11323,'/images/games/nightshift_legacy/nightshift_legacy100x75.jpg','/images/games/nightshift_legacy/nightshift_legacy179x135.jpg','/images/games/nightshift_legacy/nightshift_legacy320x240.jpg','false','/images/games/thumbnails_med_2/nightshift_legacy130x75.gif','/exe/nightshift_legacy-setup.exe?lc=en&ext=nightshift_legacy-setup.exe','Unlock the Mystery of Jaguar’s Eye!','Seek hidden truths and ancient artifacts – unlock the mystery of Jaguar’s Eye!','false',false,false,'Nightshift Legacy');ag(116517443,'Youda Farmer','/images/games/youda_farmer/youda_farmer81x46.gif',1000,116553257,'','false','/images/games/youda_farmer/youda_farmer16x16.gif',false,11323,'/images/games/youda_farmer/youda_farmer100x75.jpg','/images/games/youda_farmer/youda_farmer179x135.jpg','/images/games/youda_farmer/youda_farmer320x240.jpg','false','/images/games/thumbnails_med_2/youda_farmer130x75.gif','/exe/youda_farmer-setup.exe?lc=en&ext=youda_farmer-setup.exe','Manage a thriving, expansive farm!','Turn a small patch of land into a thriving farm!','false',false,false,'Youda Farmer');ag(116530713,'Strike Ball 3','/images/games/strike_ball_3/strike_ball_381x46.gif',110012530,116566510,'','false','/images/games/strike_ball_3/strike_ball_316x16.gif',false,11323,'/images/games/strike_ball_3/strike_ball_3100x75.jpg','/images/games/strike_ball_3/strike_ball_3179x135.jpg','/images/games/strike_ball_3/strike_ball_3320x240.jpg','false','/images/games/thumbnails_med_2/strike_ball_3130x75.gif','/exe/strike_ball_3-setup.exe?lc=en&ext=strike_ball_3-setup.exe','Explosive 3D Breakout action!','Explosive 3D Breakout action taken to the ultimate level!','false',false,false,'strike ball 3');ag(116553297,'Azkend','/images/games/azkend/azkend81x46.gif',110012530,116589593,'','false','/images/games/azkend/azkend16x16.gif',false,11323,'/images/games/azkend/azkend100x75.jpg','/images/games/azkend/azkend179x135.jpg','/images/games/azkend/azkend320x240.jpg','false','/images/games/thumbnails_med_2/azkend130x75.gif','/exe/azkend-setup.exe?lc=en&ext=azkend-setup.exe','Return of the Relic!','Return the relic to the Temple of Time to lift the curse!','false',false,false,'Azkend');ag(116555140,'Farm Frenzy Pizza Party','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party81x46.gif',1000,116591890,'','false','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party16x16.gif',false,11323,'/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party100x75.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party179x135.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_pizza_party130x75.gif','/exe/farm_frenzy_pizza_party-setup.exe?lc=en&ext=farm_frenzy_pizza_party-setup.exe','Prepare a farm-fresh, deep dish delivery!','Return to the fast-paced farm to crank out fresh and delicious pizza pies!','false',false,false,'Farm Frenzy Pizza Party');ag(116556650,'Hidden World of Art','/images/games/hidden_world_of_art/hidden_world_of_art81x46.gif',1000,116592430,'','false','/images/games/hidden_world_of_art/hidden_world_of_art16x16.gif',false,11323,'/images/games/hidden_world_of_art/hidden_world_of_art100x75.jpg','/images/games/hidden_world_of_art/hidden_world_of_art179x135.jpg','/images/games/hidden_world_of_art/hidden_world_of_art320x240.jpg','false','/images/games/thumbnails_med_2/hidden_world_of_art130x75.gif','/exe/hidden_world_of_art-setup.exe?lc=en&ext=hidden_world_of_art-setup.exe','Gain fame in art restoration!','Help Lana gain fame and fortune with masterful art restoration!','false',false,false,'Hidden World of Art');ag(116561533,'Women’s Murder Club: A Darker Shade of Grey','/images/games/wmc2/wmc281x46.gif',1000,116597283,'','false','/images/games/wmc2/wmc216x16.gif',false,11323,'/images/games/wmc2/wmc2100x75.jpg','/images/games/wmc2/wmc2179x135.jpg','/images/games/wmc2/wmc2320x240.jpg','false','/images/games/thumbnails_med_2/wmc2130x75.gif','/exe/womens_murder_club_2_network-setup.exe?lc=en&ext=womens_murder_club_2_network-setup.exe','All new mystery, plus a FREE sneak preview!','Reveal the true killer! Plus a FREE sneak preview!','false',false,false,'Womens Murder Club 2 BONUS');ag(116562340,'Farm Frenzy 2','/images/games/farm_frenzy_2/farm_frenzy_281x46.gif',0,116598140,'f399fe97-d2ed-4329-9a8a-435d5d5404b0','false','/images/games/farm_frenzy_2/farm_frenzy_216x16.gif',false,11323,'/images/games/farm_frenzy_2/farm_frenzy_2100x75.jpg','/images/games/farm_frenzy_2/farm_frenzy_2179x135.jpg','/images/games/farm_frenzy_2/farm_frenzy_2320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_2130x75.gif','','Manage a fast-paced farm!','Raise livestock, grow produce and ship your goods off to market!','true',true,false,'Farm Frenzy 2 OL');ag(116564400,'Dreamsdwell Stories','/images/games/dreamsdwell_stories/dreamsdwell_stories81x46.gif',1007,116600273,'','false','/images/games/dreamsdwell_stories/dreamsdwell_stories16x16.gif',false,11323,'/images/games/dreamsdwell_stories/dreamsdwell_stories100x75.jpg','/images/games/dreamsdwell_stories/dreamsdwell_stories179x135.jpg','/images/games/dreamsdwell_stories/dreamsdwell_stories320x240.jpg','false','/images/games/thumbnails_med_2/dreamsdwell_stories130x75.gif','/exe/dreamsdwell_stories-setup.exe?lc=en&ext=dreamsdwell_stories-setup.exe','Build a colorful fantasy town!','Match magical chains and earn precious gems to build a fantasy town!','false',false,false,'Dreamsdwell Stories');ag(116568473,'Bipo: Mystery of the Red Panda','/images/games/bipo_mystery_of_the_red_panda/bipo_mystery_of_the_red_panda81x46.gif',110012530,116604363,'','false','/images/games/bipo_mystery_of_the_red_panda/bipo_mystery_of_the_red_panda16x16.gif',false,11323,'/images/games/bipo_mystery_of_the_red_panda/bipo_mystery_of_the_red_panda100x75.jpg','/images/games/bipo_mystery_of_the_red_panda/bipo_mystery_of_the_red_panda179x135.jpg','/images/games/bipo_mystery_of_the_red_panda/bipo_mystery_of_the_red_panda320x240.jpg','false','/images/games/thumbnails_med_2/bipo_mystery_of_the_red_panda130x75.gif','/exe/bipo_mystery_of_the_red_panda-setup.exe?lc=en&ext=bipo_mystery_of_the_red_panda-setup.exe','Uncover a Haunted Manor&rsquo;s Mystery!','Help Bipo unmask a cloaked bandit and reveal a haunted manor&rsquo;s mystery!','false',false,false,'Bipo Mystery of the Red Panda');ag(116569750,'Tibet Quest','/images/games/tibet_quest/tibet_quest81x46.gif',110012530,116605640,'','false','/images/games/tibet_quest/tibet_quest16x16.gif',false,11323,'/images/games/tibet_quest/tibet_quest100x75.jpg','/images/games/tibet_quest/tibet_quest179x135.jpg','/images/games/tibet_quest/tibet_quest320x240.jpg','false','/images/games/thumbnails_med_2/tibet_quest130x75.gif','/exe/tibet_quest-setup.exe?lc=en&ext=tibet_quest-setup.exe','Unlock the secrets of Shangri La!','Help Jane unlock the mystical and mysterious secrets of Shangri La!','false',false,false,'Tibet Quest');ag(116576470,'Elizabeth Find M.D. Diagnosis Mystery','/images/games/elizabeth_find_md/elizabeth_find_md81x46.gif',1007,116612317,'','false','/images/games/elizabeth_find_md/elizabeth_find_md16x16.gif',false,11323,'/images/games/elizabeth_find_md/elizabeth_find_md100x75.jpg','/images/games/elizabeth_find_md/elizabeth_find_md179x135.jpg','/images/games/elizabeth_find_md/elizabeth_find_md320x240.jpg','false','/images/games/thumbnails_med_2/elizabeth_find_md130x75.gif','/exe/elizabeth_find_md_diagnosis_mystery-setup.exe?lc=en&ext=elizabeth_find_md_diagnosis_mystery-setup.exe','Trauma and Drama - Paging Dr. Find!','Prove your medical mystery prowess amidst the trauma and drama!','false',false,false,'Elizabeth Find MD Diagnosis My');ag(116578733,'Continental Cafe','/images/games/continental_cafe/continental_cafe81x46.gif',1007,116614873,'','false','/images/games/continental_cafe/continental_cafe16x16.gif',false,11323,'/images/games/continental_cafe/continental_cafe100x75.jpg','/images/games/continental_cafe/continental_cafe179x135.jpg','/images/games/continental_cafe/continental_cafe320x240.jpg','false','/images/games/thumbnails_med_2/continental_cafe130x75.gif','/exe/continental_cafe-setup.exe?lc=en&ext=continental_cafe-setup.exe','A Round-the-world Culinary Quest!','Help Laura prove her talents on a round-the-world culinary quest!','false',false,false,'Continental Cafe');ag(116607697,'Lost Realms: Legacy of the Sun Princess','/images/games/lost_realms_sun_princess/lost_realms_sun_princess81x46.gif',1100710,116643947,'','false','/images/games/lost_realms_sun_princess/lost_realms_sun_princess16x16.gif',false,11323,'/images/games/lost_realms_sun_princess/lost_realms_sun_princess100x75.jpg','/images/games/lost_realms_sun_princess/lost_realms_sun_princess179x135.jpg','/images/games/lost_realms_sun_princess/lost_realms_sun_princess320x240.jpg','false','/images/games/thumbnails_med_2/lost_realms_sun_princess130x75.gif','/exe/lost_realms_legacy_of_the_sun_princess-setup.exe?lc=en&ext=lost_realms_legacy_of_the_sun_princess-setup.exe','Incan Adventure of Secrets and Treasures!','Embark on an Incan adventure of ancient secrets and hidden treasure!','false',false,false,'Lost Realms: Legacy of the Sun');ag(116609607,'Undiscovered World: The Incan Sun','/images/games/undiscovered_world_the_incan_sun/undiscovered_world_the_incan_sun81x46.gif',1000,116645437,'','false','/images/games/undiscovered_world_the_incan_sun/undiscovered_world_the_incan_sun16x16.gif',false,11323,'/images/games/undiscovered_world_the_incan_sun/undiscovered_world_the_incan_sun100x75.jpg','/images/games/undiscovered_world_the_incan_sun/undiscovered_world_the_incan_sun179x135.jpg','/images/games/undiscovered_world_the_incan_sun/undiscovered_world_the_incan_sun320x240.jpg','false','/images/games/thumbnails_med_2/undiscovered_world_the_incan_sun130x75.gif','/exe/undiscovered_world_the_incan_sun-setup.exe?lc=en&ext=undiscovered_world_the_incan_sun-setup.exe','Escape from an uncharted island!','Piece together ancient artifacts to escape from an uncharted island!','false',false,false,'Undiscovered World The Incan S');ag(116617137,'Mystery Legends: Sleepy Hollow','/images/games/mystery_legends_sleepy_hollow/mystery_legends_sleepy_hollow81x46.gif',1000,116653497,'','false','/images/games/mystery_legends_sleepy_hollow/mystery_legends_sleepy_hollow16x16.gif',false,11323,'/images/games/mystery_legends_sleepy_hollow/mystery_legends_sleepy_hollow100x75.jpg','/images/games/mystery_legends_sleepy_hollow/mystery_legends_sleepy_hollow179x135.jpg','/images/games/mystery_legends_sleepy_hollow/mystery_legends_sleepy_hollow320x240.jpg','false','/images/games/thumbnails_med_2/mystery_legends_sleepy_hollow130x75.gif','/exe/mystery_legends_sleepy_hollow-setup.exe?lc=en&ext=mystery_legends_sleepy_hollow-setup.exe','Hidden Object Chills and Thrills!','Discover the secrets of Sleepy Hollow in this haunted hidden object game!','false',false,false,'Mystery Legends Sleepy Hollow');ag(116622263,'The Wizard’s Pen','/images/games/the_wizards_pen/the_wizards_pen81x46.gif',1100710,116658687,'','false','/images/games/the_wizards_pen/the_wizards_pen16x16.gif',false,11323,'/images/games/the_wizards_pen/the_wizards_pen100x75.jpg','/images/games/the_wizards_pen/the_wizards_pen179x135.jpg','/images/games/the_wizards_pen/the_wizards_pen320x240.jpg','false','/images/games/thumbnails_med_2/the_wizards_pen130x75.gif','/exe/the_wizards_pen-setup.exe?lc=en&ext=the_wizards_pen-setup.exe','A Spellbinding Search for a Vanished Wizard!','Find magical clues and the vanished wizard in this spellbinding seek-and-find!','false',false,false,'The Wizards Pen');ag(116625153,'PJ Pride Pet Detective Destination Europe','/images/games/pj_pride_destination_europe/pj_pride_destination_europe81x46.gif',1100710,116661420,'','false','/images/games/pj_pride_destination_europe/pj_pride_destination_europe16x16.gif',false,11323,'/images/games/pj_pride_destination_europe/pj_pride_destination_europe100x75.jpg','/images/games/pj_pride_destination_europe/pj_pride_destination_europe179x135.jpg','/images/games/pj_pride_destination_europe/pj_pride_destination_europe320x240.jpg','false','/images/games/thumbnails_med_2/pj_pride_destination_europe130x75.gif','/exe/pj_pride_pet_detective_destination_europe-setup.exe?lc=en&ext=pj_pride_pet_detective_destination_europe-setup.exe','Pet Detective on the prowl!','Detective PJ Pride on the prowl for a town&rsquo;s missing pets!','false',false,false,'PJ Pride Pet Detective Destina');ag(116634327,'Angela Young&rsquo;s Dream Adventure','/images/games/angela_young_dream_adventure/angela_young_dream_adventure81x46.gif',1100710,116670140,'','false','/images/games/angela_young_dream_adventure/angela_young_dream_adventure16x16.gif',false,11323,'/images/games/angela_young_dream_adventure/angela_young_dream_adventure100x75.jpg','/images/games/angela_young_dream_adventure/angela_young_dream_adventure179x135.jpg','/images/games/angela_young_dream_adventure/angela_young_dream_adventure320x240.jpg','false','/images/games/thumbnails_med_2/angela_young_dream_adventure130x75.gif','/exe/angela_young_dream_adventure-setup.exe?lc=en&ext=angela_young_dream_adventure-setup.exe','Unlock the secrets of Angela’s dreams!','Find hidden objects to unlock the secrets of Angela’s dreams!','false',false,false,'Angela Young Dream Adventure');ag(116637740,'Mysterious City Cairo','/images/games/mysterious_city_cairo/mysterious_city_cairo81x46.gif',1007,116673490,'','false','/images/games/mysterious_city_cairo/mysterious_city_cairo16x16.gif',false,11323,'/images/games/mysterious_city_cairo/mysterious_city_cairo100x75.jpg','/images/games/mysterious_city_cairo/mysterious_city_cairo179x135.jpg','/images/games/mysterious_city_cairo/mysterious_city_cairo320x240.jpg','false','/images/games/thumbnails_med_2/mysterious_city_cairo130x75.gif','/exe/mysterious_city_cairo-setup.exe?lc=en&ext=mysterious_city_cairo-setup.exe','Find three stolen Egyptian artifacts!','Uncover clues to find three stolen ancient Egyptian artifacts!','false',false,false,'Mysterious City Cairo');ag(116638253,'Chocolatier: Decadence By Design','/images/games/chocolatier_decadence_by_design/chocolatier_decadence_by_design81x46.gif',1000,116674740,'','false','/images/games/chocolatier_decadence_by_design/chocolatier_decadence_by_design16x16.gif',false,11323,'/images/games/chocolatier_decadence_by_design/chocolatier_decadence_by_design100x75.jpg','/images/games/chocolatier_decadence_by_design/chocolatier_decadence_by_design179x135.jpg','/images/games/chocolatier_decadence_by_design/chocolatier_decadence_by_design320x240.jpg','false','/images/games/thumbnails_med_2/chocolatier_decadence_by_design130x75.gif','/exe/chocolatier_3-setup.exe?lc=en&ext=chocolatier_3-setup.exe','The World is Your Truffle!','An exotic adventure for the ultimate chocolates & create what you crave!','false',false,false,'Chocolatier 3');ag(116648913,'Costume Chaos','/images/games/costume_chaos/costume_chaos81x46.gif',110127790,11668453,'','false','/images/games/costume_chaos/costume_chaos16x16.gif',false,11323,'/images/games/costume_chaos/costume_chaos100x75.jpg','/images/games/costume_chaos/costume_chaos179x135.jpg','/images/games/costume_chaos/costume_chaos320x240.jpg','false','/images/games/thumbnails_med_2/costume_chaos130x75.gif','/exe/costume_chaos-setup.exe?lc=en&ext=costume_chaos-setup.exe','Pirates and Princesses, Kings and Cowboys!','Dress your customers as pirates and princesses, kings and cowboys!','false',false,false,'Costume Chaos');ag(116649747,'Amelie’s Cafe','/images/games/amelies_cafe/amelies_cafe81x46.gif',110127790,116685590,'','false','/images/games/amelies_cafe/amelies_cafe16x16.gif',false,11323,'/images/games/amelies_cafe/amelies_cafe100x75.jpg','/images/games/amelies_cafe/amelies_cafe179x135.jpg','/images/games/amelies_cafe/amelies_cafe320x240.jpg','false','/images/games/thumbnails_med_2/amelies_cafe130x75.gif','/exe/amelies_cafe-setup.exe?lc=en&ext=amelies_cafe-setup.exe','Run the hippest hangout in town!','Satisfy starving customers as you create the hippest hangout in town!','false',false,false,'Amelies Cafe');ag(116652710,'EcoMatch','/images/games/ecomatch/ecomatch81x46.gif',1007,116688710,'','false','/images/games/ecomatch/ecomatch16x16.gif',false,11323,'/images/games/ecomatch/ecomatch100x75.jpg','/images/games/ecomatch/ecomatch179x135.jpg','/images/games/ecomatch/ecomatch320x240.jpg','false','/images/games/thumbnails_med_2/ecomatch130x75.gif','/exe/ecomatch-setup.exe?lc=en&ext=ecomatch-setup.exe','Solve environmental challenges and save Earth!','Tackle matching projects to solve environmental challenges and save Planet Earth!','false',false,false,'EcoMatch');ag(116672750,'World of Goo','/images/games/world_of_goo/world_of_goo81x46.gif',1007,116708453,'','false','/images/games/world_of_goo/world_of_goo16x16.gif',false,11323,'/images/games/world_of_goo/world_of_goo100x75.jpg','/images/games/world_of_goo/world_of_goo179x135.jpg','/images/games/world_of_goo/world_of_goo320x240.jpg','false','/images/games/thumbnails_med_2/world_of_goo130x75.gif','/exe/world_of_goo-setup.exe?lc=en&ext=world_of_goo-setup.exe','Construction puzzles delivering ooze and ahhs!','Inventive, physics-based construction puzzles delivering indie ooze and ahhs!','false',false,false,'World of Goo');ag(116673137,'Nanny Mania 2','/images/games/nanny_mania_2/nanny_mania_281x46.gif',110127790,116709857,'','false','/images/games/nanny_mania_2/nanny_mania_216x16.gif',false,11323,'/images/games/nanny_mania_2/nanny_mania_2100x75.jpg','/images/games/nanny_mania_2/nanny_mania_2179x135.jpg','/images/games/nanny_mania_2/nanny_mania_2320x240.jpg','false','/images/games/thumbnails_med_2/nanny_mania_2130x75.gif','/exe/nanny_mania_2-setup.exe?lc=en&ext=nanny_mania_2-setup.exe','Juggle Play Dates, Pets, and Paparazzi!','Juggle play dates and paparazzi to save a celebrity on the brink of breakdown!','false',false,false,'Nanny Mania 2');ag(116674290,'Ikibago: The Caribbean Jewel','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel81x46.gif',1007,116710133,'','false','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel16x16.gif',false,11323,'/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel100x75.jpg','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel179x135.jpg','/images/games/ikibago_the_caribbean_jewel/ikibago_the_caribbean_jewel320x240.jpg','false','/images/games/thumbnails_med_2/ikibago_the_caribbean_jewel130x75.gif','/exe/ikibago_the_caribbean_jewel-setup.exe?lc=en&ext=ikibago_the_caribbean_jewel-setup.exe','Lost Treasure Action Puzzler!','Discover the long lost treasure of Ikibago in this swashbuckling action puzzler!','false',false,false,'Ikibago The Caribbean Jewel');ag(116675410,'WorldCup Cricket 20-20','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_2081x46.gif',0,116711220,'','false','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_2016x16.gif',false,11323,'/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20100x75.jpg','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20179x135.jpg','/images/games/world_cup_cricket_20_20/world_cup_cricket_20_20320x240.jpg','false','/images/games/thumbnails_med_2/world_cup_cricket_20_20130x75.gif','/exe/worldcup_cricket_20_20-setup.exe?lc=en&ext=worldcup_cricket_20_20-setup.exe','Hit &rsquo;em with your best shot!','Hit &rsquo;em with your best shot during exhilarating 3D matches!','false',false,false,'WorldCup Cricket 20-20');ag(116691280,'Farm Frenzy Pizza Party','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party81x46.gif',0,116727420,'95b02ff4-8968-47ec-8a5c-501096afbf90','false','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party16x16.gif',false,11323,'/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party100x75.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party179x135.jpg','/images/games/farm_frenzy_pizza_party/farm_frenzy_pizza_party320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_pizza_party130x75.gif','','Prepare a farm-fresh, deep dish delivery!','Return to the fast-paced farm to crank out fresh and delicious pizza pies!','true',false,false,'Farm Frenzy Pizza Party OL');ag(116695220,'Fast and Furious','/images/games/fast_and_furious/fast_and_furious81x46.gif',0,116731890,'81ca76c1-a14c-4d70-aac6-a203db77f52c','true','/images/games/fast_and_furious/fast_and_furious16x16.gif',false,11323,'/images/games/fast_and_furious/fast_and_furious100x75.jpg','/images/games/fast_and_furious/fast_and_furious179x135.jpg','/images/games/fast_and_furious/fast_and_furious320x240.jpg','false','/images/games/thumbnails_med_2/fast_and_furious130x75.gif','','Head to head drag racing!','Pick, tweak, and race your car in mulitplayer head-to-head drag racing!','true',true,true,'Fast and Furious MP');ag(116722680,'Alices Magical Mahjong','/images/games/alices_magical_mahjong/alices_magical_mahjong81x46.gif',1006,116758743,'','false','/images/games/alices_magical_mahjong/alices_magical_mahjong16x16.gif',false,11323,'/images/games/alices_magical_mahjong/alices_magical_mahjong100x75.jpg','/images/games/alices_magical_mahjong/alices_magical_mahjong179x135.jpg','/images/games/alices_magical_mahjong/alices_magical_mahjong320x240.jpg','false','/images/games/thumbnails_med_2/alices_magical_mahjong130x75.gif','/exe/alices_magical_mahjong-setup.exe?lc=en&ext=alices_magical_mahjong-setup.exe','Mahjong Mayhem in Alice’s Wild Wonderland!','Fall down the Wonderland rabbit hole into Alice’s mahjong mayhem!','false',false,false,'Alices Magical Mahjong');ag(116723770,'Annabel','/images/games/annabel/annabel81x46.gif',1000,116759487,'','false','/images/games/annabel/annabel16x16.gif',false,11323,'/images/games/annabel/annabel100x75.jpg','/images/games/annabel/annabel179x135.jpg','/images/games/annabel/annabel320x240.jpg','false','/images/games/thumbnails_med_2/annabel130x75.gif','/exe/annabel-setup.exe?lc=en&ext=annabel-setup.exe','Save Princess Annabel’s Beloved Prince!','Journey into 3D ancient Egypt to save Princess Annabel’s beloved prince!','false',false,false,'Annabel');ag(116727460,'Insider Tales: The Stolen Venus','/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus81x46.gif',1000,116763303,'','false','/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus16x16.gif',false,11323,'/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus100x75.jpg','/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus179x135.jpg','/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus320x240.jpg','false','/images/games/thumbnails_med_2/insider_tales_stolen_venus130x75.gif','/exe/insider_tales_the_stolen_venus-setup.exe?lc=en&ext=insider_tales_the_stolen_venus-setup.exe','Uncover the Secrets of a Missing Masterpiece!','Uncover the secrets, suspicion