//::: 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.0156252

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.0312504

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=110445270 00:00:00.1406268
try{
  UA.Game.prototype.PRIME_HANDLER_URL = 'https://secure-proc.betaregion.omiverify.com/UserAccount/Processing/3000/APP/ProcessJAccount.ashx?channel=110445270';
  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=110445270';
  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=110445270';
  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 = 110445270;
}
catch (e) {}
//::: GameCatalog Code 00:00:00.1875024

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.1875024

GameCatalog.CurrentProcessing=function()
{var g=GameCatalog;var ag=g.addGame;var ac=g.addCategory;g.language="en";g.channelCode=110445270;g.baseBuyURL="http://checkout.oberon-media.com/concierge/2500/app/PurchaseOptions.aspx";g.baseGamePageURL="/game.htm";g.baseLobbyURL="game.htm";g.billingCountry="US";ac(110044360,'Multiplayer','MP_Texas Hold em Poker');ag(1104993,'Texas Hold ’em Poker','/images/games/texas_mp/texas_mp81x46.gif',110044360,110500140,'a0c3cfee-3ae5-4ace-8e8b-aa03a6a355e9','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(110127790,'Time Management','Garden Defense');ag(1143087,'Garden Defense','/images/games/garden_defense/garden_defense81x46.gif',110127790,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');ac(110081853,'Online High Scores','Diamond Mine OLT1');ag(1151867,'Diamond Mine','/images/games/diamond_mine/diamond_mine81x46.gif',110081853,115219473,'68eddcd6-2361-4f9a-89f9-61aded43f44b','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');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');ag(1154190,'Photo Mania','/images/games/photo_mania/photo_mania81x46.gif',110127790,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');ac(1003,'Action','Luxor: Quest for the Afterlife');ag(1156157,'Luxor: Quest for the Afterlife','/images/games/luxor_quest_for_the_afterlife/luxor_quest_for_the_afterlife81x46.gif',1003,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(1166500,'Boonka','/images/games/boonka/boonka81x46.gif',110127790,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',1003,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');ac(0,'','Be A King');ag(1174860,'Be a King: Lost Lands','/images/games/be_a_king/be_a_king81x46.gif',0,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');ag(1175830,'Cooking Dash: Diner Town Studios','/images/games/CookingDash_DT_studios/CookingDash_DT_studios81x46.gif',110127790,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!','Embark on a unique musical quest where match-3 & jigsaw collide!','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');ag(1189347,'Faded Reality','/images/games/FadedReality/FadedReality81x46.gif',1100710,119001610,'','false','/images/games/FadedReality/FadedReality16x16.gif',false,11323,'/images/games/FadedReality/FadedReality100x75.jpg','/images/games/FadedReality/FadedReality179x135.jpg','/images/games/FadedReality/FadedReality320x240.jpg','false','/images/games/thumbnails_med_2/FadedReality130x75.gif','/exe/faded_reality_56897458-setup.exe?lc=en&ext=faded_reality_56897458-setup.exe','Solve Monica&rsquo;s Mysterious Deadly Visions!','Solve a deadly mystery seen through Monica&rsquo;s haunting visions!','false',false,false,'Faded Reality');ag(1195397,'Victorian Mysteries:™ Woman in White','/images/games/WomanInWhite/WomanInWhite81x46.gif',1100710,119608490,'','false','/images/games/WomanInWhite/WomanInWhite16x16.gif',false,11323,'/images/games/WomanInWhite/WomanInWhite100x75.jpg','/images/games/WomanInWhite/WomanInWhite179x135.jpg','/images/games/WomanInWhite/WomanInWhite320x240.jpg','false','/images/games/thumbnails_med_2/WomanInWhite130x75.gif','/exe/woman_in_white_45642105-setup.exe?lc=en&ext=woman_in_white_45642105-setup.exe','Unveil this Woman&rsquo;s Dark Secrets!','Search Victorian mansions to unveil the secrets of the woman in white!','false',false,false,'Woman In White');ac(110083820,'New Online Games','Lost Toys Of Santa OL AS3');ag(1196703,'Lost Toys Of Santa','/images/games/LostToysOfSanta/LostToysOfSanta81x46.gif',110083820,119739373,'0837cc85-34d1-471c-aaa2-ba5110f0d836','false','/images/games/LostToysOfSanta/LostToysOfSanta16x16.gif',false,11323,'/images/games/LostToysOfSanta/LostToysOfSanta100x75.jpg','/images/games/LostToysOfSanta/LostToysOfSanta179x135.jpg','/images/games/LostToysOfSanta/LostToysOfSanta320x240.jpg','false','/images/games/thumbnails_med_2/LostToysOfSanta130x75.gif','','Help Santa to collect all of his toys!','Help Santa to collect all of his accidentally scattered toys!','true',false,false,'Lost Toys Of Santa OL AS3');ag(1196890,'On The Fly','/images/games/OnTheFly/OnTheFly81x46.gif',110083820,119758607,'76bd17cb-98c2-41ad-9b44-0fa901257cdc','false','/images/games/OnTheFly/OnTheFly16x16.gif',false,11323,'/images/games/OnTheFly/OnTheFly100x75.jpg','/images/games/OnTheFly/OnTheFly179x135.jpg','/images/games/OnTheFly/OnTheFly320x240.jpg','false','/images/games/thumbnails_med_2/OnTheFly130x75.gif','','Try to return all aircraft!','Return all aircraft safely to the designated landing strips!','true',true,true,'On The Fly OLT1 AS3');ag(1199707,'Delicious - Emily&rsquo;s Childhood Memories','/images/games/DeliciousEmilyChildhoodMemorie/DeliciousEmilyChildhoodMemorie81x46.gif',110127790,120039627,'','false','/images/games/DeliciousEmilyChildhoodMemorie/DeliciousEmilyChildhoodMemorie16x16.gif',false,11323,'/images/games/DeliciousEmilyChildhoodMemorie/DeliciousEmilyChildhoodMemorie100x75.jpg','/images/games/DeliciousEmilyChildhoodMemorie/DeliciousEmilyChildhoodMemorie179x135.jpg','/images/games/DeliciousEmilyChildhoodMemorie/DeliciousEmilyChildhoodMemorie320x240.jpg','false','/images/games/thumbnails_med_2/DeliciousEmilyChildhoodMemorie130x75.gif','/exe/DeliciousEmilysChildhoodMemori_453285204-setup.exe?lc=en&ext=DeliciousEmilysChildhoodMemori_453285204-setup.exe','Heartwarming Journey Through Emily&rsquo;s Youth!','Rekindle the magic of childhood in a heartwarming journey through Emily&rsquo;s youth!','false',false,false,'Delicious Emilys Childhood Mem');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',110127790,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',110044360,110288360,'3ae5015c-5059-40b8-bf8a-1344b353bee9','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,'c29d81db-2e42-4031-a839-e754b894abb3','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',1003,110379990,'1d1dd83e-c3e2-4fba-9029-bb5d7a16cef9','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',1007,110509177,'9f0a8714-328d-452e-a262-f98ebd7b0ad5','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(11109097,'Luxor: Amun Rising','/images/games/luxor_amun/luxor_amun81x46.gif',1003,111103570,'f5700530-4529-414a-8da6-c22d05eaddc7','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,'7e2e8686-d749-45b0-95ec-a513f9f6ffd7','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');ac(1008,'Word','Tumble Bees (Regular)');ag(11120457,'Tumble Bees','/images/games/Tumble_Bees_To_Go/TumbleBeesToGo81x46.gif',1008,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',1007,111249247,'ec312c1a-02ec-46ab-92d5-00d13068cac3','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(11144067,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',1007,11145467,'d6e3faeb-5515-40c8-8d76-decdb4ad1b08','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',1007,111460587,'716d5f2f-b6b9-4621-b521-905cec938ce9','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(11170417,'Luxor 2','/images/games/luxor2/luxor281x46.gif',1003,111719203,'','false','/images/games/luxor2/luxor216x16.gif',false,11323,'/images/games/luxor2/luxor2100x75.jpg','/images/games/luxor2/luxor2179x135.jpg','/images/games/luxor2/luxor2320x240.jpg','false','/images/games/thumbnails_med_2/luxor2130x75.gif','/exe/Luxor_2-setup.exe?lc=en&ext=Luxor_2-setup.exe','The sequel to 2005&rsquo;s #1 game!','Shoot and destroy magical spheres before they reach the Pyramids!','false',false,false,'Luxor 2');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',110127790,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(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',110127790,112330860,'be51d120-aa29-4e78-b4f6-165d824fdfdc','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(11273313,'Mystery of Shark Island','/images/games/MysterySharkIsland/MysterySharkIsland81x46.gif',1100710,112760810,'','false','/images/games/MysterySharkIsland/MysterySharkIsland16x16.gif',false,11323,'/images/games/MysterySharkIsland/MysterySharkIsland100x75.jpg','/images/games/MysterySharkIsland/MysterySharkIsland179x135.jpg','/images/games/MysterySharkIsland/MysterySharkIsland320x240.jpg','false','/images/games/thumbnails_med_2/MysterySharkIsland130x75.gif','/exe/Mystery_of_Shark_Island-setup.exe?lc=en&ext=Mystery_of_Shark_Island-setup.exe','Unlock a lost island’s secret!','Gather shells to unlock the mysteries of a lost civilization! ','false',false,false,'Mystery of Shark Island');ag(11273477,'Amazonia','/images/games/amazonia/amazonia81x46.gif',1007,112761873,'0bc650e5-bf74-46a1-8edf-d302699b277c','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(11313343,'7 Wonders II','/images/games/7_wonders_2/7_wonders_281x46.gif',1007,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');ac(110015873,'Kids','bejeweled2 OL');ag(11339060,'Bejeweled 2 Deluxe','/images/games/bejeweled2/bejeweled2_81x46.gif',110015873,11342127,'30cb8ba2-fb90-46d8-a79a-f65d2f9c0581','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/bejeweled2130x75.gif','/exe/bejeweled2-setup.exe?lc=en&ext=bejeweled2-setup.exe','New explosive gems & special effects!','The gem-swapping puzzler - more addictive than ever!','true',false,false,'bejeweled2 OL');ag(11369860,'Chicken Invaders 2','/images/games/chickeninvaders2/chickeninvaders2_81x46.jpg',110081853,11372927,'835f6280-4ba9-42f6-bd32-e6eb039f492a','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');ac(110125467,'Classics','Farm Frenzy');ag(11386547,'Farm Frenzy','/images/games/farm_frenzy/farm_frenzy81x46.gif',110125467,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');ac(11009827,'Online Strategy','Mr Big Shot OL');ag(11391370,'Mr. Bigshot','/images/games/Mr_Big_Shot/Mr_Big_Shot81x46.gif',11009827,113945837,'f4ba52c6-326b-4b89-b680-1e5b5bff5bce','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',1007,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',1007,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',110127790,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(11465580,'PJ Pride: Pet Detective','/images/games/pj_pride/pj_pride81x46.gif',1003,11468863,'','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','/exe/PJ_Pride-setup.exe?lc=en&ext=PJ_Pride-setup.exe','Track down 90 missing pets! ','Investigate 96 unique scenes in your search for missing pets! ','false',false,false,'Polly Pride Pet Detective');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');ac(110084727,'Online Action','CattlePult OL');ag(11470857,'CattlePult','/images/games/cattlepult/cattlepult81x46.gif',110084727,114741430,'6bcd7e01-7553-4609-bcd8-189bdb21beb5','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');ac(110082753,'Online Top','Amazonia OLT1');ag(11473793,'Amazonia','/images/games/amazonia/amazonia81x46.gif',110082753,11477017,'0bc650e5-bf74-46a1-8edf-d302699b277c','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',1007,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',110082753,114848900,'50876bf7-46cd-42cd-8b42-9f41211aaf18','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(11505173,'Airport Mania: First Flight','/images/games/airport_mania_first_flight/airport_mania_first_flight81x46.gif',110127790,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',110082753,115187350,'02a12f6e-aa9a-4d76-aa3b-7021554684ff','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',110081853,115215103,'546e30f7-61c4-48b6-abf8-e65104ffa1cc','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(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');ac(110085510,'Online Puzzle','Atlantis Adventure OL');ag(11522053,'Atlantis Adventure','/images/games/atlantis_adventure/atlantis_adventure81x46.gif',110085510,115253677,'13620b19-07f8-4fc6-9c8a-c07cce4501aa','false','/images/games/atlantis_adventure/atlantis_adventure16x16.gif',false,11323,'/images/games/atlantis_adventure/atlantis_adventure100x75.jpg','/images/games/atlantis_adventure/atlantis_adventure179x135.jpg','/images/games/atlantis_adventure/atlantis_adventure320x240.jpg','false','/images/games/thumbnails_med_2/atlantis_adventure130x75.gif','','Discover the great mysteries of Atlantis.','Fire orbs into groups of three or more of the same color orbs to unlock and discover the great mysteries of Atlantis.','true',false,false,'Atlantis Adventure OL');ag(11524173,'Turtix','/images/games/turtix/turtix81x46.gif',110084727,115274810,'d069e5be-7132-4227-9a04-aa3e13182a98','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(11526143,'Snowy: Treasure Hunter 2','/images/games/snowytreasurehunter2/snowytreasurehunter281x46.gif',110083820,115294417,'46f99099-b00d-413f-9842-8d479a13cc6c','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',110085510,11531850,'82f4d89f-c55d-446e-95ae-5d051803627e','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',110127790,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',110044360,115352427,'3e36becc-559b-4d09-8468-7911ce6ba1e3','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',110127790,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',110127790,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(11551977,'Parking Dash','/images/games/parking_dash/parking_dash81x46.gif',1003,115554873,'','false','/images/games/parking_dash/parking_dash16x16.gif',false,11323,'/images/games/parking_dash/parking_dash100x75.jpg','/images/games/parking_dash/parking_dash179x135.jpg','/images/games/parking_dash/parking_dash320x240.jpg','false','/images/games/thumbnails_med_2/parking_dash130x75.gif','/exe/parking_dash-setup.exe?lc=en&ext=parking_dash-setup.exe','Park cars behind Flo’s diner!','Park cars behind Flo’s diner in this latest DASH game!','false',false,false,'Parking Dash');ag(11557850,'4 Elements','/images/games/4_elements/4_elements81x46.gif',110083820,115613850,'1669fc0a-c7f9-4aba-affc-6f6a24755bea','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',110127790,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',110127790,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',110081853,116697363,'5256966b-8a0f-4a51-8fe6-a08b70ed13a5','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',11009827,116790847,'fb4d2818-c79a-49f8-bd80-4b4ed353678a','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(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',1004,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(11697630,'Kyobi','/images/games/kyobi/kyobi81x46.gif',110082753,117012670,'38a03393-deb8-48a5-8522-76f7abd3ee16','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',1100710,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(11708390,'Battalion: Nemesis','/images/games/battalion_nemesis/battalion_nemesis81x46.gif',110082753,117119793,'87ec563d-32f1-4ffd-a977-b7f58cc463cb','false','/images/games/battalion_nemesis/battalion_nemesis16x16.gif',false,11323,'/images/games/battalion_nemesis/battalion_nemesis100x75.jpg','/images/games/battalion_nemesis/battalion_nemesis179x135.jpg','/images/games/battalion_nemesis/battalion_nemesis320x240.jpg','false','/images/games/thumbnails_med_2/battalion_nemesis130x75.gif','','Take charge of the Rapid Attack!','Become a commander of the Northern Federation&rsquo;s Rapid Attack!','true',true,true,'Battalion: Nemesis OLT1');ag(11738453,'Burger Shop 2','/images/games/burger_shop_2/burger_shop_281x46.gif',1003,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(11765287,'Burger Time Deluxe','/images/games/burger_time_deluxe/burger_time_deluxe81x46.gif',0,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(11770237,'Triple Layer Cake Mania Bundle - 3 in 1','/images/games/triple_layer_cakemania/triple_layer_cakemania81x46.gif',0,117743617,'','false','/images/games/triple_layer_cakemania/triple_layer_cakemania16x16.gif',false,11323,'/images/games/triple_layer_cakemania/triple_layer_cakemania100x75.jpg','/images/games/triple_layer_cakemania/triple_layer_cakemania179x135.jpg','/images/games/triple_layer_cakemania/triple_layer_cakemania320x240.jpg','false','/images/games/thumbnails_med_2/triple_layer_cakemania130x75.gif','/exe/cake_mania_bundle-setup.exe?lc=en&ext=cake_mania_bundle-setup.exe','Cake Mania 1, 2, and 3 - 3 for the price of 1!','Cake Mania 1, 2, and 3 - 3 sweet treats for the price of 1!','false',false,false,'Cake Mania Bundle');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',110083820,118071887,'80f385bc-acbc-4797-859f-44ceb917c0c3','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(11845020,'Empress of the Deep','/images/games/EmpressOfTheDeep/EmpressOfTheDeep81x46.gif',1100710,118513723,'','false','/images/games/EmpressOfTheDeep/EmpressOfTheDeep16x16.gif',false,11323,'/images/games/EmpressOfTheDeep/EmpressOfTheDeep100x75.jpg','/images/games/EmpressOfTheDeep/EmpressOfTheDeep179x135.jpg','/images/games/EmpressOfTheDeep/EmpressOfTheDeep320x240.jpg','false','/images/games/thumbnails_med_2/EmpressOfTheDeep130x75.gif','/exe/empress_of_the_deep_11728377-setup.exe?lc=en&ext=empress_of_the_deep_11728377-setup.exe','Forbidden Secrets within an Underwater Kingdom!','Explore the temples of a lost, underwater kingdom to uncover forbidden secrets!','false',false,false,'Empress of the Deep');ag(11845927,'Nat Geo Adventure: Lost City of Z','/images/games/NatGeoAdentureLostCityOfZ/NatGeoAdentureLostCityOfZ81x46.gif',110083820,118522980,'8eb9b5c4-0424-4430-a09e-e708ed9ec75b','false','/images/games/NatGeoAdentureLostCityOfZ/NatGeoAdentureLostCityOfZ16x16.gif',false,11323,'/images/games/NatGeoAdentureLostCityOfZ/NatGeoAdentureLostCityOfZ100x75.jpg','/images/games/NatGeoAdentureLostCityOfZ/NatGeoAdentureLostCityOfZ179x135.jpg','/images/games/NatGeoAdentureLostCityOfZ/NatGeoAdentureLostCityOfZ320x240.jpg','false','/images/games/thumbnails_med_2/NatGeoAdentureLostCityOfZ130x75.gif','','Uncover the Amazon’s Ancient Civilizations!','Trek through Brazilian jungles in search of the elusive City of the Amazon!','true',false,false,'Lost City Of Z OL AS3');ag(11847863,'Farm Mania','/images/games/farmmania/farmmania81x46.gif',110127790,118541760,'','false','/images/games/farmmania/farmmania16x16.gif',false,11323,'/images/games/farmmania/farmmania100x75.jpg','/images/games/farmmania/farmmania179x135.jpg','/images/games/farmmania/farmmania320x240.jpg','false','/images/games/thumbnails_med_2/farmmania130x75.gif','/exe/farm_mania_54561225-setup.exe?lc=en&ext=farm_mania_54561225-setup.exe','Manage the Farm of your Dreams!','Help Anna manage the crops, animals, and exports of her grandfather&rsquo;s farm!','false',false,false,'Farm Mania');ag(11850773,'My Life Story','/images/games/MyLifeStory/MyLifeStory81x46.gif',0,118570750,'','false','/images/games/MyLifeStory/MyLifeStory16x16.gif',false,11323,'/images/games/MyLifeStory/MyLifeStory100x75.jpg','/images/games/MyLifeStory/MyLifeStory179x135.jpg','/images/games/MyLifeStory/MyLifeStory320x240.jpg','false','/images/games/thumbnails_med_2/MyLifeStory130x75.gif','/exe/my_life_story_56811454-setup.exe?lc=en&ext=my_life_story_56811454-setup.exe','Plot Your Life and Career Destiny!','Survive the ordeals of young adulthood and plot your life destiny!','false',false,false,'My Life Story');ag(11852670,'Chicken Invaders 3: Easter','/images/games/ChickenInvaders3Easter/ChickenInvaders3Easter81x46.gif',1003,118590813,'','false','/images/games/ChickenInvaders3Easter/ChickenInvaders3Easter16x16.gif',false,11323,'/images/games/ChickenInvaders3Easter/ChickenInvaders3Easter100x75.jpg','/images/games/ChickenInvaders3Easter/ChickenInvaders3Easter179x135.jpg','/images/games/ChickenInvaders3Easter/ChickenInvaders3Easter320x240.jpg','false','/images/games/thumbnails_med_2/ChickenInvaders3Easter130x75.gif','/exe/chicken_invaders_3_easter_91212549-setup.exe?lc=en&ext=chicken_invaders_3_easter_91212549-setup.exe','Save Easter from Intergalactic Chickens!','Dash across the galaxy to save Easter from revenge-seeking chickens!','false',false,false,'Chicken Invaders 3 Easter');ag(11852910,'Hidden Wonders of the Depths 2','/images/games/HiddenWondersDepths2/HiddenWondersDepths281x46.gif',1007,118593753,'','false','/images/games/HiddenWondersDepths2/HiddenWondersDepths216x16.gif',false,11323,'/images/games/HiddenWondersDepths2/HiddenWondersDepths2100x75.jpg','/images/games/HiddenWondersDepths2/HiddenWondersDepths2179x135.jpg','/images/games/HiddenWondersDepths2/HiddenWondersDepths2320x240.jpg','false','/images/games/thumbnails_med_2/HiddenWondersDepths2130x75.gif','/exe/hidden_wonders_of_the_depths_2_59121236-setup.exe?lc=en&ext=hidden_wonders_of_the_depths_2_59121236-setup.exe','Help your Crab Explore the Globe!','Use match-3 skills to help your crab explore the globe!','false',false,false,'Hidden Wonders Depths 2');ag(11874370,'The Lost Cases of Sherlock Holmes 2','/images/games/TheLostCasesofSherlockHolmes2/TheLostCasesofSherlockHolmes281x46.gif',1100710,118808697,'','false','/images/games/TheLostCasesofSherlockHolmes2/TheLostCasesofSherlockHolmes216x16.gif',false,11323,'/images/games/TheLostCasesofSherlockHolmes2/TheLostCasesofSherlockHolmes2100x75.jpg','/images/games/TheLostCasesofSherlockHolmes2/TheLostCasesofSherlockHolmes2179x135.jpg','/images/games/TheLostCasesofSherlockHolmes2/TheLostCasesofSherlockHolmes2320x240.jpg','false','/images/games/thumbnails_med_2/TheLostCasesofSherlockHolmes2130x75.gif','/exe/lost_cases_sherlock_holmes_2_46579872-setup.exe?lc=en&ext=lost_cases_sherlock_holmes_2_46579872-setup.exe','All New Mysteries on Baker Street!','Return to Baker Street for all new cases of kidnapping, murder, and more!','false',false,false,'Lost Cases Holmes 2');ag(11882790,'Virtual Villagers: The Tree of Life','/images/games/VirtualVillagers4TheTreeofLife/VirtualVillagers4TheTreeofLife81x46.gif',0,118892997,'','false','/images/games/VirtualVillagers4TheTreeofLife/VirtualVillagers4TheTreeofLife16x16.gif',false,11323,'/images/games/VirtualVillagers4TheTreeofLife/VirtualVillagers4TheTreeofLife100x75.jpg','/images/games/VirtualVillagers4TheTreeofLife/VirtualVillagers4TheTreeofLife179x135.jpg','/images/games/VirtualVillagers4TheTreeofLife/VirtualVillagers4TheTreeofLife320x240.jpg','false','/images/games/thumbnails_med_2/VirtualVillagers4TheTreeofLife130x75.gif','/exe/virtual_villagers_4_60643057-setup.exe?lc=en&ext=virtual_villagers_4_60643057-setup.exe','Save Isola’s Tree of Life!','Continue the story of the mysterious island and save Isola’s Tree of Life!','false',false,false,'Virtual Villagers 4 Standard');ac(1000,'Top','Love Story Letters from the Pa');ag(11882993,'Love Story: Letters from the Past','/images/games/LoveStoryLettersfromthepast/LoveStoryLettersfromthepast81x46.gif',1000,118894770,'','false','/images/games/LoveStoryLettersfromthepast/LoveStoryLettersfromthepast16x16.gif',false,11323,'/images/games/LoveStoryLettersfromthepast/LoveStoryLettersfromthepast100x75.jpg','/images/games/LoveStoryLettersfromthepast/LoveStoryLettersfromthepast179x135.jpg','/images/games/LoveStoryLettersfromthepast/LoveStoryLettersfromthepast320x240.jpg','false','/images/games/thumbnails_med_2/LoveStoryLettersfromthepast130x75.gif','/exe/love_story_letters_from_the_past_88432170-setup.exe?lc=en&ext=love_story_letters_from_the_past_88432170-setup.exe','Romantic Journey Through Time!','Travel back in time for a hidden object tale of young romance!','false',false,false,'Love Story Letters from the Pa');ag(11886233,'Farm Frenzy 3 Russian Roulette','/images/games/Farmfrenzy3RussianRoulette/Farmfrenzy3RussianRoulette81x46.gif',110127790,118928650,'','false','/images/games/Farmfrenzy3RussianRoulette/Farmfrenzy3RussianRoulette16x16.gif',false,11323,'/images/games/Farmfrenzy3RussianRoulette/Farmfrenzy3RussianRoulette100x75.jpg','/images/games/Farmfrenzy3RussianRoulette/Farmfrenzy3RussianRoulette179x135.jpg','/images/games/Farmfrenzy3RussianRoulette/Farmfrenzy3RussianRoulette320x240.jpg','false','/images/games/thumbnails_med_2/Farmfrenzy3RussianRoulette130x75.gif','/exe/farm_frenzy_3_russian_roulette_83015103-setup.exe?lc=en&ext=farm_frenzy_3_russian_roulette_83015103-setup.exe','Grow Crops and Feed Hungry Astronauts!','Grow crops, raise animals, and manufacture goods to feed hungry astronauts!','false',false,false,'Farm Frenzy 3 Russian Roulette');ag(11887147,'A Day At High School','/images/games/ADayAtHighSchool/ADayAtHighSchool81x46.gif',110083820,118937557,'96197266-a613-426f-ade8-eee1693e51dd','false','/images/games/ADayAtHighSchool/ADayAtHighSchool16x16.gif',false,11323,'/images/games/ADayAtHighSchool/ADayAtHighSchool100x75.jpg','/images/games/ADayAtHighSchool/ADayAtHighSchool179x135.jpg','/images/games/ADayAtHighSchool/ADayAtHighSchool320x240.jpg','false','/images/games/thumbnails_med_2/ADayAtHighSchool130x75.gif','','Make High School FUN!','School will no longer be boring… because we are making it FUN!','true',false,false,'A Day At High School OL');ag(11889053,'Puzzle Bots','/images/games/PuzzleBots/PuzzleBots81x46.gif',1100710,118956650,'','false','/images/games/PuzzleBots/PuzzleBots16x16.gif',false,11323,'/images/games/PuzzleBots/PuzzleBots100x75.jpg','/images/games/PuzzleBots/PuzzleBots179x135.jpg','/images/games/PuzzleBots/PuzzleBots320x240.jpg','false','/images/games/thumbnails_med_2/PuzzleBots130x75.gif','/exe/PuzzleBots_49876745-setup.exe?lc=en&ext=PuzzleBots_49876745-setup.exe','Robot Adventures in a Crazy Factory!','Help the robots explore their crazy factory in a charming puzzle adventure!','false',false,false,'Puzzle Bots');ag(11889863,'Treasure Match Bundle - 2 in 1','/images/games/treasure_match_bundle/treasure_match_bundle81x46.gif',1007,118964743,'','false','/images/games/treasure_match_bundle/treasure_match_bundle16x16.gif',false,11323,'/images/games/treasure_match_bundle/treasure_match_bundle100x75.jpg','/images/games/treasure_match_bundle/treasure_match_bundle179x135.jpg','/images/games/treasure_match_bundle/treasure_match_bundle320x240.jpg','false','/images/games/thumbnails_med_2/treasure_match_bundle130x75.gif','/exe/treasure_match_bundle_12347896-setup.exe?lc=en&ext=treasure_match_bundle_12347896-setup.exe','Exotic and Magical Matching Adventures!','Exotic and magical matching adventures – two games in one!','false',false,false,'Treasure Match Bundle');ag(11891293,'Fashion Flavors','/images/games/FashionFlavors/FashionFlavors81x46.gif',110083820,118979577,'f311ed84-fc6c-41d0-b0d2-26e223939caf','false','/images/games/FashionFlavors/FashionFlavors16x16.gif',false,11323,'/images/games/FashionFlavors/FashionFlavors100x75.jpg','/images/games/FashionFlavors/FashionFlavors179x135.jpg','/images/games/FashionFlavors/FashionFlavors320x240.jpg','false','/images/games/thumbnails_med_2/FashionFlavors130x75.gif','','4 Seasons. 4 Wardrobes. 4 Styles.','Stay fashionable all year round. Get a taste of Fashion Flavors.','true',false,false,'Fashion Flavors OL');ag(11892457,'Daily Picma','/images/games/DailyPicma/DailyPicma81x46.gif',110015873,118991677,'028e1ef2-2d5e-4c5e-8cd5-51c7e8b01e6e','false','/images/games/DailyPicma/DailyPicma16x16.gif',false,11323,'/images/games/DailyPicma/DailyPicma100x75.jpg','/images/games/DailyPicma/DailyPicma179x135.jpg','/images/games/DailyPicma/DailyPicma320x240.jpg','false','/images/games/thumbnails_med_2/DailyPicma130x75.gif','','Picture logic game.','Picture logic game, featuring a new puzzle each day.','true',false,false,'Daily Picma OL AS3');ag(11892537,'Woman Down Under','/images/games/WomanDownUnder/WomanDownUnder81x46.gif',110083820,118992657,'e0e705c1-42b2-48c2-98c8-86f39478cc49','false','/images/games/WomanDownUnder/WomanDownUnder16x16.gif',false,11323,'/images/games/WomanDownUnder/WomanDownUnder100x75.jpg','/images/games/WomanDownUnder/WomanDownUnder179x135.jpg','/images/games/WomanDownUnder/WomanDownUnder320x240.jpg','false','/images/games/thumbnails_med_2/WomanDownUnder130x75.gif','','Get down… for love.','The woman of your dreams awaits you… deep down under.','true',false,false,'Woman Down Under OL');ag(11894573,'Janes Realty','/images/games/janesrealty/janesrealty81x46.gif',110127790,119012630,'','false','/images/games/janesrealty/janesrealty16x16.gif',false,11323,'/images/games/janesrealty/janesrealty100x75.jpg','/images/games/janesrealty/janesrealty179x135.jpg','/images/games/janesrealty/janesrealty320x240.jpg','false','/images/games/thumbnails_med_2/janesrealty130x75.gif','/exe/janes_realty_81020047-setup.exe?lc=en&ext=janes_realty_81020047-setup.exe','Build, Rent, and Sell Properties!','Create an entire city as you build, rent, and sell properties!','false',false,false,'Janes Realty');ag(11900997,'Secret Mission Forgotten Island','/images/games/SecretMissionForgottenIsland/SecretMissionForgottenIsland81x46.gif',1100710,119077800,'','false','/images/games/SecretMissionForgottenIsland/SecretMissionForgottenIsland16x16.gif',false,11323,'/images/games/SecretMissionForgottenIsland/SecretMissionForgottenIsland100x75.jpg','/images/games/SecretMissionForgottenIsland/SecretMissionForgottenIsland179x135.jpg','/images/games/SecretMissionForgottenIsland/SecretMissionForgottenIsland320x240.jpg','false','/images/games/thumbnails_med_2/SecretMissionForgottenIsland130x75.gif','/exe/secret_mission_forgotten_island_05421200-setup.exe?lc=en&ext=secret_mission_forgotten_island_05421200-setup.exe','Explore a Deserted, Tropical Island!','Explore a deserted, tropical island! Find objects to solve mysteries!','false',false,false,'Secret Mission Forgotten Islan');ag(11908850,'Mortimer Beckett Bundle - 2 in 1','/images/games/mortimer_beckett_bundle/mortimer_beckett_bundle81x46.gif',0,119157317,'','false','/images/games/mortimer_beckett_bundle/mortimer_beckett_bundle16x16.gif',false,11323,'/images/games/mortimer_beckett_bundle/mortimer_beckett_bundle100x75.jpg','/images/games/mortimer_beckett_bundle/mortimer_beckett_bundle179x135.jpg','/images/games/mortimer_beckett_bundle/mortimer_beckett_bundle320x240.jpg','false','/images/games/thumbnails_med_2/mortimer_beckett_bundle130x75.gif','/exe/mortimer_beckett_bundle_54578810-setup.exe?lc=en&ext=mortimer_beckett_bundle_54578810-setup.exe','Two Wild, Eerie Adventures in One Download!','Mortimer&rsquo;s wild and eerie adventures - two games in one download!','false',false,false,'Mortimer Beckett Bundle - 2 in');ag(11910713,'Bouncing Letters','/images/games/BouncingLetters/BouncingLetters81x46.gif',110083820,119176720,'c54fcaf4-6e4a-448b-9783-cf52876eaf6d','false','/images/games/BouncingLetters/BouncingLetters16x16.gif',false,11323,'/images/games/BouncingLetters/BouncingLetters100x75.jpg','/images/games/BouncingLetters/BouncingLetters179x135.jpg','/images/games/BouncingLetters/BouncingLetters320x240.jpg','false','/images/games/thumbnails_med_2/BouncingLetters130x75.gif','','Form words and destroy the balls!','Form words using the balls with letters!','true',true,true,'Bouncing Letters OLT1 AS3');ag(11910997,'Squares','/images/games/Squares/Squares81x46.gif',110083820,119178803,'539cffe1-e096-43c7-bd38-39a043191b6b','false','/images/games/Squares/Squares16x16.gif',false,11323,'/images/games/Squares/Squares100x75.jpg','/images/games/Squares/Squares179x135.jpg','/images/games/Squares/Squares320x240.jpg','false','/images/games/thumbnails_med_2/Squares130x75.gif','','Destroy blocks!','Destroy blocks by arranging them into the four corners of a square!','true',true,true,'Squares OLT1 AS3');ag(11911420,'Blockz','/images/games/Blockz/Blockz81x46.gif',110083820,119183407,'c5dc4540-d85d-42ad-98dc-51603bb88e5c','false','/images/games/Blockz/Blockz16x16.gif',false,11323,'/images/games/Blockz/Blockz100x75.jpg','/images/games/Blockz/Blockz179x135.jpg','/images/games/Blockz/Blockz320x240.jpg','false','/images/games/thumbnails_med_2/Blockz130x75.gif','','Rotate and move the figures.','Play online puzzle and enjoy this classic game in a brand-new style!','true',true,true,'Blockz OLT1 AS3');ag(11912233,'I Do','/images/games/IDo/IDo81x46.gif',110083820,119191723,'1b84d339-1bac-4ba9-9a37-995fdbd99953','false','/images/games/IDo/IDo16x16.gif',false,11323,'/images/games/IDo/IDo100x75.jpg','/images/games/IDo/IDo179x135.jpg','/images/games/IDo/IDo320x240.jpg','false','/images/games/thumbnails_med_2/IDo130x75.gif','','Weddings around the world.','It’s time to say ‘I Do’ in different styles.','true',false,false,'I Do OL');ag(11912327,'Bubble Popper','/images/games/bubblepopper/bubblepopper81x46.gif',110083820,119192733,'c8a9e44b-05f7-4d4d-bf3d-6706f12b4629','false','/images/games/bubblepopper/bubblepopper16x16.gif',false,11323,'/images/games/bubblepopper/bubblepopper100x75.jpg','/images/games/bubblepopper/bubblepopper179x135.jpg','/images/games/bubblepopper/bubblepopper320x240.jpg','false','/images/games/thumbnails_med_2/bubblepopper130x75.gif','','Burst all the bubbles!','Burst all bubbles within certain time by clicking on them.','true',true,true,'Bubble Popper OLT1 AS3');ag(11913097,'Dress Up Race','/images/games/DressUpRace/DressUpRace81x46.gif',110083820,119199797,'3beeacfa-1b04-4607-93b9-c30dacb4d52b','false','/images/games/DressUpRace/DressUpRace16x16.gif',false,11323,'/images/games/DressUpRace/DressUpRace100x75.jpg','/images/games/DressUpRace/DressUpRace179x135.jpg','/images/games/DressUpRace/DressUpRace320x240.jpg','false','/images/games/thumbnails_med_2/DressUpRace130x75.gif','','Get set to enter the race.','It’s fashion in the fast lane with quick and awesome dress ups.','true',false,false,'Dress Up Race OL');ag(11913383,'Childs Play','/images/games/ChildsPlay/ChildsPlay81x46.gif',110083820,119202807,'d37d0315-60f2-41dd-bba4-6b2faaa07b35','false','/images/games/ChildsPlay/ChildsPlay16x16.gif',false,11323,'/images/games/ChildsPlay/ChildsPlay100x75.jpg','/images/games/ChildsPlay/ChildsPlay179x135.jpg','/images/games/ChildsPlay/ChildsPlay320x240.jpg','false','/images/games/thumbnails_med_2/ChildsPlay130x75.gif','','Keep the cranky kid happy.','Play the Child’s Play and make the cranky kid happy!','true',false,false,'Childs Play OL');ag(11917743,'Jungle Plunge','/images/games/jungleplunge/jungleplunge81x46.gif',110083820,119246703,'9095b312-15d1-49e8-8c15-4a37d3cf5536','false','/images/games/jungleplunge/jungleplunge16x16.gif',false,11323,'/images/games/jungleplunge/jungleplunge100x75.jpg','/images/games/jungleplunge/jungleplunge179x135.jpg','/images/games/jungleplunge/jungleplunge320x240.jpg','false','/images/games/thumbnails_med_2/jungleplunge130x75.gif','','Jungle Plunge physics game!','Help Flubbles the monkey get to the jungle floor through a variety of obstacles!','true',false,false,'Jungle Plunge OL AS3');ag(11919947,'Dark Hills of Cherai','/images/games/DarkHillsofCherai/DarkHillsofCherai81x46.gif',1000,119268733,'','false','/images/games/DarkHillsofCherai/DarkHillsofCherai16x16.gif',false,11323,'/images/games/DarkHillsofCherai/DarkHillsofCherai100x75.jpg','/images/games/DarkHillsofCherai/DarkHillsofCherai179x135.jpg','/images/games/DarkHillsofCherai/DarkHillsofCherai320x240.jpg','false','/images/games/thumbnails_med_2/DarkHillsofCherai130x75.gif','/exe/dark_hills_of_cherai_03541811-setup.exe?lc=en&ext=dark_hills_of_cherai_03541811-setup.exe','Save your Cousin from an Evil Magician!','Save your cousin from an evil magician and find the treasure of Cherai!','false',false,false,'Dark Hills of Cherai');ag(11920673,'Best of Match-3 Pack - 2 in 1','/images/games/best_of_match_3_pack/best_of_match_3_pack81x46.gif',1007,119275337,'','false','/images/games/best_of_match_3_pack/best_of_match_3_pack16x16.gif',false,11323,'/images/games/best_of_match_3_pack/best_of_match_3_pack100x75.jpg','/images/games/best_of_match_3_pack/best_of_match_3_pack179x135.jpg','/images/games/best_of_match_3_pack/best_of_match_3_pack320x240.jpg','false','/images/games/thumbnails_med_2/best_of_match_3_pack130x75.gif','/exe/best_of_match_3_pack_08712104-setup.exe?lc=en&ext=best_of_match_3_pack_08712104-setup.exe','Two Match-3 Adventures in One Download!','Two match-3 tales of adventure and magic in one download!','false',false,false,'Best of Match-3 Pack');ag(11922060,'Robinson Crusoe and the Cursed Pirates','/images/games/RobinsonCrusoe2/RobinsonCrusoe281x46.gif',1100710,119289717,'','false','/images/games/RobinsonCrusoe2/RobinsonCrusoe216x16.gif',false,11323,'/images/games/RobinsonCrusoe2/RobinsonCrusoe2100x75.jpg','/images/games/RobinsonCrusoe2/RobinsonCrusoe2179x135.jpg','/images/games/RobinsonCrusoe2/RobinsonCrusoe2320x240.jpg','false','/images/games/thumbnails_med_2/RobinsonCrusoe2130x75.gif','/exe/robinson_crusoe_2_56431320-setup.exe?lc=en&ext=robinson_crusoe_2_56431320-setup.exe','Cure a Mysterious Voodoo Curse!','Robinson Crusoe returns to cure a mysterious voodoo curse!','false',false,false,'Robinson Crusoe 2');ag(11923880,'Journey Of Hope','/images/games/JourneyOfHope/JourneyOfHope81x46.gif',1100710,119307770,'','false','/images/games/JourneyOfHope/JourneyOfHope16x16.gif',false,11323,'/images/games/JourneyOfHope/JourneyOfHope100x75.jpg','/images/games/JourneyOfHope/JourneyOfHope179x135.jpg','/images/games/JourneyOfHope/JourneyOfHope320x240.jpg','false','/images/games/thumbnails_med_2/JourneyOfHope130x75.gif','/exe/journey_of_hope_11923830-setup.exe?lc=en&ext=journey_of_hope_11923830-setup.exe','A Breathtaking Adventure Through the Unknown!','Explore exotic locations, find hidden objects, and solve clever puzzles!','false',false,false,'Journey Of Hope');ag(11927193,'Speed Dating','/images/games/SpeedDating/SpeedDating81x46.gif',110083820,119340800,'b111a2d8-96b4-4763-a34c-f1c299d63e1e','false','/images/games/SpeedDating/SpeedDating16x16.gif',false,11323,'/images/games/SpeedDating/SpeedDating100x75.jpg','/images/games/SpeedDating/SpeedDating179x135.jpg','/images/games/SpeedDating/SpeedDating320x240.jpg','false','/images/games/thumbnails_med_2/SpeedDating130x75.gif','','Go full throttle with dating.','Buckle up and answer questions quickly to win a date.','true',false,false,'Speed Dating OL');ag(11930183,'Goddess Chronicles','/images/games/GoddessChronicles/GoddessChronicles81x46.gif',1100710,119370610,'','false','/images/games/GoddessChronicles/GoddessChronicles16x16.gif',false,11323,'/images/games/GoddessChronicles/GoddessChronicles100x75.jpg','/images/games/GoddessChronicles/GoddessChronicles179x135.jpg','/images/games/GoddessChronicles/GoddessChronicles320x240.jpg','false','/images/games/thumbnails_med_2/GoddessChronicles130x75.gif','/exe/goddess_chronicles_86420458-setup.exe?lc=en&ext=goddess_chronicles_86420458-setup.exe','Become an Immortal Goddess!','Find and assemble artifacts to become an immortal goddess!','false',false,false,'Goddess Chronicles');ag(11937630,'Agent Heart 2','/images/games/AgentHeart2/AgentHeart281x46.gif',110083820,119445677,'62a210f8-f9ae-4663-8f57-dcf1e3427b70','false','/images/games/AgentHeart2/AgentHeart216x16.gif',false,11323,'/images/games/AgentHeart2/AgentHeart2100x75.jpg','/images/games/AgentHeart2/AgentHeart2179x135.jpg','/images/games/AgentHeart2/AgentHeart2320x240.jpg','false','/images/games/thumbnails_med_2/AgentHeart2130x75.gif','','Catch the cheaters.','Wear a disguise and catch the cheating boyfriends with Agent Heart.','true',false,false,'Agent Heart 2 OL AS3');ag(11942540,'National Geographic’s Build it Green','/images/games/BuildItGreen_regular/BuildItGreen_regular81x46.gif',110127790,119494953,'','false','/images/games/BuildItGreen_regular/BuildItGreen_regular16x16.gif',false,11323,'/images/games/BuildItGreen_regular/BuildItGreen_regular100x75.jpg','/images/games/BuildItGreen_regular/BuildItGreen_regular179x135.jpg','/images/games/BuildItGreen_regular/BuildItGreen_regular320x240.jpg','false','/images/games/thumbnails_med_2/BuildItGreen_regular130x75.gif','/exe/build_it_green_96121475-setup.exe?lc=en&ext=build_it_green_96121475-setup.exe','Go Green on a Tropical Island!','Help the inhabitants of a tropical island construct environmentally friendly houses!','false',false,false,'BuildItGreen');ag(11944693,'The Island: Castaway','/images/games/TheIslandCastaway/TheIslandCastaway81x46.gif',1100710,119515537,'','false','/images/games/TheIslandCastaway/TheIslandCastaway16x16.gif',false,11323,'/images/games/TheIslandCastaway/TheIslandCastaway100x75.jpg','/images/games/TheIslandCastaway/TheIslandCastaway179x135.jpg','/images/games/TheIslandCastaway/TheIslandCastaway320x240.jpg','false','/images/games/thumbnails_med_2/TheIslandCastaway130x75.gif','/exe/the_island_castaway_54215410-setup.exe?lc=en&ext=the_island_castaway_54215410-setup.exe','Castaways Land on a Mysterious Island!','Explore an island&rsquo;s mysteries alongside a group of castaways!','false',false,false,'The Island Castaway');ag(11947287,'The Search For Wondla','/images/games/TheSearchForWondla/TheSearchForWondla81x46.gif',110083820,119541770,'c1869ea1-52f0-4d16-b655-9608789bb9b7','false','/images/games/TheSearchForWondla/TheSearchForWondla16x16.gif',false,11323,'/images/games/TheSearchForWondla/TheSearchForWondla100x75.jpg','/images/games/TheSearchForWondla/TheSearchForWondla179x135.jpg','/images/games/TheSearchForWondla/TheSearchForWondla320x240.jpg','false','/images/games/thumbnails_med_2/TheSearchForWondla130x75.gif','','A Spot-the-Difference Game.','Play through forty different breathtaking scenes as you follow young Eva Nine’s journey throughout the world of Orbona.','true',false,false,'The Search For Wondla OL AS3');ag(11947650,'LUXOR 5th Passage','/images/games/LUXOR5thPassage/LUXOR5thPassage81x46.gif',1007,119545520,'','false','/images/games/LUXOR5thPassage/LUXOR5thPassage16x16.gif',false,11323,'/images/games/LUXOR5thPassage/LUXOR5thPassage100x75.jpg','/images/games/LUXOR5thPassage/LUXOR5thPassage179x135.jpg','/images/games/LUXOR5thPassage/LUXOR5thPassage320x240.jpg','false','/images/games/thumbnails_med_2/LUXOR5thPassage130x75.gif','/exe/luxor_5th_passage_56132045-setup.exe?lc=en&ext=luxor_5th_passage_56132045-setup.exe','Protect Egyptian Pyramids with Classic Marble-shooting!','Employ classic marble-shooting gameplay to protect the pyramids of ancient Egypt!','false',false,false,'LUXOR 5th Passage');ag(11947960,'Deep Search','/images/games/DeepSearch/DeepSearch81x46.gif',110015873,119548700,'af960904-945b-42dd-a830-63c2e2efac29','false','/images/games/DeepSearch/DeepSearch16x16.gif',false,11323,'/images/games/DeepSearch/DeepSearch100x75.jpg','/images/games/DeepSearch/DeepSearch179x135.jpg','/images/games/DeepSearch/DeepSearch320x240.jpg','false','/images/games/thumbnails_med_2/DeepSearch130x75.gif','','','Hidden Objects in the Ocean.','true',false,false,'Deep Search OL AS3');ag(11955260,'The Mystery of the Dragon Prince','/images/games/TheMysteryoftheDragonPrince/TheMysteryoftheDragonPrince81x46.gif',1100710,119621750,'','false','/images/games/TheMysteryoftheDragonPrince/TheMysteryoftheDragonPrince16x16.gif',false,11323,'/images/games/TheMysteryoftheDragonPrince/TheMysteryoftheDragonPrince100x75.jpg','/images/games/TheMysteryoftheDragonPrince/TheMysteryoftheDragonPrince179x135.jpg','/images/games/TheMysteryoftheDragonPrince/TheMysteryoftheDragonPrince320x240.jpg','false','/images/games/thumbnails_med_2/TheMysteryoftheDragonPrince130x75.gif','/exe/mystery_of_the_dragon_prince_84542444-setup.exe?lc=en&ext=mystery_of_the_dragon_prince_84542444-setup.exe','A Secretive Prince and a Cursed Castle!','Explore an old, cursed castle and the secretive prince who resides within!','false',false,false,'The Mystery of the Dragon Prin');ag(11959230,'Make Me Over Wedding Edition','/images/games/MakeMeOverWeddingEdition/MakeMeOverWeddingEdition81x46.gif',110083820,119661600,'d63dade1-73fa-4660-b0f5-6d5a64992ec5','false','/images/games/MakeMeOverWeddingEdition/MakeMeOverWeddingEdition16x16.gif',false,11323,'/images/games/MakeMeOverWeddingEdition/MakeMeOverWeddingEdition100x75.jpg','/images/games/MakeMeOverWeddingEdition/MakeMeOverWeddingEdition179x135.jpg','/images/games/MakeMeOverWeddingEdition/MakeMeOverWeddingEdition320x240.jpg','false','/images/games/thumbnails_med_2/MakeMeOverWeddingEdition130x75.gif','','Make them look special.','Dress up the dazzling couple on their wedding day!','true',false,false,'Make Me Over Wedding Edition O');ag(11959943,'Robin Hood','/images/games/RobinHood/RobinHood81x46.gif',1100710,119668743,'','false','/images/games/RobinHood/RobinHood16x16.gif',false,11323,'/images/games/RobinHood/RobinHood100x75.jpg','/images/games/RobinHood/RobinHood179x135.jpg','/images/games/RobinHood/RobinHood320x240.jpg','false','/images/games/thumbnails_med_2/RobinHood130x75.gif','/exe/robin_hood_54548204-setup.exe?lc=en&ext=robin_hood_54548204-setup.exe','Bring Justice to Medieval England!','Gather your merry men and bring justice to medieval England!','false',false,false,'Robin Hood');ag(11963680,'Santas House','/images/games/SantasHouse/SantasHouse81x46.gif',110083820,119705497,'3ab67179-0f57-496d-8dfc-05509190678b','false','/images/games/SantasHouse/SantasHouse16x16.gif',false,11323,'/images/games/SantasHouse/SantasHouse100x75.jpg','/images/games/SantasHouse/SantasHouse179x135.jpg','/images/games/SantasHouse/SantasHouse320x240.jpg','false','/images/games/thumbnails_med_2/SantasHouse130x75.gif','','Christmas Santas House game.','Several gameplays in one game!','true',false,false,'Santas House OL');ag(11966857,'Time to Hurry: Nicole&rsquo;s Story','/images/games/TimeToHurryNicolesStory/TimeToHurryNicolesStory81x46.gif',1100710,119737270,'','false','/images/games/TimeToHurryNicolesStory/TimeToHurryNicolesStory16x16.gif',false,11323,'/images/games/TimeToHurryNicolesStory/TimeToHurryNicolesStory100x75.jpg','/images/games/TimeToHurryNicolesStory/TimeToHurryNicolesStory179x135.jpg','/images/games/TimeToHurryNicolesStory/TimeToHurryNicolesStory320x240.jpg','false','/images/games/thumbnails_med_2/TimeToHurryNicolesStory130x75.gif','/exe/time_to_hurry_hicoles_story_54646841-setup.exe?lc=en&ext=time_to_hurry_hicoles_story_54646841-setup.exe','Help Nicole Reinvent Struggling Shops!','Help Nicole reinvent struggling shops and establish her career!','false',false,false,'Time To Hurry Nicoles Story');ag(11979493,'Island Tribe','/images/games/IslandTribe/IslandTribe81x46.gif',110127790,119863510,'','false','/images/games/IslandTribe/IslandTribe16x16.gif',false,11323,'/images/games/IslandTribe/IslandTribe100x75.jpg','/images/games/IslandTribe/IslandTribe179x135.jpg','/images/games/IslandTribe/IslandTribe320x240.jpg','false','/images/games/thumbnails_med_2/IslandTribe130x75.gif','/exe/island_tribe_48512154-setup.exe?lc=en&ext=island_tribe_48512154-setup.exe','Guide the Tribe&rsquo;s Tropical Escape!','Help a tribe of settlers escape an island before the volcano erupts!','false',false,false,'Island Tribe');ag(11979787,'20000 Feet And Falling','/images/games/20000FeetAndFalling/20000FeetAndFalling81x46.gif',110083820,119866637,'72e8d18f-0592-4d84-be86-782c328b6c62','false','/images/games/20000FeetAndFalling/20000FeetAndFalling16x16.gif',false,11323,'/images/games/20000FeetAndFalling/20000FeetAndFalling100x75.jpg','/images/games/20000FeetAndFalling/20000FeetAndFalling179x135.jpg','/images/games/20000FeetAndFalling/20000FeetAndFalling320x240.jpg','false','/images/games/thumbnails_med_2/20000FeetAndFalling130x75.gif','','Take the leap. Feel the thrill!','Take the leap and feel the thrill with the ultimate sky diving experience!','true',false,false,'20000 Feet And Falling OL');ag(11984290,'Boulder Dash®-Pirate’s Quest™','/images/games/BoulderDashPiratesQuest/BoulderDashPiratesQuest81x46.gif',1007,119911733,'','false','/images/games/BoulderDashPiratesQuest/BoulderDashPiratesQuest16x16.gif',false,11323,'/images/games/BoulderDashPiratesQuest/BoulderDashPiratesQuest100x75.jpg','/images/games/BoulderDashPiratesQuest/BoulderDashPiratesQuest179x135.jpg','/images/games/BoulderDashPiratesQuest/BoulderDashPiratesQuest320x240.jpg','false','/images/games/thumbnails_med_2/BoulderDashPiratesQuest130x75.gif','/exe/pirates_quest_56739293-setup.exe?lc=en&ext=pirates_quest_56739293-setup.exe','Recover a Pirate Treasure Chest!','Help Crystal and Rockford recover their great, great, great grandfather’s pirate treasure!','false',false,false,'Boulder Dash Pirates Quest');ag(11993617,'Virtual Villagers - New Believers','/images/games/VirtualVillagers5/VirtualVillagers581x46.gif',0,120005193,'','false','/images/games/VirtualVillagers5/VirtualVillagers516x16.gif',false,11323,'/images/games/VirtualVillagers5/VirtualVillagers5100x75.jpg','/images/games/VirtualVillagers5/VirtualVillagers5179x135.jpg','/images/games/VirtualVillagers5/VirtualVillagers5320x240.jpg','false','/images/games/thumbnails_med_2/VirtualVillagers5130x75.gif','/exe/virtual_villagers_5_93483441-setup.exe?lc=en&ext=virtual_villagers_5_93483441-setup.exe','Explore the Center of Isola!','Explore the center of Isola and guide your tribe by dismantling their precious totems and removing their scary masks.!','false',false,false,'Virtual Villagers 5');ag(11994487,'Vesuvia','/images/games/vesuvia/vesuvia81x46.gif',1007,120013643,'','false','/images/games/vesuvia/vesuvia16x16.gif',false,11323,'/images/games/vesuvia/vesuvia100x75.jpg','/images/games/vesuvia/vesuvia179x135.jpg','/images/games/vesuvia/vesuvia320x240.jpg','false','/images/games/thumbnails_med_2/vesuvia130x75.gif','/exe/vesuvia_95673542-setup.exe?lc=en&ext=vesuvia_95673542-setup.exe','Uncover the secrets…to escape','Only you hold the key to finding a way out!','false',false,false,'Vesuvia');ag(11996473,'Ice Cream Craze: Natural Hero','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero81x46.gif',110083820,12003340,'8129f469-364f-4663-9f0c-1ecc99e26d47','false','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero16x16.gif',false,11323,'/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero100x75.jpg','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero179x135.jpg','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero320x240.jpg','false','/images/games/thumbnails_med_2/IceCreamCrazeNaturalHero130x75.gif','','Stack Desserts to Fill Customers’ Orders!','Stack and top delicious desserts based on the requests of customers!','true',false,false,'Ice Cream Craze Natural Hero O');ag(11996780,'Amazing Adventures: The Forgotten Dynasty™','/images/games/AmazingAdvTheForgottenDynasty/AmazingAdvTheForgottenDynasty81x46.gif',1100710,120036747,'','false','/images/games/AmazingAdvTheForgottenDynasty/AmazingAdvTheForgottenDynasty16x16.gif',false,11323,'/images/games/AmazingAdvTheForgottenDynasty/AmazingAdvTheForgottenDynasty100x75.jpg','/images/games/AmazingAdvTheForgottenDynasty/AmazingAdvTheForgottenDynasty179x135.jpg','/images/games/AmazingAdvTheForgottenDynasty/AmazingAdvTheForgottenDynasty320x240.jpg','false','/images/games/thumbnails_med_2/AmazingAdvTheForgottenDynasty130x75.gif','/exe/AmazingAdvTheForgottenDynasty_68434000-setup.exe?lc=en&ext=AmazingAdvTheForgottenDynasty_68434000-setup.exe','Seek and Find the Forgotten Dynasty!','Travel to China in search of the Forgotten Dynasty!','false',false,false,'Amazing Adv Forgotten Dynasty');ag(110012700,'Atomaders','/images/games/Atomader/atomaders81x46.jpg',110125467,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(110056577,'Backgammon','/images/games/backgammon_mp/backgammon_mp81x46.gif',110044360,110057420,'7e7d30a4-5ab6-4d45-b77a-83fa355bb390','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',110044360,110060403,'2e50669d-31aa-42b6-a0a2-039b263e6b76','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(110075733,'Chainz','/images/games/chainz/chainz81x46.gif',1007,110080263,'b4845d30-d887-4918-ad87-f9b025c6fdf6','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(110082360,'Alien Shooter','/images/games/alienShooter/alienShooter81x46.jpg',1003,110088530,'','false','/images/games/alienShooter/alienShooter16x16.gif',false,11323,'/images/games/alienShooter/alienShooter100x75.jpg','/images/games/alienShooter/alienShooter179x135.jpg','/images/games/alienShooter/alienShooter320x240.jpg','false','/images/games/thumbnails_med_2/alienShooter130x75.gif','/exe/Alien_Shooter-setup.exe?lc=en&ext=Alien_Shooter-setup.exe','Save humanity from space aliens!','Stop blood-thirsty creatures with guns, explosives and advanced weaponry.','false',false,false,'Alien_shooter');ag(110109903,'Flip Words','/images/games/flipwords/flipwords81x46.gif',110125467,110115763,'11ba0e23-80fc-45f2-946b-8cfd10d9b9fb','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');ac(110138357,'Marbleshooter','Zuma');ag(110111700,'Zuma Deluxe','/images/games/zuma/zuma81x46.gif',110138357,11011713,'e8a09536-9041-4700-b600-790f893f7ea0','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(110113233,'Bookworm Deluxe','/images/games/bookworm/bookworm81x46.jpg',1008,110119950,'','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','/exe/Book_Worm-setup.exe?lc=en&ext=Book_Worm-setup.exe','Feed the hungry bookworm with words!','Link letters and build words in this challenging vocabulary skills game.','false',false,false,'bookworm');ag(110125217,'Infinite Crosswords','/images/games/infinite_crosswords/infinite_crosswords81x46.jpg',110125467,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',1004,11016643,'a283bb51-32c5-4612-ac7f-26f3e3f847ba','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',110125467,110190170,'b6f74596-5a4e-4dd2-97d2-4a0d8dcb2737','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,'15f15f7f-502e-4891-829f-76b7c2e04418','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(110245793,'Insaniquarium Deluxe','/images/games/insaniquarium/insaniquarium81x46.gif',1003,110251793,'fda60ea9-ebfd-4431-b161-b28ca7f06afd','false','/images/games/insaniquarium/Insaniquarium16x16.gif',false,11323,'/images/games/insaniquarium/insaniquarium100x75.jpg','/images/games/insaniquarium/insaniquarium179x135.jpg','/images/games/insaniquarium/insaniquarium320x240.jpg','false','/images/games/thumbnails_med_2/Insaniquarium130x75.gif','/exe/insaniquarium_deluxe-setup.exe?lc=en&ext=insaniquarium_deluxe-setup.exe','A crazy underwater puzzle adventure.','Feed fish and battle aliens in this underwater action-puzzle adventure.','false',false,false,'insaniquarium');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,'','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,'5a9cb568-7fcb-450e-b6d1-cc2a0e5854c9','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,'30cb8ba2-fb90-46d8-a79a-f65d2f9c0581','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');ac(1006,'Mahjong','mah_jong_quest');ag(110294723,'Mah Jong Quest','/images/games/mah_jong_quest/mah_jong_quest81x46.gif',1006,110301223,'b0f1ad34-255c-4dce-927a-fb4ac18e34da','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,'6283055e-8558-4a66-8f9c-fde4de3b8214','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',1003,11031273,'32f2ee89-9f7c-47e6-a122-a532c5d50618','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(110322783,'Big Kahuna Reef','/images/games/big_kahuna_reef/big_kahuna_reef81x46.gif',1007,110327910,'9f1756a1-87ea-44ce-9001-cefec7ba3121','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',110044360,110342160,'6c777168-e7b4-43c8-95c1-ff0dad3a074d','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',110044360,110390167,'5db05c41-2457-4b3c-8905-0eba04c66a1c','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,'548d93bc-b5ed-439b-8358-1ed4b8812a05','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',1003,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,'39582cb4-e825-4f0d-bdaf-7bbca8f9953a','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',110044360,110487250,'1f7dc99e-d960-4c73-a52e-7ac0ee30ceee','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',110127790,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,'d720aac9-bc22-4a7c-ab56-3785389f10f6','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',1003,110553917,'','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',110125467,11055797,'','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,'00d3a1aa-c6e5-422c-85fd-c0e74bee21e1','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');ac(110011217,'Sports','Saints & Sinners Bowling');ag(111097223,'Saints and Sinners Bowling','/images/games/s_and_s_bowling/s_and_s_bowling81x46.gif',110011217,11111090,'50727521-f14e-43fb-944e-00cc9d433d1f','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(111102607,'Loco Christmas Edition','/images/games/Loco_Xmas_Ed/Loco_Xmas_Ed81x46.gif',1003,111116670,'','false','/images/games/Loco_Xmas_Ed/Loco_Xmas_Ed16x16.gif',false,11323,'/images/games/Loco_Xmas_Ed/Loco_Xmas_Ed100x75.jpg','/images/games/Loco_Xmas_Ed/Loco_Xmas_Ed179x135.jpg','/images/games/Loco_Xmas_Ed/Loco_Xmas_Ed320x240.jpg','false','/images/games/thumbnails_med_2/Loco_Xmas_Ed130x75.gif','/exe/Loco_Christmas-setup.exe?lc=en&ext=Loco_Christmas-setup.exe','Load Santa&rsquo;s Trains with Holiday Presents!','Save Christmas by loading presents onto trains bound for the North Pole!','false',false,false,'Loco: Christmas Edition');ag(111125700,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',1007,111138937,'5399a010-91fe-400d-ad8c-e25288586179','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(111155550,'Tradewinds Legends','/images/games/Tradewinds_Legends/Tradewinds_Legends81x46.gif',1003,111168990,'a0ea07d5-68f1-4b37-badd-d0ba29b64969','false','/images/games/Tradewinds_Legends/Tradewinds_Legends16x16.gif',false,11323,'/images/games/Tradewinds_Legends/tradewinds_legends100x75.jpg','/images/games/Tradewinds_Legends/tradewinds_legends179x135.jpg','/images/games/Tradewinds_Legends/tradewinds_legends320x240.jpg','false','/images/games/thumbnails_med_2/Tradewinds_Legends130x75.gif','/exe/Tradewinds_Legends-setup.exe?lc=en&ext=Tradewinds_Legends-setup.exe','Build a fleet of magical battleships!','Build and sail a fleet of battleships to mythical lands!','false',false,false,'Tradewinds Legends');ag(111167660,'Star Defender II','/images/games/Star_Defender2/Star_Defender281x46.gif',1003,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',1007,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(111173220,'Pacific Heroes 2','/images/games/Pacific_Heroes2/Pacific_Heroes281x46.gif',1003,111186707,'','false','/images/games/Pacific_Heroes2/Pacific_Heroes216x16.gif',false,11323,'/images/games/Pacific_Heroes2/Pacific_Heroes2100x75.jpg','/images/games/Pacific_Heroes2/Pacific_Heroes2179x135.jpg','/images/games/Pacific_Heroes2/Pacific_Heroes2320x240.jpg','false','/images/games/thumbnails_med_2/Pacific_Heroes2130x75.gif','/exe/Pacific_Heroes2-setup.exe?lc=en&ext=Pacific_Heroes2-setup.exe','Relentless WWII dog-fighting action!','Brace yourself for relentless action in WWII’s most important battle!','false',false,false,'PacificHeroes2');ag(111175233,'Plantasia','/images/games/Plantasia/Plantasia81x46.gif',110127790,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,'a9639b44-1d49-41b5-be11-017b0e1b2f94','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(111199750,'Cake Mania','/images/games/Cake_Mania/Cake_Mania81x46.gif',110127790,111211360,'de7b18dc-a4ca-439b-b6bb-08c0094a086d','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',1008,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(111203860,'Word Whomp To Go','/images/games/Word_Whomp_To_Go/Word_Whomp_To_Go81x46.gif',1008,111215830,'','false','/images/games/Word_Whomp_To_Go/Word_Whomp_To_Go16x16.gif',false,11323,'/images/games/Word_Whomp_To_Go/Word_Whomp_To_Go100x75.jpg','/images/games/Word_Whomp_To_Go/Word_Whomp_To_Go179x135.jpg','/images/games/Word_Whomp_To_Go/Word_Whomp_To_Go320x240.jpg','false','/images/games/thumbnails_med_2/Word_Whomp_To_Go130x75.gif','/exe/Word_Whomp_Regular-setup.exe?lc=en&ext=Word_Whomp_Regular-setup.exe','A fun, fast-paced spelling game!','Building your vocabulary with the help of carrot crunching-gophers!','false',false,false,'Word Whomp (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',1003,111224490,'febf7d2a-bc58-4fd3-bac7-74a65e28364f','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',110127790,11122540,'f5e80954-8432-4e9a-9398-0353c75386c3','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(111232687,'Ocean Express','/images/games/Ocean_Express/Ocean_Express81x46.gif',110125467,111244930,'dfe0b6ca-cc4b-4547-90c2-05d0d926ae56','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(111263673,'Treasures of the Deep','/images/games/treasuresDeep/treasuresDeep81x46.gif',1007,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',1003,111276270,'','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(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 2','/images/games/big_kahuna_reef2/big_kahuna_reef281x46.jpg',1007,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(111322673,'SpongeBob Diner Dash','/images/games/spongebob_diner_dash/spongebob_diner_dash81x46.gif',110127790,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(111351203,'Luxor Bundle','/images/games/luxor_bundle/luxor_bundle81x46.jpg',1003,111363657,'','false','/images/games/luxor_bundle/luxor_bundle16x16.gif',false,11323,'/images/games/luxor_bundle/luxor_bundle100x75.jpg','/images/games/luxor_bundle/luxor_bundle179x135.jpg','/images/games/luxor_bundle/luxor_bundle320x240.jpg','false','/images/games/thumbnails_med_2/luxor_bundle130x75.gif','/exe/Luxor_Bundle-setup.exe?lc=en&ext=Luxor_Bundle-setup.exe','Two Luxor games at one low price!','Two Luxor games at one low price! Save ancient Egypt from doom!','false',false,false,'Luxor Bundle');ag(111355427,'Poker Pop','/images/games/poker_pop/poker_pop81x46.gif',1004,111367397,'8c77ac0e-3e36-410d-be67-4890429d6431','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(111473353,'Dynasty','/images/games/Dynasty/Dynasty81x46.jpg',1003,111487273,'','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.jpg','/exe/Dynasty_new-setup.exe?lc=en&ext=Dynasty_new-setup.exe','Free the baby dragons!','Free baby dragons from their eggs in this delightful ball-shooting game!','false',false,false,'Dynasty_new');ag(111543617,'Backspin Billiards','/images/games/backspinbill/backspinbill81x46.gif',110011217,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',1003,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',110127790,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(111691437,'Sweetopia','/images/games/Sweetopia/Sweetopia81x46.gif',1003,111706610,'','false','images/games/Sweetopia/Sweetopia16x16.gif',false,11323,'/images/games/Sweetopia/Sweetopia100x75.jpg','/images/games/Sweetopia/Sweetopia179x135.jpg','/images/games/Sweetopia/Sweetopia320x240.jpg','false','/images/games/thumbnails_med_2/Sweetopia130x75.gif','/exe/Sweetopia-setup.exe?lc=en&ext=Sweetopia-setup.exe','Save the candy factory from ruin! ','Keep candies from colliding on the factory conveyor belt!','false',false,false,'Sweetopia');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',1003,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,'d685fd9d-7efb-4a90-a2e1-0c178ce861ef','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(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(111939190,'Westward','/images/games/west/west81x46.gif',1100710,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',1008,111957693,'','false','/images/games/bookworm_adventures/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(112027253,'Reaxxion','/images/games/reaxx/reaxx81x46.gif',110127790,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',110127790,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(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,'06a958f1-f093-4b39-9bfc-82a689aee0bd','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',110011217,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,'88c32b41-ee42-4553-9398-f5b3378ff8ae','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',1007,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(112308810,'Fairy Godmother Tycoon&#153;','/images/games/fairygodmother/fairygodmother81x46.gif',110127790,112326797,'','false','/images/games/fairygodmother/fairygodmother16x16.gif',false,11323,'/images/games/fairygodmother/fairygodmother100x75.jpg','/images/games/fairygodmother/fairygodmother179x135.jpg','/images/games/fairygodmother/fairygodmother320x240.jpg','false','/images/games/thumbnails_med_2/fairygodmother130x75.gif','/exe/Fairy_Godmother_regular-setup.exe?lc=en&ext=Fairy_Godmother_regular-setup.exe','Build a potion empire!','Build a potion empire. Make a fortune!  ','false',false,false,'Fairy Godmother (regular)');ag(112548397,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',1007,1125667,'1d086e94-f005-40c7-865c-e698855fb19f','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',1007,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(112594657,'Talismania Deluxe','/images/games/talismania/talismania81x46.gif',1007,112612610,'3dfcfc15-a19a-47f9-9fe3-556a09a47601','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’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',1100710,112633440,'8ad3622c-8e60-420e-859e-b7e6b618e02b','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',1003,112641277,'7b593339-b69d-4300-9955-3db24a194db2','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(112662477,'Merriam Webster’s Spell-Jam','/images/games/MirriamWebster_spelljam/MirriamWebster_spelljam81x46.gif',110125467,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(112868583,'Chocolatier','/images/games/chocolatier/chocolatier81x46.gif',110127790,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',110127790,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',110127790,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',1003,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',1100710,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(112943570,'Supple','/images/games/supple/supple81x46.gif',1007,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(113009953,'Turbo Pizza','/images/games/turbo_pizza/turbo_pizza81x46.gif',110127790,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(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(113079173,'Snapshot Adventures','/images/games/snapshot_adventures/snapshot_adventures81x46.gif',110127790,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',1003,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(113128447,'Daycare Nightmare','/images/games/daycare_nightmare/daycare_nightmare81x46.gif',110127790,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',1007,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,'GHOST Hunters','/images/games/ghost_hunters/ghost_hunters81x46.gif',1100710,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(113274727,'Interpol: The Trail of Dr. Chaos','/images/games/interpol/interpol81x46.gif',1100710,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(113313917,'Jewel Quest® 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(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');ac(110088517,'Online Mahjong','mah_jong_quest OL');ag(113395247,'Mah Jong Quest','/images/games/mah_jong_quest/mah_jong_quest81x46.gif',110088517,113426230,'b0f1ad34-255c-4dce-927a-fb4ac18e34da','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.gif','/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',false,false,'mah_jong_quest OL');ag(113405543,'Sudoku Quest','/images/games/sudoku_quest/sudokuquest81x46.gif',110085510,113436527,'39582cb4-e825-4f0d-bdaf-7bbca8f9953a','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',110084727,113443747,'2090c7ff-5b7d-49d0-8536-2d061dc62438','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','','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',110085510,113444760,'00d3a1aa-c6e5-422c-85fd-c0e74bee21e1','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(113420980,'Fish Tycoon','/images/games/fish_tycoon/fish_tycoon81x46.gif',11009827,113451963,'9e10b30f-0507-4a3b-aa90-bfa3a0281bc9','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(113431293,'MCF: Prime Suspects','/images/games/MCF_prime/MCF_prime81x46.gif',110085510,113462277,'13224d94-9fc0-47b3-bba2-6c4594e90241','false','/images/games/MCF_prime/MCF_prime16x16.gif',false,11323,'/images/games/MCF_prime/MCF_prime100x75.jpg','/images/games/MCF_prime/MCF_prime179x135.jpg','/images/games/MCF_prime/MCF_prime320x240.jpg','false','/images/games/thumbnails_med_2/MCF_prime130x75.gif','','Recover the stolen diamond!','Uncover cleverly hidden clues to find the Queen’s stolen diamond!','true',false,false,'Mystery Case Files: Prime Sus');ag(113435403,'Glyph','/images/games/glyph/glyph81x46.gif',110085510,113466387,'716d5f2f-b6b9-4621-b521-905cec938ce9','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(113437463,'Hidden Expedition: Titanic','/images/games/he_titanic/he_titanic81x46.gif',110085510,113468450,'88d619e1-b65d-42f5-a0cd-9bed5bb1bea1','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(113441573,'Jewel Quest Solitaire','/images/games/jewelquest_sol/jewelquest_sol81x46.gif',110082753,113472560,'d685fd9d-7efb-4a90-a2e1-0c178ce861ef','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',110085510,113477713,'54014b8f-5b4f-4d66-a4fd-64874b5069e0','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','','Embark on a sparkling adventure! ','The ultimate jewel matching adventure returns! ','true',false,false,'Jewel Quest 2 OL');ag(113537610,'Build-a-lot','/images/games/build_a_lot/build_a_lot81x46.gif',110127790,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',1006,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(113644907,'Gold Miner Vegas','/images/games/gold_miner_vegas/gold_miner_vegas81x46.gif',1003,113675483,'02a12f6e-aa9a-4d76-aa3b-7021554684ff','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',110083820,113684530,'8c77ac0e-3e36-410d-be67-4890429d6431','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(113666647,'Luxor 3','/images/games/luxor3_new/luxor3_new81x46.gif',1003,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(113688733,'Rainbow Web','/images/games/rainbow_web/rainbow_web81x46.gif',110081853,113719450,'5399a010-91fe-400d-ad8c-e25288586179','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!','true',true,true,'Rainbow Web OLT1');ag(113690163,'Magic Match: Genies Journey','/images/games/magicmatch2/magicmatch281x46.gif',110081853,113721147,'88c32b41-ee42-4553-9398-f5b3378ff8ae','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',110081853,113723853,'3dfcfc15-a19a-47f9-9fe3-556a09a47601','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(113696883,'Bricks of Egypt 2','/images/games/bricks_of_egypt2/bricks_of_egypt281x46.gif',110081853,113727853,'d6e3faeb-5515-40c8-8d76-decdb4ad1b08','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',true,true,'Bricks of Egypt 2 OLT1');ag(113701667,'Bricks of Atlantis','/images/games/bricks_of_atlantis/bricks_of_atlantis81x46.gif',110081853,113732320,'9f0a8714-328d-452e-a262-f98ebd7b0ad5','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(113705863,'Tradewinds 2','/images/games/tradewinds2/tradewinds281x46.gif',110081853,113736817,'1d1dd83e-c3e2-4fba-9029-bb5d7a16cef9','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.','true',true,true,'Tradewinds 2 OLT1');ag(113706490,'Tradewinds Legends','/images/games/Tradewinds_Legends/Tradewinds_Legends81x46.gif',110081853,113737443,'a0ea07d5-68f1-4b37-badd-d0ba29b64969','false','/images/games/Tradewinds_Legends/Tradewinds_Legends16x16.gif',false,11323,'/images/games/Tradewinds_Legends/Tradewinds_Legends100x75.jpg','/images/games/Tradewinds_Legends/Tradewinds_Legends179x135.jpg','/images/games/Tradewinds_Legends/Tradewinds_Legends320x240.jpg','false','/images/games/thumbnails_med_2/Tradewinds_Legends130x75.gif','/exe/Tradewinds_Legends-setup.exe?lc=en&ext=Tradewinds_Legends-setup.exe','Build a fleet of magical battleships!','Build and sail a fleet of battleships to mythical lands!','true',true,true,'Tradewinds Legends OLT1');ag(113708560,'The Rise of Atlantis','/images/games/riseAtlantis/riseAtlantis81x46.gif',110082753,113739467,'1d086e94-f005-40c7-865c-e698855fb19f','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!','true',true,true,'The Rise of Atlantis OLT1');ag(113710930,'Bricks of Egypt','/images/games/bricks_of_egypt/bricks_of_egypt81x46.gif',110081853,113741913,'c29d81db-2e42-4031-a839-e754b894abb3','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!','true',true,true,'Bricks of Egypt -OLT1');ag(113714153,'Flip Words','/images/games/flipwords/flipwords81x46.jpg',110081853,113745123,'11ba0e23-80fc-45f2-946b-8cfd10d9b9fb','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- OLT1');ag(113716973,'Poker Superstars 2','/images/games/Poker_Superstars_2/Poker_Superstars_281x46.gif',110081853,113747957,'09925597-6a09-4766-b8aa-47271b4a42e9','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',110081853,113748177,'dfe0b6ca-cc4b-4547-90c2-05d0d926ae56','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!','true',true,true,'Ocean Express OLT1');ag(113718803,'Magic Match','/images/games/magic_match/magic_match81x46.gif',110085510,113749773,'436dde14-6309-4560-b5b5-1c8f29318935','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','','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',110127790,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(113748870,'El Dorado Quest','/images/games/el_dorado_quest/el_dorado_quest81x46.gif',1007,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',110127790,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,'ecb19752-4008-49fd-a722-46ee3aa2aa9f','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',110127790,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',110127790,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',110127790,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',1003,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(113820850,'Skywire','/images/games/skywire/skywire81x46.gif',110084727,113852447,'a4bf66dc-722f-499b-8acb-451f60b38a95','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',1007,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',1007,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(113893960,'The Fancy Pants Adventures','/images/games/fancy_pants_adventures/fancy_pants_adventures81x46.gif',110084727,113925770,'52e36e1a-37c7-4c85-980f-31464710768e','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',110084727,113938403,'fce9c93e-38fb-4d4b-9a87-31f52edc80d6','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(113916660,'Word Roundup','/images/games/word_roundup/word_roundup81x46.gif',110085510,113948443,'47365e7d-b092-4afd-9a50-96ec0a78f0a7','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(113938743,'Supercow','/images/games/supercow/supercow81x46.gif',110127790,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(114006463,'Super Granny 4','/images/games/super_granny_4/super_granny_481x46.gif',0,114038310,'','false','/images/games/super_granny_4/super_granny_416x16.gif',false,11323,'/images/games/super_granny_4/super_granny_4100x75.jpg','/images/games/super_granny_4/super_granny_4179x135.jpg','/images/games/super_granny_4/super_granny_4320x240.jpg','false','/images/games/thumbnails_med_2/super_granny_4130x75.gif','/exe/Super_Granny_4-setup.exe?lc=en&ext=Super_Granny_4-setup.exe','A globetrotting kitty rescue adventure!','Rescue kitties in a globetrotting adventure through six exotic locales!','false',false,false,'Super Granny 4');ag(114039310,'Turbo Subs','/images/games/Turbo_Subs/Turbo_Subs81x46.gif',110127790,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',110127790,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',110127790,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',110011217,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(114096970,'Dress Shop Hop','/images/games/dress_shop_hop/dress_shop_hop81x46.gif',110127790,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(114309710,'Golden Hearts Juice Bar','/images/games/golden_hearts/golden_hearts81x46.gif',110127790,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,'Jojos Fashion Show','/images/games/jojos_fashion_show/jojos_fashion_show81x46.gif',110127790,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(114378260,'Fashion Star','/images/games/fashion_star/fashion_star81x46.gif',110127790,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',1100710,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',110044360,11447293,'48b7a687-bc45-4130-b88e-0767f59ccd67','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',110127790,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(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(114639850,'Shift','/images/games/shift/shift81x46.gif',110084727,114672540,'1e6fa0dd-379b-4ad3-8862-ec08f6a63905','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(114649977,'Monster Mash','/images/games/monster_mash/monster_mash81x46.gif',1003,11468240,'','false','/images/games/monster_mash/monster_mash16x16.gif',false,11323,'/images/games/monster_mash/monster_mash100x75.jpg','/images/games/monster_mash/monster_mash179x135.jpg','/images/games/monster_mash/monster_mash320x240.jpg','false','/images/games/thumbnails_med_2/monster_mash130x75.gif','/exe/Monster_Mash-setup.exe?lc=en&ext=Monster_Mash-setup.exe','Protect villagers from bizarre monsters! ','Protect villagers from an invading horde of bizarre, quirky monsters! ','false',false,false,'Monster Mash');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',110127790,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(114668510,'Doggie Dash','/images/games/doggie_dash/doggie_dash81x46.gif',110127790,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',110081853,114704763,'708f8473-f800-47c1-bb3f-ce9b9cbafd5e','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(114680873,'Ice Cream Craze','/images/games/ice_cream_craze/ice_cream_craze81x46.gif',110127790,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(114711683,'Fashion Solitaire','/images/games/Fashion_Solitaire/Fashion_Solitaire81x46.gif',1004,114744887,'','false','/images/games/Fashion_Solitaire/Fashion_Solitaire16x16.gif',false,11323,'/images/games/Fashion_Solitaire/Fashion_Solitaire100x75.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',110127790,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',110127790,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',110127790,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(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',110081853,114771193,'15f15f7f-502e-4891-829f-76b7c2e04418','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',110044360,114773313,'f87eb522-89d8-4674-a80b-6746dde649b6','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');ac(110087360,'Online Cards','Poker Superstars 3 OLT1');ag(114753397,'Poker Superstars III','/images/games/poker_superstars_3/poker_superstars_381x46.gif',110087360,114786333,'ecb19752-4008-49fd-a722-46ee3aa2aa9f','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! ','true',true,true,'Poker Superstars 3 OLT1');ag(114767253,'The Price is Right','/images/games/the_price_is_right/the_price_is_right81x46.gif',0,114800130,'','false','/images/games/the_price_is_right/the_price_is_right16x16.gif',false,11323,'/images/games/the_price_is_right/the_price_is_right100x75.jpg','/images/games/the_price_is_right/the_price_is_right179x135.jpg','/images/games/the_price_is_right/the_price_is_right320x240.jpg','false','/images/games/thumbnails_med_2/the_price_is_right130x75.gif','/exe/The_Price_is_Right-setup.exe?lc=en&ext=The_Price_is_Right-setup.exe','16 great pricing challenges! ','“COME ON DOWN!” and compete in 16 great pricing challenges! ','false',false,false,'The Price is Right');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',1007,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',110127790,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',110081853,114840113,'9f1756a1-87ea-44ce-9001-cefec7ba3121','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',110083820,114841177,'4796622c-0a98-488e-951c-bb28c45b2ccf','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',110081853,114844583,'c4431343-5420-4c93-8e75-b18c2f18286e','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',110083820,114845410,'754885ec-5a74-4aca-a3d0-5f88e802160d','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',110081853,114846130,'a9639b44-1d49-41b5-be11-017b0e1b2f94','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!','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(114828640,'Garden Defense','/images/games/garden_defense/garden_defense81x46.gif',110081853,114861623,'a5ee7571-f6c9-449e-86bc-8710bfb74754','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(114852710,'Westward II: Heroes of the Frontier','/images/games/westward_2_heroes_of_the_frontier/westward_2_heroes_of_the_frontier81x46.gif',110127790,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',110127790,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',110085510,114888990,'0f9fa01e-1f7e-443a-a8e1-4ef988abb307','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',110085510,114889883,'611f3ddc-1665-4869-a6e1-b7bd4e70ee8a','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',110084727,114890210,'42c8ac8f-e67e-4910-a8f0-93075ce1a194','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',110085510,114891500,'7137ee42-89f5-4c35-9c86-16d227236807','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(114917810,'Escape the Museum','/images/games/escape_from_the_museum/escape_from_the_museum81x46.gif',0,114950700,'','false','/images/games/escape_from_the_museum/escape_from_the_museum16x16.gif',false,11323,'/images/games/escape_from_the_museum/escape_from_the_museum100x75.jpg','/images/games/escape_from_the_museum/escape_from_the_museum179x135.jpg','/images/games/escape_from_the_museum/escape_from_the_museum320x240.jpg','false','/images/games/thumbnails_med_2/escape_from_the_museum130x75.gif','/exe/Escape_the_Museum-setup.exe?lc=en&ext=Escape_the_Museum-setup.exe','Solve puzzles to survive an earthquake! ','Find your daughter in the rubble of a museum after an earthquake! ','false',false,false,'Escape the Museum');ag(114945627,'Family Feud III: Dream Home','/images/games/family_feud_3/family_feud_381x46.gif',110127790,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',1007,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',1007,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(114963583,'Beetle Bug 3','/images/games/beetle_bug_3/beetle_bug_381x46.gif',1003,114996380,'','false','/images/games/beetle_bug_3/beetle_bug_316x16.gif',false,11323,'/images/games/beetle_bug_3/beetle_bug_3100x75.jpg','/images/games/beetle_bug_3/beetle_bug_3179x135.jpg','/images/games/beetle_bug_3/beetle_bug_3320x240.jpg','false','/images/games/thumbnails_med_2/beetle_bug_3130x75.gif','/exe/Beetle_Bug_3-setup.exe?lc=en&ext=Beetle_Bug_3-setup.exe','Rescue Beetle Bug’s kidnapped offspring! ','Help Beetle Bug rescue his offspring in this all-new adventure! ','false',false,false,'Beetle Bug 3');ag(114964527,'Cooking Academy','/images/games/cooking_academy/cooking_academy81x46.gif',110127790,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(114972710,'Ice Cream Dee Lites','/images/games/ice_cream_dee_lites/ice_cream_dee_lites81x46.gif',110127790,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(114997207,'Legend of Aladdin','/images/games/legend_of_aladdin/legend_of_aladdin81x46.gif',110082753,115030160,'375d5350-81a2-473c-86ad-3128a4f9e76f','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(114999340,'ZOODomino','/images/games/zoo_domino/zoo_domino81x46.gif',110083820,115032260,'4eedaa00-3c7c-4597-845d-e5c6aaf378f5','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(115002687,'Pet Shop Hop','/images/games/pet_shop_hop/pet_shop_hop81x46.gif',110127790,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',110084727,11504480,'76c2a53b-8bd2-4dfd-9c92-4ef5a4a4415c','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(115014520,'Kindergarten','/images/games/Kindergarten/Kindergarten81x46.gif',11009827,115047503,'ccc90109-f2bf-40ef-81e0-072ddc44b046','false','/images/games/Kindergarten/Kindergarten16x16.gif',false,11323,'/images/games/Kindergarten/Kindergarten100x75.jpg','/images/games/Kindergarten/Kindergarten179x135.jpg','/images/games/Kindergarten/Kindergarten320x240.jpg','false','/images/games/thumbnails_med_2/Kindergarten130x75.gif','','Manage a day care center. ','Care for babies dropped off at your day care center! ','true',false,false,'Kindergarten OL');ag(115017100,'Nanny Mania','/images/games/NannyMania/NannyMania81x46.gif',110083820,115050913,'882dc7bd-4b95-41e4-af91-f17f8950b18a','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',110082753,115066743,'234ae190-63b3-4f6a-81e0-f677da2ee07f','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',110081853,115072733,'7b593339-b69d-4300-9955-3db24a194db2','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',110084727,115080633,'1875a15d-6a13-4261-b97b-05b42faa60c6','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',110084727,115081127,'08b9aab3-5f06-41b0-979a-8ac20d2ab5ed','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',1100710,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',110127790,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',110127790,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',110085510,115091213,'059a3e77-603c-4dea-91df-a652d95eae2f','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',1003,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',1007,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(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',110127790,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',110084727,115113963,'6004e2d9-3274-42fa-9486-2ebed35b5115','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',110085510,11513340,'623853d8-4d7e-48d0-bc64-014dac1cc28e','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(115118933,'Fitz','/images/games/fitz/fitz81x46.gif',110085510,115151857,'230d004d-e29d-47ec-bcb6-a78a1ba2d792','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',1100710,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(115125397,'Supermarket Mania','/images/games/supermarket_mania/supermarket_mania81x46.gif',110127790,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',1100710,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',110081853,115178470,'0cf0aad4-5de2-46b9-b457-e4a69ecfa8a9','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',110081853,115179790,'c0afb164-1902-48f2-95fd-b956460f0634','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',110082753,115188310,'bfcafbec-7545-4969-bfdc-55844630d916','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(115162883,'Wedding Dash 2','/images/games/wedding_dash_2/wedding_dash_281x46.gif',110127790,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(115172877,'Pool Jam','/images/games/pool_jam/pool_jam81x46.gif',110081853,115205970,'c31213c1-57e0-4b3d-8c99-69b6c8fe54fb','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',110081853,115206893,'add02c6e-f2ad-440a-a2e3-53749cdaff80','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',110081853,115209793,'34f21586-06ce-4066-b3df-98d67021054e','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(115189690,'Hell&rsquo;s Kitchen','/images/games/hells_kitchen/hells_kitchen81x46.gif',110127790,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(115190197,'Tradewinds Caravans','/images/games/tradewinds_caravans/tradewinds_caravans81x46.gif',1003,115223260,'','false','/images/games/tradewinds_caravans/tradewinds_caravans16x16.gif',false,11323,'/images/games/tradewinds_caravans/tradewinds_caravans100x75.jpg','/images/games/tradewinds_caravans/tradewinds_caravans179x135.jpg','/images/games/tradewinds_caravans/tradewinds_caravans320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds_caravans130x75.gif','/exe/Tradewinds_Caravans-setup.exe?lc=en&ext=Tradewinds_Caravans-setup.exe','Navigate a treacherous trade route! ','Navigate a treacherous trade route swarming with bandits and mythical creatures! ','false',false,false,'Tradewinds Caravans');ag(115208410,'First Class Flurry','/images/games/first_class_flurry/first_class_flurry81x46.gif',110127790,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',110085510,115245403,'4e9ae30c-6e4e-4ebc-84f8-ab503edb5139','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',11009827,115246227,'306f1728-1eb6-4f4b-87af-6147bae09786','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',110127790,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',11009827,115252850,'e9e35b10-07f2-4dad-b146-e5a30fec93c5','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',110127790,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',1007,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',110127790,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',1007,115265627,'fec0d21c-4b05-43c3-b428-21c68672930d','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',1100710,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(115237770,'Arctic Quest 2','/images/games/Arctic_Quest_2/Arctic_Quest_281x46.gif',110085510,115270913,'8e35251f-bfcf-44d0-bab8-bd1abee785df','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',110085510,115271617,'2be44679-accd-4f89-afe2-0058a3052910','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',110088517,115272703,'0c24ba8f-232b-4539-b1c9-eb83b96686e7','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',110085510,115273243,'9d08f73a-9ea7-4337-aecb-516b92880b32','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(115250583,'Fishdom','/images/games/fishdom/fishdom81x46.gif',110081853,115283787,'7b5ca69a-e1da-4b82-ba27-f7ccff1de916','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',110081853,115284133,'25e1d6d4-6b7e-4488-a514-d3f9ba99297b','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(115258960,'The Princess Bride Game','/images/games/the_princess_bride_game/the_princess_bride_game81x46.gif',110083820,11529187,'6d00e5aa-c768-4b25-8e3d-7e26ff08a5c4','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',110084727,115293713,'14cdef07-4833-48b6-af7d-ec915bb25e5e','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',110127790,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',1003,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(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(115282457,'Lightning','/images/games/lightning/lightning81x46.gif',110082753,115315317,'39cde4dc-0c78-4f81-a5b8-223159b9e5c3','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',110083820,115317760,'1eccc0fe-de49-451e-a696-6872330a694d','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',110127790,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',110081853,115328673,'fec0d21c-4b05-43c3-b428-21c68672930d','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!','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',110127790,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',110127790,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',1003,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',110081853,115356327,'d380b04b-acd9-42fd-a510-5f3ff63d16e5','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',110127790,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(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',110085510,11536933,'a495d57a-9285-4d7a-a49a-b008921733a2','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',1003,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',110127790,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',1007,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',1003,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',110127790,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(115415417,'Magic Encyclopedia First Story','/images/games/magic_encyclopedia/magic_encyclopedia81x46.gif',1007,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',1007,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',110044360,115457967,'ecb9f07c-2a85-4ca9-a536-d02ad00388a1','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(115430860,'Amazing Adventures: Around The World','/images/games/amazing_adventures_atw/amazing_adventures_atw81x46.gif',1100710,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(115437737,'Mystery Stories: Island Of Hope','/images/games/mystery_stories_island_of_hope/mystery_stories_island_of_hope81x46.gif',1100710,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',1003,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',1003,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(115455627,'Cake Mania 3','/images/games/cake_mania_3/cake_mania_381x46.gif',110127790,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',1007,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(115459780,'Mystery of Unicorn Castle','/images/games/mystery_of_unicorn_castle/mystery_of_unicorn_castle81x46.gif',1100710,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',110011217,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',110085510,115508293,'696085ac-dfbd-4da5-92c6-ad72173e79c8','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(115479450,'Pet Show Craze','/images/games/pet_show_craze/pet_show_craze81x46.gif',1003,115514340,'','false','/images/games/pet_show_craze/pet_show_craze16x16.gif',false,11323,'/images/games/pet_show_craze/pet_show_craze100x75.jpg','/images/games/pet_show_craze/pet_show_craze179x135.jpg','/images/games/pet_show_craze/pet_show_craze320x240.jpg','false','/images/games/thumbnails_med_2/pet_show_craze130x75.gif','/exe/pet_show_craze-setup.exe?lc=en&ext=pet_show_craze-setup.exe','Groom pets for “Best in Show!”','Transform cuddly kittens and adoring doggies into ”Best in Show” contenders!','false',false,false,'Pet Show Craze');ag(115489243,'Hide and Secret 2 Cliffhunger Castle','/images/games/hide_and_secret_2/hide_and_secret_281x46.gif',1007,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(115495490,'10 Days Under the Sea','/images/games/10_days_under_the_sea/10_days_under_the_sea81x46.gif',1007,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',1007,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',110081853,115564157,'77f0b73d-6cba-4675-936a-4b36950c8e9c','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',1100710,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/DrLynchGraveSecrets/DrLynchGraveSecrets81x46.gif',1100710,115575667,'','false','/images/games/DrLynchGraveSecrets/DrLynchGraveSecrets16x16.gif',false,11323,'/images/games/DrLynchGraveSecrets/DrLynchGraveSecrets100x75.jpg','/images/games/DrLynchGraveSecrets/DrLynchGraveSecrets179x135.jpg','/images/games/DrLynchGraveSecrets/DrLynchGraveSecrets320x240.jpg','false','/images/games/thumbnails_med_2/DrLynchGraveSecrets130x75.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',1003,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',1007,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(115572357,'Fishco','/images/games/fishco/fishco81x46.gif',1003,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(115583260,'Tradewinds Classic','/images/games/tradewinds_classic/tradewinds_classic81x46.gif',1003,11561857,'','false','/images/games/tradewinds_classic/tradewinds_classic16x16.gif',false,11323,'/images/games/tradewinds_classic/tradewinds_classic100x75.jpg','/images/games/tradewinds_classic/tradewinds_classic179x135.jpg','/images/games/tradewinds_classic/tradewinds_classic320x240.jpg','false','/images/games/thumbnails_med_2/tradewinds_classic130x75.gif','/exe/tradewinds_classic-setup.exe?lc=en&ext=tradewinds_classic-setup.exe','Collect bounties from villainous pirates!','Collect bounties by defeating villainous pirates roaming the high seas!','false',false,false,'Tradewinds Classic');ag(115586140,'Baseball','/images/games/baseball/baseball81x46.gif',110084727,115621970,'e83a1f54-a993-413f-9da1-08d9f6ac4bad','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',1003,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',1100710,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',1007,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(115607753,'Diner Dash: Flo Through Time','/images/games/diner_dash_flo_through_time/diner_dash_flo_through_time81x46.gif',1003,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',1007,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',1100710,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',1003,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(115650950,'Top Chef','/images/games/top_chef/top_chef81x46.gif',1003,115685343,'','false','/images/games/top_chef/top_chef16x16.gif',false,11323,'/images/games/top_chef/top_chef100x75.jpg','/images/games/top_chef/top_chef179x135.jpg','/images/games/top_chef/top_chef320x240.jpg','false','/images/games/thumbnails_med_2/top_chef130x75.gif','/exe/top_chef-setup.exe?lc=en&ext=top_chef-setup.exe','Compete in exciting cooking competitions!','Choose your ingredients wisely in cooking competitions against talented chefs!','false',false,false,'Top Chef');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',110085510,11569260,'233fe2bc-8fc6-40cd-8f4c-179fa8e204da','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',110082753,115695223,'5474af1a-1292-40cf-bd09-2e1dc0d9e70f','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',110081853,115705243,'ec312c1a-02ec-46ab-92d5-00d13068cac3','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(115677660,'Swarm Gold','/images/games/swarm_gold/swarm_gold81x46.gif',1003,115712910,'','false','/images/games/swarm_gold/swarm_gold16x16.gif',false,11323,'/images/games/swarm_gold/swarm_gold100x75.jpg','/images/games/swarm_gold/swarm_gold179x135.jpg','/images/games/swarm_gold/swarm_gold320x240.jpg','false','/images/games/thumbnails_med_2/swarm_gold130x75.gif','/exe/swarm_gold-setup.exe?lc=en&ext=swarm_gold-setup.exe','Adrenaline-pumping sci-fi destruction!','Brace yourself for adrenaline-pumping destruction in this sci-fi shooter!','false',false,false,'Swarm Gold');ag(115704307,'Call Of Atlantis','/images/games/call_of_atlantis/call_of_atlantis81x46.gif',1007,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',110082753,115743193,'0e76aeb7-5d18-43c7-866a-a2c2c745c96d','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',1100710,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(115724847,'Fitness Dash','/images/games/fitness_dash/fitness_dash81x46.gif',1003,115759660,'','false','/images/games/fitness_dash/fitness_dash16x16.gif',false,11323,'/images/games/fitness_dash/fitness_dash100x75.jpg','/images/games/fitness_dash/fitness_dash179x135.jpg','/images/games/fitness_dash/fitness_dash320x240.jpg','false','/images/games/thumbnails_med_2/fitness_dash130x75.gif','/exe/fitness_dash-setup.exe?lc=en&ext=fitness_dash-setup.exe','Whip DinerTown customers back into shape!','Help the citizens of DinerTown exercise themselves back into shape!','false',false,false,'Fitness Dash');ag(115725340,'My Tribe','/images/games/my_tribe/my_tribe81x46.gif',110127790,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',110082753,115765837,'6162a231-e91f-48e1-b989-0c081597bed3','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',110082753,115768597,'460f3bff-6598-422d-848f-7c5889403fd3','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(115735150,'Build-a-lot 3','/images/games/build_a_lot_3/build_a_lot_381x46.gif',110127790,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',1100710,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',110127790,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(115780640,'Cooking Quest','/images/games/cooking_quest/cooking_quest81x46.gif',1007,115815373,'','false','/images/games/cooking_quest/cooking_quest16x16.gif',false,11323,'/images/games/cooking_quest/cooking_quest100x75.jpg','/images/games/cooking_quest/cooking_quest179x135.jpg','/images/games/cooking_quest/cooking_quest320x240.jpg','false','/images/games/thumbnails_med_2/cooking_quest130x75.gif','/exe/cooking_quest-setup.exe?lc=en&ext=cooking_quest-setup.exe','Slice, Dice, and Serve up Critical Praise!','Buy ingredients, prepare courses, and serve up some critical praise!','false',false,false,'Cooking Quest');ag(115781567,'Farm Craft','/images/games/farm_craft/farm_craft81x46.gif',1003,115816460,'','false','/images/games/farm_craft/farm_craft16x16.gif',false,11323,'/images/games/farm_craft/farm_craft100x75.jpg','/images/games/farm_craft/farm_craft179x135.jpg','/images/games/farm_craft/farm_craft320x240.jpg','false','/images/games/thumbnails_med_2/farm_craft130x75.gif','/exe/farm_craft-setup.exe?lc=en&ext=farm_craft-setup.exe','Save farms from corporate takeover!','Save local farms from takeover by a huge agricultural conglomerate!','false',false,false,'Farm Craft');ag(115782993,'Holly A Christmas Tale Deluxe','/images/games/holly_a_christmas_tale_deluxe/holly_a_christmas_tale_deluxe81x46.gif',110085510,115817887,'0403d8bc-ed2c-491a-8908-e99c5dec9424','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','','Find hidden toys for Santa!','Help Santa find the items he needs to complete his rounds!','true',false,false,'Holly A Christmas Tale Deluxe');ag(115783343,'Piggly Christmas Edition','/images/games/piggly_christmas_edition/piggly_christmas_edition81x46.gif',1003,115818577,'','false','/images/games/piggly_christmas_edition/piggly_christmas_edition16x16.gif',false,11323,'/images/games/piggly_christmas_edition/piggly_christmas_edition100x75.jpg','/images/games/piggly_christmas_edition/piggly_christmas_edition179x135.jpg','/images/games/piggly_christmas_edition/piggly_christmas_edition320x240.jpg','false','/images/games/thumbnails_med_2/piggly_christmas_edition130x75.gif','/exe/piggly_christmas_edition-setup.exe?lc=en&ext=piggly_christmas_edition-setup.exe','Collect Fiesty Apples for Homemade Pies!','Help Mrs. Piggly juggle, tumble, and collect fiesty apples for homemade pies!','false',false,false,'Piggly Christmas Edition');ag(115785620,'Fabulous Finds','/images/games/fabulous_finds/fabulous_finds81x46.gif',1100710,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(116401400,'Burger Island 2','/images/games/burger_island_2/burger_island_281x46.gif',1003,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’s hungry customers!','false',false,false,'Burger Island 2');ag(116402277,'County Fair','/images/games/country_fair/country_fair81x46.gif',1003,116437323,'','false','/images/games/country_fair/country_fair16x16.gif',false,11323,'/images/games/country_fair/country_fair100x75.jpg','/images/games/country_fair/country_fair179x135.jpg','/images/games/country_fair/country_fair320x240.jpg','false','/images/games/thumbnails_med_2/country_fair130x75.gif','/exe/county_fair-setup.exe?lc=en&ext=county_fair-setup.exe','Operate rides at spectacular county fairs!','Operate wild rides and fascinating attractions at spectacular county fairs!','false',false,false,'County Fair');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',1100710,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',1100710,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',1007,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',1100710,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’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',110127790,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',110127790,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',110127790,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',110127790,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',110082753,116548277,'d605062d-3a77-4f75-ba0a-a8027482800a','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',1003,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(116514193,'Fix-it-up: Kate`s Adventure','/images/games/fix_it_up_kates_adventure/fix_it_up_kates_adventure81x46.gif',1003,116550850,'','false','/images/games/fix_it_up_kates_adventure/fix_it_up_kates_adventure16x16.gif',false,11323,'/images/games/fix_it_up_kates_adventure/fix_it_up_kates_adventure100x75.jpg','/images/games/fix_it_up_kates_adventure/fix_it_up_kates_adventure179x135.jpg','/images/games/fix_it_up_kates_adventure/fix_it_up_kates_adventure320x240.jpg','false','/images/games/thumbnails_med_2/fix_it_up_kates_adventure130x75.gif','/exe/fix_it_up_kates_adventure-setup.exe?lc=en&ext=fix_it_up_kates_adventure-setup.exe','This Shop Needs a Total Tune-up!','Give this shop a total tune-up and build an automotive empire!','false',false,false,'Fix it up Kates Adventure');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',0,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',1003,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',110127790,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',1003,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',1007,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,'Womens Murder Club: A Darker Shade of Grey','/images/games/wmc2/wmc281x46.gif',1100710,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',110082753,116598140,'ff9f829a-4d29-4f52-ba86-ff9287d866e3','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(116563147,'Cooking Academy 2 World Cuisine','/images/games/cooking_academy_2/cooking_academy_281x46.gif',1003,116599427,'','false','/images/games/cooking_academy_2/cooking_academy_216x16.gif',false,11323,'/images/games/cooking_academy_2/cooking_academy_2100x75.jpg','/images/games/cooking_academy_2/cooking_academy_2179x135.jpg','/images/games/cooking_academy_2/cooking_academy_2320x240.jpg','false','/images/games/thumbnails_med_2/cooking_academy_2130x75.gif','/exe/cooking_academy_2_world_cuisine-setup.exe?lc=en&ext=cooking_academy_2_world_cuisine-setup.exe','A Cross-cultural Culinary Challenge!','Prepare 60 different recipes in this cross-cultural culinary challenge!','false',false,false,'Cooking Academy 2 World Cuisin');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',110127790,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',110127790,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(116573793,'Dream Day Couple','/images/games/bundle_dreamday/bundle_dreamday81x46.gif',1100710,116609640,'','false','/images/games/bundle_dreamday/bundle_dreamday16x16.gif',false,11323,'/images/games/bundle_dreamday/bundle_dreamday100x75.jpg','/images/games/bundle_dreamday/bundle_dreamday179x135.jpg','/images/games/bundle_dreamday/bundle_dreamday320x240.jpg','false','/images/games/thumbnails_med_2/bundle_dreamday130x75.gif','/exe/dream_day_bundle-setup.exe?lc=en&ext=dream_day_bundle-setup.exe','Sweetheart of a deal: 2 Games at a special price!','A sweetheart of a deal: 2 romantic fantasies at a special price!','false',false,false,'Dream Day Bundle');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',1007,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',1100710,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’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',1007,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',110011217,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',110084727,116727420,'f31d67a8-8bbc-469c-8427-2e5295894b48','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',110044360,116731890,'a7bef1ac-cf06-4343-9355-700477102a52','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(116703127,'Party Down','/images/games/party_down/party_down81x46.gif',1003,116739923,'','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','/exe/party_down-setup.exe?lc=en&ext=party_down-setup.exe','The Ultimate Party Planning Fantasy!','Live the ultimate party planning fantasy as you cater to Hollywood’s elite!','false',false,false,'Party Down');ag(116723770,'Annabel','/images/games/annabel/annabel81x46.gif',1100710,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(116726920,'Fab Fashion','/images/games/fab_fashion/fab_fashion81x46.gif',1003,116762577,'','false','/images/games/fab_fashion/fab_fashion16x16.gif',false,11323,'/images/games/fab_fashion/fab_fashion100x75.jpg','/images/games/fab_fashion/fab_fashion179x135.jpg','/images/games/fab_fashion/fab_fashion320x240.jpg','false','/images/games/thumbnails_med_2/fab_fashion130x75.gif','/exe/fab_fashion-setup.exe?lc=en&ext=fab_fashion-setup.exe','Create Designs to Rock the Runway!','Create cutting-edge garments to become the runway’s top designer!','false',false,false,'Fab Fashion');ag(116727460,'Insider Tales: The Stolen Venus','/images/games/insider_tales_stolen_venus/insider_tales_stolen_venus81x46.gif',1007,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, suspicions, and conspiracies behind a missing masterpiece!','false',false,false,'Insider Tales: The Stolen Venu');ag(116757403,'Mevo and The Groove Riders','/images/games/mevo_and_the_grooveriders/mevo_and_the_grooveriders81x46.gif',110127790,116793417,'','false','/images/games/mevo_and_the_grooveriders/mevo_and_the_grooveriders16x16.gif',false,11323,'/images/games/mevo_and_the_grooveriders/mevo_and_the_grooveriders100x75.jpg','/images/games/mevo_and_the_grooveriders/mevo_and_the_grooveriders179x135.jpg','/images/games/mevo_and_the_grooveriders/mevo_and_the_grooveriders320x240.jpg','false','/images/games/thumbnails_med_2/mevo_and_the_grooveriders130x75.gif','/exe/mevo-setup.exe?lc=en&ext=mevo-setup.exe','Band Jams to Save the World!','Reunite Mevo’s band and bring FUNK back to the universe!','false',false,false,'Mevo');ag(116758403,'Dream Day Wedding: Viva Las Vegas','/images/games/dream_day_wedding_viva_las_vegas/dream_day_wedding_viva_las_vegas81x46.gif',1100710,116794403,'','false','/images/games/dream_day_wedding_viva_las_vegas/dream_day_wedding_viva_las_vegas16x16.gif',false,11323,'/images/games/dream_day_wedding_viva_las_vegas/dream_day_wedding_viva_las_vegas100x75.jpg','/images/games/dream_day_wedding_viva_las_vegas/dream_day_wedding_viva_las_vegas179x135.jpg','/images/games/dream_day_wedding_viva_las_vegas/dream_day_wedding_viva_las_vegas320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_wedding_viva_las_vegas130x75.gif','/exe/dream_day_wedding_3-setup.exe?lc=en&ext=dream_day_wedding_3-setup.exe','A romantic seek & find adventure!','Plan the perfect Vegas wedding in this romantic seek & find adventure','false',false,false,'Dream Day Wedding 3');ag(116760233,'Scary Mary','/images/games/scary_mary/scary_mary81x46.gif',110083820,116796263,'84876768-1d61-4d50-9be3-d7606a82617a','false','/images/games/scary_mary/scary_mary16x16.gif',false,11323,'/images/games/scary_mary/scary_mary100x75.jpg','/images/games/scary_mary/scary_mary179x135.jpg','/images/games/scary_mary/scary_mary320x240.jpg','false','/images/games/thumbnails_med_2/scary_mary130x75.gif','','Spin the net!','Spin the net and take care of the enemies!','true',true,true,'Scary Mary OLT1 AS3');ag(116765300,'Emerald City Confidential','/images/games/emerald_city_confidential/emerald_city_confidential81x46.gif',110127790,116801457,'','false','/images/games/emerald_city_confidential/emerald_city_confidential16x16.gif',false,11323,'/images/games/emerald_city_confidential/emerald_city_confidential100x75.jpg','/images/games/emerald_city_confidential/emerald_city_confidential179x135.jpg','/images/games/emerald_city_confidential/emerald_city_confidential320x240.jpg','false','/images/games/thumbnails_med_2/emerald_city_confidential130x75.gif','/exe/emerald_city_confidential-setup.exe?lc=en&ext=emerald_city_confidential-setup.exe','You’re not in Kansas anymore!','Explore the underbelly of Oz as the Emerald City’s most cunning detective!','false',false,false,'Emerald City Confidential');ag(116798800,'Mean Girls','/images/games/MeanGirls/MeanGirls81x46.gif',1007,11683420,'','false','/images/games/MeanGirls/MeanGirls16x16.gif',false,11323,'/images/games/MeanGirls/MeanGirls100x75.jpg','/images/games/MeanGirls/MeanGirls179x135.jpg','/images/games/MeanGirls/MeanGirls320x240.jpg','false','/images/games/thumbnails_med_2/MeanGirls130x75.gif','/exe/mean_girls-setup.exe?lc=en&ext=mean_girls-setup.exe','Battle Bratty High School Enemies!','Battle the brattiest high school enemies and humiliate them with your match-3 gaming!','false',false,false,'meangirls_microsoftvistaxp_en');ag(116801763,'CoyotesTale','/images/games/coyotes_tale/coyotes_tale81x46.gif',1007,116837653,'','false','/images/games/coyotes_tale/coyotes_tale16x16.gif',false,11323,'/images/games/coyotes_tale/coyotes_tale100x75.jpg','/images/games/coyotes_tale/coyotes_tale179x135.jpg','/images/games/coyotes_tale/coyotes_tale320x240.jpg','false','/images/games/thumbnails_med_2/coyotes_tale130x75.gif','/exe/coyotestale-setup.exe?lc=en&ext=coyotestale-setup.exe','Challenge mischievous Aztec gods!','Challenge Aztec gods as you save the world from destruction!','false',false,false,'CoyotesTale');ag(116802393,'Fishing Craze','/images/games/fishing_craze/fishing_craze81x46.gif',110127790,116838957,'','false','/images/games/fishing_craze/fishing_craze16x16.gif',false,11323,'/images/games/fishing_craze/fishing_craze100x75.jpg','/images/games/fishing_craze/fishing_craze179x135.jpg','/images/games/fishing_craze/fishing_craze320x240.jpg','false','/images/games/thumbnails_med_2/fishing_craze130x75.gif','/exe/fishing_craze-setup.exe?lc=en&ext=fishing_craze-setup.exe','Compete in countrywide fishing tournaments!','Compete in a series of fishing tournaments across the country!','false',false,false,'Fishing Craze');ag(116815903,'Samantha Swift and the Golden Touch','/images/games/samantha_swift_2/samantha_swift_281x46.gif',1100710,116851903,'','false','/images/games/samantha_swift_2/samantha_swift_216x16.gif',false,11323,'/images/games/samantha_swift_2/samantha_swift_2100x75.jpg','/images/games/samantha_swift_2/samantha_swift_2179x135.jpg','/images/games/samantha_swift_2/samantha_swift_2320x240.jpg','false','/images/games/thumbnails_med_2/samantha_swift_2130x75.gif','/exe/samantha_swift_2-setup.exe?lc=en&ext=samantha_swift_2-setup.exe','Unravel the Mystery of King Midas’ Touch!','Help a fearless archaeologist unravel the mystery of King Midas’ Golden Touch!','false',false,false,'Samantha Swift and the Golden');ag(116838547,'Mark and Mandi’s Love Story','/images/games/mark_and_mandis_love_story/mark_and_mandis_love_story81x46.gif',110083820,116874640,'9c4db67d-6db5-4401-a863-966e8ab9e3bd','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','','A romantic find-the-difference adventure!','A find-the-difference hidden object adventure filled with romance!','true',true,true,'Mark and Mandi Love Story OLT1');ag(116845570,'Mushroom Revolution','/images/games/mushroom_revolution/mushroom_revolution81x46.gif',110082753,116881710,'60a22d06-449f-4dc6-b47e-d22cd6c9e104','false','/images/games/mushroom_revolution/mushroom_revolution16x16.gif',false,11323,'/images/games/mushroom_revolution/mushroom_revolution100x75.jpg','/images/games/mushroom_revolution/mushroom_revolution179x135.jpg','/images/games/mushroom_revolution/mushroom_revolution320x240.jpg','false','/images/games/mushroom_revolution/blank_mushroom_revolution130x75.gif','','An addicting tower defense game','An addicting tower defense game with endless combinations and possibilities.','true',true,true,'Mushroom Revolution OLT1 AS2');ag(116856320,'Paranormal Agency','/images/games/paranormal_agency/paranormal_agency81x46.gif',1100710,116892493,'','false','/images/games/paranormal_agency/paranormal_agency16x16.gif',false,11323,'/images/games/paranormal_agency/paranormal_agency100x75.jpg','/images/games/paranormal_agency/paranormal_agency179x135.jpg','/images/games/paranormal_agency/paranormal_agency320x240.jpg','false','/images/games/thumbnails_med_2/paranormal_agency130x75.gif','/exe/paranormal_agency-setup.exe?lc=en&ext=paranormal_agency-setup.exe','Haunted Hidden-Object with Supernatural Suspense!','Help a detective with supernatural skills take on a haunted hidden-object mystery!','false',false,false,'Paranormal Agency');ag(116857623,'Sudoku Traveler: China','/images/games/sudoku_traveler_china/sudoku_traveler_china81x46.gif',1007,116893750,'','false','/images/games/sudoku_traveler_china/sudoku_traveler_china16x16.gif',false,11323,'/images/games/sudoku_traveler_china/sudoku_traveler_china100x75.jpg','/images/games/sudoku_traveler_china/sudoku_traveler_china179x135.jpg','/images/games/sudoku_traveler_china/sudoku_traveler_china320x240.jpg','false','/images/games/thumbnails_med_2/sudoku_traveler_china130x75.gif','/exe/sudoku_traveler_china-setup.exe?lc=en&ext=sudoku_traveler_china-setup.exe','Unlimited Sudoku plus National Geographic Photography!','Unlimited, customizable Sudoku complemented by stunning National Geographic photography of China!','false',false,false,'Sudoku Traveler China');ag(116864777,'Piggly','/images/games/piggly/piggly81x46.gif',110127790,116900997,'','false','/images/games/piggly/piggly16x16.gif',false,11323,'/images/games/piggly/piggly100x75.jpg','/images/games/piggly/piggly179x135.jpg','/images/games/piggly/piggly320x240.jpg','false','/images/games/thumbnails_med_2/piggly130x75.gif','/exe/piggly-setup.exe?lc=en&ext=piggly-setup.exe','The Mother of All Missions!','An apple quest for Mrs. Piggly&rsquo;s pie - the mother of all missions!  ','false',false,false,'Piggly');ag(116866250,'Escape Rosecliff Island','/images/games/escape_rosecliff_island/escape_rosecliff_island81x46.gif',1100710,116902187,'','false','/images/games/escape_rosecliff_island/escape_rosecliff_island16x16.gif',false,11323,'/images/games/escape_rosecliff_island/escape_rosecliff_island100x75.jpg','/images/games/escape_rosecliff_island/escape_rosecliff_island179x135.jpg','/images/games/escape_rosecliff_island/escape_rosecliff_island320x240.jpg','false','/images/games/thumbnails_med_2/escape_rosecliff_island130x75.gif','/exe/escape_rosecliff_island-setup.exe?lc=en&ext=escape_rosecliff_island-setup.exe','Seek and Find to Save Yourself!','Shipwrecked and stranded, you must seek and find to save yourself!','false',false,false,'Escape from Rosecliff island');ag(116878750,'Adventures of Robinson Crusoe','/images/games/adventures_of_robinson_crusoe/adventures_of_robinson_crusoe81x46.gif',1100710,116914263,'','false','/images/games/adventures_of_robinson_crusoe/adventures_of_robinson_crusoe16x16.gif',false,11323,'/images/games/adventures_of_robinson_crusoe/adventures_of_robinson_crusoe100x75.jpg','/images/games/adventures_of_robinson_crusoe/adventures_of_robinson_crusoe179x135.jpg','/images/games/adventures_of_robinson_crusoe/adventures_of_robinson_crusoe320x240.jpg','false','/images/games/thumbnails_med_2/general/adventures_of_robinson_crusoe130x75.gif','/exe/adventures_of_robinson_crusoe-setup.exe?lc=en&ext=adventures_of_robinson_crusoe-setup.exe','Cast Away Quest for Hidden Objects!','Help Robinson escape a Caribbean island in this cast away quest for hidden objects!','false',false,false,'Adventures of Robinson Crusoe');ag(116879907,'Mae Q’West and the Sign of the Stars','/images/games/mae_q_west/mae_q_west81x46.gif',1100710,116915690,'','false','/images/games/mae_q_west/mae_q_west16x16.gif',false,11323,'/images/games/mae_q_west/mae_q_west100x75.jpg','/images/games/mae_q_west/mae_q_west179x135.jpg','/images/games/mae_q_west/mae_q_west320x240.jpg','false','/images/games/thumbnails_med_2/mae_q_west130x75.gif','/exe/mae_qwest_and_the_sign_of_the_stars-setup.exe?lc=en&ext=mae_qwest_and_the_sign_of_the_stars-setup.exe','Hidden Object Adventure of Mysterious Horoscopes!','Find Mae’s missing husband by solving this horoscope-driven hidden object mystery!','false',false,false,'Mae QWest and the Sign of the');ag(116881683,'Diaper Dash','/images/games/diaper_dash/diaper_dash81x46.gif',1003,116917183,'','false','/images/games/diaper_dash/diaper_dash16x16.gif',false,11323,'/images/games/diaper_dash/diaper_dash100x75.jpg','/images/games/diaper_dash/diaper_dash179x135.jpg','/images/games/diaper_dash/diaper_dash320x240.jpg','false','/images/games/thumbnails_med_2/diaper_dash130x75.gif','/exe/diaper_dash-setup.exe?lc=en&ext=diaper_dash-setup.exe','Cute and Cuddly Daycare Duty!','Cater to DinerTown&#39;s cutest crowd when you report for daycare duty!','false',false,false,'Diaper Dash');ag(116893980,'Paradise Quest','/images/games/paradise_quest/paradise_quest81x46.gif',1007,116929743,'','false','/images/games/paradise_quest/paradise_quest16x16.gif',false,11323,'/images/games/paradise_quest/paradise_quest100x75.jpg','/images/games/paradise_quest/paradise_quest179x135.jpg','/images/games/paradise_quest/paradise_quest320x240.jpg','false','/images/games/thumbnails_med_2/paradise_quest130x75.gif','/exe/paradise_quest-setup.exe?lc=en&ext=paradise_quest-setup.exe','A revolutionary match-3 puzzle with a twist!','A revolutionary match-3 puzzle adventure with an all NEW twist!','false',false,false,'Paradise Quest');ag(116894440,'Mandragora','/images/games/mandragora/mandragora81x46.gif',110127790,116930267,'','false','/images/games/mandragora/mandragora16x16.gif',false,11323,'/images/games/mandragora/mandragora100x75.jpg','/images/games/mandragora/mandragora179x135.jpg','/images/games/mandragora/mandragora320x240.jpg','false','/images/games/thumbnails_med_2/mandragora130x75.gif','/exe/mandragora-setup.exe?lc=en&ext=mandragora-setup.exe','Save the Magical Evergreen Lands!','Revive magical plants alongside Nature Spirits to save the Evergreen Lands!','false',false,false,'Mandragora');ag(116896687,'Rusty The Scuba-diver','/images/games/rusty_scuba_diver/rusty_scuba_diver81x46.gif',110083820,116932403,'f2e0631a-3223-461b-82fd-5e728a429929','false','/images/games/rusty_scuba_diver/rusty_scuba_diver16x16.gif',false,11323,'/images/games/rusty_scuba_diver/rusty_scuba_diver100x75.jpg','/images/games/rusty_scuba_diver/rusty_scuba_diver179x135.jpg','/images/games/rusty_scuba_diver/rusty_scuba_diver320x240.jpg','false','/images/games/thumbnails_med_2/rusty_scuba_diver130x75.gif','','Spell the words using bubbles.','Spell the words using bubbles and save Rusty.','true',true,true,'Rusty Scuba-diver OLT1 AS3');ag(116906253,'Fishdom H2O Hidden Odyssey','/images/games/fishdom_h2o/fishdom_h2o81x46.gif',1007,11694220,'','false','/images/games/fishdom_h2o/fishdom_h2o16x16.gif',false,11323,'/images/games/fishdom_h2o/fishdom_h2o100x75.jpg','/images/games/fishdom_h2o/fishdom_h2o179x135.jpg','/images/games/fishdom_h2o/fishdom_h2o320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_h2o130x75.gif','/exe/fishdom_h20-setup.exe?lc=en&ext=fishdom_h20-setup.exe','Create Exotic, Award-winning Aquariums!','Dive for exotic hidden objects and create your dream aquariums!','false',false,false,'Fishdom H20');ag(116920500,'Legacy World Adventure','/images/games/legacy_world_adventure/legacy_world_adventure81x46.gif',1007,116956923,'','false','/images/games/legacy_world_adventure/legacy_world_adventure16x16.gif',false,11323,'/images/games/legacy_world_adventure/legacy_world_adventure100x75.jpg','/images/games/legacy_world_adventure/legacy_world_adventure179x135.jpg','/images/games/legacy_world_adventure/legacy_world_adventure320x240.jpg','false','/images/games/thumbnails_med_2/legacy_world_adventure130x75.gif','/exe/legacy_world_adventure-setup.exe?lc=en&ext=legacy_world_adventure-setup.exe','Match-3 Expedition for Global Legacy!','Travel the world in a match-3 expedition to reclaim your family legacy!','false',false,false,'Legacy World Adventure');ag(116922920,'Sky Kingdoms','/images/games/sky_kingdoms/sky_kingdoms81x46.gif',1007,116958750,'','false','/images/games/sky_kingdoms/sky_kingdoms16x16.gif',false,11323,'/images/games/sky_kingdoms/sky_kingdoms100x75.jpg','/images/games/sky_kingdoms/sky_kingdoms179x135.jpg','/images/games/sky_kingdoms/sky_kingdoms320x240.jpg','false','/images/games/thumbnails_med_2/sky_kingdoms130x75.gif','/exe/sky_kingdoms-setup.exe?lc=en&ext=sky_kingdoms-setup.exe','Match-3 - Explosive Marble Destruction!','Explosive match-3 destruction of colored marbles in a breathtaking fantasy world!  ','false',false,false,'Sky Kingdoms');ag(116923713,'Wandering Willows','/images/games/wandering_willows/wandering_willows81x46.gif',110127790,116959540,'','false','/images/games/wandering_willows/wandering_willows16x16.gif',false,11323,'/images/games/wandering_willows/wandering_willows100x75.jpg','/images/games/wandering_willows/wandering_willows179x135.jpg','/images/games/wandering_willows/wandering_willows320x240.jpg','false','/images/games/thumbnails_med_2/wandering_willows130x75.gif','/exe/wandering_willows-setup.exe?lc=en&ext=wandering_willows-setup.exe','Find, Raise, and Train Whimsical Pets!','Search a whimsical world for unique pets! Train them to complete quests!','false',false,false,'Wandering Willows');ag(116927593,'Sea Journey','/images/games/sea_journey/sea_journey81x46.gif',1007,116963437,'','false','/images/games/sea_journey/sea_journey16x16.gif',false,11323,'/images/games/sea_journey/sea_journey100x75.jpg','/images/games/sea_journey/sea_journey179x135.jpg','/images/games/sea_journey/sea_journey320x240.jpg','false','/images/games/thumbnails_med_2/sea_journey130x75.gif','/exe/sea_journey-setup.exe?lc=en&ext=sea_journey-setup.exe','Thrilling Sea Battles Steered by Match-3 Gameplay!','A thrilling ocean adventure combining sea battle tactics and match-3 gameplay!','false',false,false,'Sea Journey');ag(116956447,'Wild Tribe','/images/games/wild_tribe/wild_tribe81x46.gif',1003,116992197,'','false','/images/games/wild_tribe/wild_tribe16x16.gif',false,11323,'/images/games/wild_tribe/wild_tribe100x75.jpg','/images/games/wild_tribe/wild_tribe179x135.jpg','/images/games/wild_tribe/wild_tribe320x240.jpg','false','/images/games/thumbnails_med_2/wild_tribe130x75.gif','/exe/wild_tribe-setup.exe?lc=en&ext=wild_tribe-setup.exe','Help Wobblies Evolve into Skilled Workers!','Help Wobblies evolve from simple creatures into a tribe of skilled workers!','false',false,false,'Wild Tribe');ag(116959157,'Enchanted Katya','/images/games/enchanted_katya/enchanted_katya81x46.gif',1003,116995657,'','false','/images/games/enchanted_katya/enchanted_katya16x16.gif',false,11323,'/images/games/enchanted_katya/enchanted_katya100x75.jpg','/images/games/enchanted_katya/enchanted_katya179x135.jpg','/images/games/enchanted_katya/enchanted_katya320x240.jpg','false','/images/games/thumbnails_med_2/enchanted_katya130x75.gif','/exe/enchanted_katya-setup.exe?lc=en&ext=enchanted_katya-setup.exe','Magical Mastery of Potion Preparation!','Search for a vanished wizard as you master magical potion preparation!','false',false,false,'Enchanted Katya');ag(116960790,'Dragon Portals','/images/games/dragon_portals/dragon_portals81x46.gif',1007,116996773,'','false','/images/games/dragon_portals/dragon_portals16x16.gif',false,11323,'/images/games/dragon_portals/dragon_portals100x75.jpg','/images/games/dragon_portals/dragon_portals179x135.jpg','/images/games/dragon_portals/dragon_portals320x240.jpg','false','/images/games/thumbnails_med_2/dragon_portals130x75.gif','/exe/dragon_portals-setup.exe?lc=en&ext=dragon_portals-setup.exe','Help Mila Save the dragons!','Help Mila save the dragons through colorful strategy puzzles!','false',false,false,'Dragon Portals');ag(116977563,'Amazing Adventures: Special Edition Bundle','/images/games/amazing_adventures_seb/amazing_adventures_seb81x46.gif',1100710,117013190,'','false','/images/games/amazing_adventures_seb/amazing_adventures_seb16x16.gif',false,11323,'/images/games/amazing_adventures_seb/amazing_adventures_seb100x75.jpg','/images/games/amazing_adventures_seb/amazing_adventures_seb179x135.jpg','/images/games/amazing_adventures_seb/amazing_adventures_seb320x240.jpg','false','/images/games/thumbnails_med_2/amazing_adventures_seb130x75.gif','/exe/amazing_adventured_bundle-setup.exe?lc=en&ext=amazing_adventured_bundle-setup.exe','Epic Hidden Object Adventures – 2 in 1!','A bundle of TWO epic and exotic hidden object adventures!','false',false,false,'Amazing Adventures SE Bundle');ag(116983990,'Virtual Families','/images/games/virtual_families/virtual_families81x46.gif',110127790,117019800,'','false','/images/games/virtual_families/virtual_families16x16.gif',false,11323,'/images/games/virtual_families/virtual_families100x75.jpg','/images/games/virtual_families/virtual_families179x135.jpg','/images/games/virtual_families/virtual_families320x240.jpg','false','/images/games/thumbnails_med_2/virtual_families130x75.gif','/exe/virtual_families-setup.exe?lc=en&ext=virtual_families-setup.exe','Love, Marriage, and the Baby Carriage!','Nurture your adopted adult, find a mate, and start a family!','false',false,false,'Virtual Families');ag(116984740,'Bloxxy','/images/games/bloxxy/bloxxy81x46.gif',110083820,117020473,'20951ab2-5ebd-46ba-8895-84b79566ef4a','false','/images/games/bloxxy/bloxxy16x16.gif',false,11323,'/images/games/bloxxy/bloxxy100x75.jpg','/images/games/bloxxy/bloxxy179x135.jpg','/images/games/bloxxy/bloxxy320x240.jpg','false','/images/games/thumbnails_med_2/bloxxy130x75.gif','','Free the Faces!','Free all the stern faces from the blocks to clear the level!','true',true,true,'Bloxxy OLT1 AS3');ag(116985820,'Same Game','/images/games/same_game/same_game81x46.gif',110083820,117021617,'ec14e429-528c-4f31-8d3b-8bc26f6cd3ce','false','/images/games/same_game/same_game16x16.gif',false,11323,'/images/games/same_game/same_game100x75.jpg','/images/games/same_game/same_game179x135.jpg','/images/games/same_game/same_game320x240.jpg','false','/images/games/thumbnails_med_2/same_game130x75.gif','','Remove the blocks of equal color!','Remove horizontally or vertically adjoining blocks of equal color.','true',true,true,'Same Game OLT1 AS3');ag(116986813,'Seven','/images/games/seven/seven81x46.gif',110083820,117022533,'7c3854f8-36f5-4bbc-a03d-0c5c5d9c1f8a','false','/images/games/seven/seven16x16.gif',false,11323,'/images/games/seven/seven100x75.jpg','/images/games/seven/seven179x135.jpg','/images/games/seven/seven320x240.jpg','false','/images/games/thumbnails_med_2/seven130x75.gif','','Remove the dice in sum of 7!','Combine the dices to reach the sum of 7 and remove them!','true',true,true,'Seven OLT1 AS3');ag(117020110,'Dream Chronicles The Chosen Child','/images/games/dream_chronicles_the_chosen_child/dream_chronicles_the_chosen_child81x46.gif',1100710,117056670,'','false','/images/games/dream_chronicles_the_chosen_child/dream_chronicles_the_chosen_child16x16.gif',false,11323,'/images/games/dream_chronicles_the_chosen_child/dream_chronicles_the_chosen_child100x75.jpg','/images/games/dream_chronicles_the_chosen_child/dream_chronicles_the_chosen_child179x135.jpg','/images/games/dream_chronicles_the_chosen_child/dream_chronicles_the_chosen_child320x240.jpg','false','/images/games/thumbnails_med_2/dream_chronicles_the_chosen_child130x75.gif','/exe/dream_chronicles_3-setup.exe?lc=en&ext=dream_chronicles_3-setup.exe','Reunite Faye’s Family and Reveal the Secret Prophecy!','Reunite Faye’s family! Solve puzzles and find hidden clues to reveal the secret prophecy!','false',false,false,'Dream Chronicles 3');ag(117026820,'Liong The Lost Amulets','/images/games/liong_the_lost_amulet/liong_the_lost_amulet81x46.gif',1100710,11706210,'','false','/images/games/liong_the_lost_amulet/liong_the_lost_amulet16x16.gif',false,11323,'/images/games/liong_the_lost_amulet/liong_the_lost_amulet100x75.jpg','/images/games/liong_the_lost_amulet/liong_the_lost_amulet179x135.jpg','/images/games/liong_the_lost_amulet/liong_the_lost_amulet320x240.jpg','false','/images/games/thumbnails_med_2/liong_the_lost_amulet130x75.gif','/exe/liong_the_lost_amulets-setup.exe?lc=en&ext=liong_the_lost_amulets-setup.exe','Exotic Puzzle Quest for Magical Amulets','An exotic combination of Mahjong and Hidden Object to recover lost Chinese amulets!','false',false,false,'Liong The Lost Amulets');ag(117037443,'Ranch Rush','/images/games/ranch_rush/ranch_rush81x46.gif',110082753,117073180,'f143048c-8c5e-42cf-b30b-660ff02a54cb','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','','Turn three acres into a thriving ranch! ','Help Sara turn three acres into a thriving Farmer’s Market Ranch.  ','true',true,true,'Ranch Rush OLT1');ag(117041507,'Time Machine Evolution','/images/games/time_machine_evolution/time_machine_evolution81x46.gif',1007,117077600,'','false','/images/games/time_machine_evolution/time_machine_evolution16x16.gif',false,11323,'/images/games/time_machine_evolution/time_machine_evolution100x75.jpg','/images/games/time_machine_evolution/time_machine_evolution179x135.jpg','/images/games/time_machine_evolution/time_machine_evolution320x240.jpg','false','/images/games/thumbnails_med_2/time_machine_evolution130x75.gif','/exe/time_machine_evolution-setup.exe?lc=en&ext=time_machine_evolution-setup.exe','Transcend Time to Discover New Worlds!','Transcend time and discover new worlds by solving match-3 puzzles!','false',false,false,'Time Machine Evolution');ag(117042567,'Bundle of Joy','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy81x46.gif',110127790,117078927,'','false','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy16x16.gif',false,11323,'/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy100x75.jpg','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy179x135.jpg','/images/games/mothers_day_bundle_of_joy/mothers_day_bundle_of_joy320x240.jpg','false','/images/games/thumbnails_med_2/mothers_day_bundle_of_joy130x75.gif','/exe/bundle_of_joy-setup.exe?lc=en&ext=bundle_of_joy-setup.exe','2-game Bundle of Crazy Childcare Challenges!','Roll up your sleeves for a 2-game bundle of endless crazy childcare challenges!','false',false,false,'Bundle of Joy');ag(117044280,'Mystic Emporium','/images/games/mystic_emporium/mystic_emporium81x46.gif',110127790,117080873,'','false','/images/games/mystic_emporium/mystic_emporium16x16.gif',false,11323,'/images/games/mystic_emporium/mystic_emporium100x75.jpg','/images/games/mystic_emporium/mystic_emporium179x135.jpg','/images/games/mystic_emporium/mystic_emporium320x240.jpg','false','/images/games/thumbnails_med_2/mystic_emporium130x75.gif','/exe/mystic_emporium-setup.exe?lc=en&ext=mystic_emporium-setup.exe','Transform a Shop of Magic and Mystery!','Transform a fantasy-themed shop of magic and mystery using your time management talents!','false',false,false,'Mystic Emporium');ag(117045150,'Yard Sale Junkie','/images/games/yard_sale_junkie/yard_sale_junkie81x46.gif',1100710,117081913,'','false','/images/games/yard_sale_junkie/yard_sale_junkie16x16.gif',false,11323,'/images/games/yard_sale_junkie/yard_sale_junkie100x75.jpg','/images/games/yard_sale_junkie/yard_sale_junkie179x135.jpg','/images/games/yard_sale_junkie/yard_sale_junkie320x240.jpg','false','/images/games/thumbnails_med_2/yard_sale_junkie130x75.gif','/exe/yard_sale_junkie-setup.exe?lc=en&ext=yard_sale_junkie-setup.exe','Bargain Hunt for Cool L.A. Junk!  ','A hidden object bargain hunt for the coolest L.A. junk!  ','false',false,false,'Yard Sale Junkie');ag(117073217,'Alchemist&rsquo;s Apprentice','/images/games/alchemists_apprentice/alchemists_apprentice81x46.gif',1007,117109933,'','false','/images/games/alchemists_apprentice/alchemists_apprentice16x16.gif',false,11323,'/images/games/alchemists_apprentice/alchemists_apprentice100x75.jpg','/images/games/alchemists_apprentice/alchemists_apprentice179x135.jpg','/images/games/alchemists_apprentice/alchemists_apprentice320x240.jpg','false','/images/games/thumbnails_med_2/alchemists_apprentice130x75.gif','/exe/alchemists_apprentice-setup.exe?lc=en&ext=alchemists_apprentice-setup.exe','Restore Magic and Beauty to a Fairytale Province!','Restore magic and beauty to a fairytale province, ruled by your newly-vanished uncle!','false',false,false,'Alchemists Apprentice');ag(117075440,'Hidden Island','/images/games/hidden_island/hidden_island81x46.gif',1100710,117111267,'','false','/images/games/hidden_island/hidden_island16x16.gif',false,11323,'/images/games/hidden_island/hidden_island100x75.jpg','/images/games/hidden_island/hidden_island179x135.jpg','/images/games/hidden_island/hidden_island320x240.jpg','false','/images/games/thumbnails_med_2/hidden_island130x75.gif','/exe/hidden_island-setup.exe?lc=en&ext=hidden_island-setup.exe','Unlock Hidden Island&rsquo;s Ancient Spell!','Unlock the mysteries of Hidden Island and shatter its ancient spell!','false',false,false,'Hidden Island');ag(117080787,'Plants vs Zombies','/images/games/plants_vs_zombies/plants_vs_zombies81x46.gif',1003,117116617,'','false','/images/games/plants_vs_zombies/plants_vs_zombies16x16.gif',false,11323,'/images/games/plants_vs_zombies/plants_vs_zombies100x75.jpg','/images/games/plants_vs_zombies/plants_vs_zombies179x135.jpg','/images/games/plants_vs_zombies/plants_vs_zombies320x240.jpg','false','/images/games/thumbnails_med_2/plants_vs_zombies130x75.gif','/exe/plants_vs_zombies-setup.exe?lc=en&ext=plants_vs_zombies-setup.exe','Defend your Home with Zombie-Zapping Plants!','Defend your home from zombie attacks with strategic and speedy planting!','false',false,false,'Plants vs Zombies');ag(117081143,'Real Crimes: The Unicorn Killer','/images/games/real_crimes_the_unicorn_killer/real_crimes_the_unicorn_killer81x46.gif',1003,117117927,'','false','/images/games/real_crimes_the_unicorn_killer/real_crimes_the_unicorn_killer16x16.gif',false,11323,'/images/games/real_crimes_the_unicorn_killer/real_crimes_the_unicorn_killer100x75.jpg','/images/games/real_crimes_the_unicorn_killer/real_crimes_the_unicorn_killer179x135.jpg','/images/games/real_crimes_the_unicorn_killer/real_crimes_the_unicorn_killer320x240.jpg','false','/images/games/thumbnails_med_2/real_crimes_the_unicorn_killer130x75.gif','/exe/real_crimes_unicorn-setup.exe?lc=en&ext=real_crimes_unicorn-setup.exe','Track this Infamous Murderer on the Run!','Dissect hidden object scenes to track the infamous ‘Unicorn Killer’! ','false',false,false,'Real Crimes Unicorn');ag(117084327,'Fishing Craze','/images/games/fishing_craze/fishing_craze81x46.gif',110083820,117120140,'15531385-edc4-49cd-8ab1-04a6b5b09029','false','/images/games/fishing_craze/fishing_craze16x16.gif',false,11323,'/images/games/fishing_craze/fishing_craze100x75.jpg','/images/games/fishing_craze/fishing_craze179x135.jpg','/images/games/fishing_craze/fishing_craze320x240.jpg','false','/images/games/thumbnails_med_2/fishing_craze130x75.gif','','Compete in countrywide fishing tournaments!','Compete in a series of fishing tournaments across the country!','true',false,false,'Fishing Craze OL AS3');ag(117086927,'Cate West The Velvet Keys','/images/games/cate_west_the_velvet_keys/cate_west_the_velvet_keys81x46.gif',1100710,117122567,'','false','/images/games/cate_west_the_velvet_keys/cate_west_the_velvet_keys16x16.gif',false,11323,'/images/games/cate_west_the_velvet_keys/cate_west_the_velvet_keys100x75.jpg','/images/games/cate_west_the_velvet_keys/cate_west_the_velvet_keys179x135.jpg','/images/games/cate_west_the_velvet_keys/cate_west_the_velvet_keys320x240.jpg','false','/images/games/thumbnails_med_2/cate_west_the_velvet_keys130x75.gif','/exe/cate_west_velvet_keys-setup.exe?lc=en&ext=cate_west_velvet_keys-setup.exe','Hidden Object Murder Mystery Sequel!  ','Help Cate crack the case in this hidden object murder mystery sequel!  ','false',false,false,'Cate West The Velvet Keys');ag(117094873,'Pocahontas Princess Of The Powhatan','/images/games/pocahontas_princess/pocahontas_princess81x46.gif',1100710,117130703,'','false','/images/games/pocahontas_princess/pocahontas_princess16x16.gif',false,11323,'/images/games/pocahontas_princess/pocahontas_princess100x75.jpg','/images/games/pocahontas_princess/pocahontas_princess179x135.jpg','/images/games/pocahontas_princess/pocahontas_princess320x240.jpg','false','/images/games/thumbnails_med_2/pocahontas_princess130x75.gif','/exe/pocahontas_princess_of_the_powhatan-setup.exe?lc=en&ext=pocahontas_princess_of_the_powhatan-setup.exe','Pocahontas’ Hidden Object Odyssey of Love!  ','From Jamestown to London, Pocahontas’ hidden object odyssey of love and destiny!','false',false,false,'Pocahontas Princess Of The Pow');ag(117095587,'Restaurant Rush','/images/games/restaurant_rush/restaurant_rush81x46.gif',1003,117131417,'','false','/images/games/restaurant_rush/restaurant_rush16x16.gif',false,11323,'/images/games/restaurant_rush/restaurant_rush100x75.jpg','/images/games/restaurant_rush/restaurant_rush179x135.jpg','/images/games/restaurant_rush/restaurant_rush320x240.jpg','false','/images/games/thumbnails_med_2/restaurant_rush130x75.gif','/exe/restaurant_rush-setup.exe?lc=en&ext=restaurant_rush-setup.exe','Sizzling Sequel Delivers an Ultimate Chef Showdown!','Heidi returns in a match-3 and time management gameplay for the ultimate chef showdown!  ','false',false,false,'Restaurant Rush');ag(117096290,'Satisfashion','/images/games/satisfashion/satisfashion81x46.gif',0,117132103,'','false','/images/games/satisfashion/satisfashion16x16.gif',false,11323,'/images/games/satisfashion/satisfashion100x75.jpg','/images/games/satisfashion/satisfashion179x135.jpg','/images/games/satisfashion/satisfashion320x240.jpg','false','/images/games/thumbnails_med_2/satisfashion130x75.gif','/exe/satisfashion-setup.exe?lc=en&ext=satisfashion-setup.exe','Designing Diva – Gain International Fashion Fame!','Design clothes, dress models, and gain fame at international fashion shows!','false',false,false,'Satisfashion');ag(117097380,'Something Special','/images/games/something_special/something_special81x46.gif',1100710,117133190,'','false','/images/games/something_special/something_special16x16.gif',false,11323,'/images/games/something_special/something_special100x75.jpg','/images/games/something_special/something_special179x135.jpg','/images/games/something_special/something_special320x240.jpg','false','/images/games/thumbnails_med_2/something_special130x75.gif','/exe/something_special-setup.exe?lc=en&ext=something_special-setup.exe','Hidden Object Roadtrip Through Eccentric Americana!  ','Join Zoe on a hidden object roadtrip across REAL landmarks of eccentric Americana!  ','false',false,false,'Something Special');ag(117099970,'Youda Marina','/images/games/youda_marina/youda_marina81x46.gif',0,117135580,'','false','/images/games/youda_marina/youda_marina16x16.gif',false,11323,'/images/games/youda_marina/youda_marina100x75.jpg','/images/games/youda_marina/youda_marina179x135.jpg','/images/games/youda_marina/youda_marina320x240.jpg','false','/images/games/thumbnails_med_2/youda_marina130x75.gif','/exe/youda_marina-setup.exe?lc=en&ext=youda_marina-setup.exe','Create and Operate a Tropical Marina!','Create and operate your own tropical marina with restaurants, resorts, and exotic ecursions!','false',false,false,'Youda Marina');ag(117148623,'Musaic Box','/images/games/musaic_box/musaic_box81x46.gif',1100710,117184263,'','false','/images/games/musaic_box/musaic_box16x16.gif',false,11323,'/images/games/musaic_box/musaic_box100x75.jpg','/images/games/musaic_box/musaic_box179x135.jpg','/images/games/musaic_box/musaic_box320x240.jpg','false','/images/games/thumbnails_med_2/musaic_box130x75.gif','/exe/musaic_box-setup.exe?lc=en&ext=musaic_box-setup.exe','Unlock Your Grandfather’s Musical Mysteries!  ','Unlock your grandfather’s musical mysteries by finding music sheets and stitching melodies!  ','false',false,false,'Musaic Box');ag(117150840,'Agatha Christie Mystery Pack','/images/games/agatha_christie_bundle/agatha_christie_bundle81x46.gif',1100710,117186370,'','false','/images/games/agatha_christie_bundle/agatha_christie_bundle16x16.gif',false,11323,'/images/games/agatha_christie_bundle/agatha_christie_bundle100x75.jpg','/images/games/agatha_christie_bundle/agatha_christie_bundle179x135.jpg','/images/games/agatha_christie_bundle/agatha_christie_bundle320x240.jpg','false','/images/games/thumbnails_med_2/agatha_christie_bundle130x75.gif','/exe/agatha_christie_bundle-setup.exe?lc=en&ext=agatha_christie_bundle-setup.exe','2 Detective Mysteries for the price of 1!','2 Detective Murder Mysteries for the price of 1! Crack the cases in this spine-tingling seek-and-find duo.','false',false,false,'Agatha Christie Bundle');ag(117153600,'Jewel Quest Bundle','/images/games/jewel_quest_bundle/jewel_quest_bundle81x46.gif',1007,117189177,'','false','/images/games/jewel_quest_bundle/jewel_quest_bundle16x16.gif',false,11323,'/images/games/jewel_quest_bundle/jewel_quest_bundle100x75.jpg','/images/games/jewel_quest_bundle/jewel_quest_bundle179x135.jpg','/images/games/jewel_quest_bundle/jewel_quest_bundle320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_bundle130x75.gif','/exe/jewel_quest_bundle-setup.exe?lc=en&ext=jewel_quest_bundle-setup.exe','2 for 1 – Match-3 Pair of Sparkling Sequels!','2-for-1! Match-3 pair of sparkling sequels to the ultimate jewel matching series!','false',false,false,'Jewel Quest Bundle');ag(117156680,'Sprill','/images/games/sprill_de/sprill_de81x46.gif',110138357,117192180,'','false','/images/games/sprill_de/sprill_de16x16.gif',false,11323,'/images/games/sprill_de/sprill_de100x75.jpg','/images/games/sprill_de/sprill_de179x135.jpg','/images/games/sprill_de/sprill_de320x240.jpg','false','/images/games/thumbnails_med_2/sprill_de130x75.gif','/exe/sprill_de-setup.exe?lc=en&ext=sprill_de-setup.exe','Match marbles in underwater scenes!','Match colored marbles as they roll through underwater scenes!','false',false,false,'Sprill DE');ag(117166810,'Diner Town Tycoon','/images/games/DinerTownTycoon/DinerTownTycoon81x46.gif',110127790,117202530,'','false','/images/games/DinerTownTycoon/DinerTownTycoon16x16.gif',false,11323,'/images/games/DinerTownTycoon/DinerTownTycoon100x75.jpg','/images/games/DinerTownTycoon/DinerTownTycoon179x135.jpg','/images/games/DinerTownTycoon/DinerTownTycoon320x240.jpg','false','/images/games/thumbnails_med_2/DinerTownTycoon130x75.gif','/exe/diner_town_tycoon-setup.exe?lc=en&ext=diner_town_tycoon-setup.exe','Give Grub Burger the Boot!','Give Grub Burger the Boot! Save DinerTown™ with healthy, new diners!  ','false',false,false,'Diner Town Tycoon');ag(117167513,'Detective Agency','/images/games/detective_agency/detective_agency81x46.gif',1100710,117203703,'','false','/images/games/detective_agency/detective_agency16x16.gif',false,11323,'/images/games/detective_agency/detective_agency100x75.jpg','/images/games/detective_agency/detective_agency179x135.jpg','/images/games/detective_agency/detective_agency320x240.jpg','false','/images/games/thumbnails_med_2/detective_agency130x75.gif','/exe/detective_agency-setup.exe?lc=en&ext=detective_agency-setup.exe','Help James Investigate the Stolen Relic!','Help James tackle hidden objects and mysterious puzzles to investigate a stolen relic!','false',false,false,'Detective Agency');ag(117168453,'Jessica’s Cupcake Cafe','/images/games/jessicas_cupcake/jessicas_cupcake81x46.gif',110127790,117204907,'','false','/images/games/jessicas_cupcake/jessicas_cupcake16x16.gif',false,11323,'/images/games/jessicas_cupcake/jessicas_cupcake100x75.jpg','/images/games/jessicas_cupcake/jessicas_cupcake179x135.jpg','/images/games/jessicas_cupcake/jessicas_cupcake320x240.jpg','false','/images/games/thumbnails_med_2/jessicas_cupcake130x75.gif','/exe/jessicas_cupcake_cafe-setup.exe?lc=en&ext=jessicas_cupcake_cafe-setup.exe','Whip Up a Cupcake Empire!','Help Jessica take over her aunt’s bakery and whip up a cupcake empire!','false',false,false,'Jessicas Cupcake Cafe');ag(117184147,'Ella’s Adventures','/images/games/ellas_adventure/ellas_adventure81x46.gif',1100710,117220880,'','false','/images/games/ellas_adventure/ellas_adventure16x16.gif',false,11323,'/images/games/ellas_adventure/ellas_adventure100x75.jpg','/images/games/ellas_adventure/ellas_adventure179x135.jpg','/images/games/ellas_adventure/ellas_adventure320x240.jpg','false','/images/games/thumbnails_med_2/ellas_adventure130x75.gif','/exe/ellas_adventures-setup.exe?lc=en&ext=ellas_adventures-setup.exe','Worldwide Quest for the Atlantis’ ’Diamond Eye’','Cross the world on a map-driven, hidden object quest for the Atlantis’ elusive ’Diamond Eye’!','false',false,false,'Ellas Adventures');ag(117213877,'TikiBar','/images/games/tikibar/tikibar81x46.gif',110127790,117249643,'','false','/images/games/tikibar/tikibar16x16.gif',false,11323,'/images/games/tikibar/tikibar100x75.jpg','/images/games/tikibar/tikibar179x135.jpg','/images/games/tikibar/tikibar320x240.jpg','false','/images/games/thumbnails_med_2/tikibar130x75.gif','/exe/tikibar-setup.exe?lc=en&ext=tikibar-setup.exe','Serve Up Sweet Success - Tropical Time Management!','Cater to the island’s clients with food and drinks in this tropical time management!','false',false,false,'TikiBar');ag(117244230,'Wedding Dash: Ready, Aim, Love','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love81x46.gif',110127790,117280730,'','false','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love16x16.gif',false,11323,'/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love100x75.jpg','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love179x135.jpg','/images/games/wedding_dash_ready_aim_love/wedding_dash_ready_aim_love320x240.jpg','false','/images/games/thumbnails_med_2/wedding_dash_ready_aim_love130x75.gif','/exe/wedding_dash_3-setup.exe?lc=en&ext=wedding_dash_3-setup.exe','Help Quinn plan her own wedding!','Match guests at cocktail tables while keeping wedding crashers away!','false',false,false,'Wedding Dash 3');ag(117256953,'Artist Colony','/images/games/artist_colony/artist_colony81x46.gif',1003,117292670,'','false','/images/games/artist_colony/artist_colony16x16.gif',false,11323,'/images/games/artist_colony/artist_colony100x75.jpg','/images/games/artist_colony/artist_colony179x135.jpg','/images/games/artist_colony/artist_colony320x240.jpg','false','/images/games/thumbnails_med_2/artist_colony130x75.gif','/exe/artist_colony-setup.exe?lc=en&ext=artist_colony-setup.exe','A dramatically charged Sim masterpiece! Plus FREE Strategy Guide!','Inspire artists as they find love, betrayal and achieve creative genius in this Sim masterpiece. Special Bonus: FREE Strategy Guide!','false',false,false,'Artist Colony');ag(117258607,'Create A Mall','/images/games/create_a_mall/create_a_mall81x46.gif',110127790,117294230,'','false','/images/games/create_a_mall/create_a_mall16x16.gif',false,11323,'/images/games/create_a_mall/create_a_mall100x75.jpg','/images/games/create_a_mall/create_a_mall179x135.jpg','/images/games/create_a_mall/create_a_mall320x240.jpg','false','/images/games/thumbnails_med_2/create_a_mall130x75.gif','/exe/create_a_mall-setup.exe?lc=en&ext=create_a_mall-setup.exe','Design and build amazing shopping malls!','Design and build amazing shopping malls in six different cities!','false',false,false,'Create A Mall');ag(117267127,'Roboball','/images/games/roboball/roboball81x46.gif',1003,117303953,'','false','/images/games/roboball/roboball16x16.gif',false,11323,'/images/games/roboball/roboball100x75.jpg','/images/games/roboball/roboball179x135.jpg','/images/games/roboball/roboball320x240.jpg','false','/images/games/thumbnails_med_2/roboball130x75.gif','/exe/roboball-setup.exe?lc=en&ext=roboball-setup.exe','Wild 3D brick-busting action!','Smash your way through dozens of madcap 3D brick-busting scenarios!','false',false,false,'Roboball');ag(117275713,'Treasures of Mystery Island','/images/games/treasures_of_mystery_island/treasures_of_mystery_island81x46.gif',110082753,117311527,'124d49f8-29e9-45b4-93bc-729b592c2aba','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','','Escape from an uncharted island!','Find and assemble hidden objects to escape from an uncharted island!','true',false,false,'Treasures of Mystery Island OL');ag(117302430,'The Atlantis Bundle','/images/games/atlantis_bundle/atlantis_bundle81x46.gif',1007,117338180,'','false','/images/games/atlantis_bundle/atlantis_bundle16x16.gif',false,11323,'/images/games/atlantis_bundle/atlantis_bundle100x75.jpg','/images/games/atlantis_bundle/atlantis_bundle179x135.jpg','/images/games/atlantis_bundle/atlantis_bundle320x240.jpg','false','/images/games/thumbnails_med_2/atlantis_bundle130x75.gif','/exe/atlantis_bundle-setup.exe?lc=en&ext=atlantis_bundle-setup.exe','Unearth the Lost City of Atlantis – 2 for the price of 1!','Unearth the ancient, lost city of Atlantis – 2 best-selling games for the price of 1!','false',false,false,'Atlantis Bundle');ag(117305637,'Double Play: Mystery Bundle','/images/games/double_play_mystery_bundle/double_play_mystery_bundle81x46.gif',1100710,117341387,'','false','/images/games/double_play_mystery_bundle/double_play_mystery_bundle16x16.gif',false,11323,'/images/games/double_play_mystery_bundle/double_play_mystery_bundle100x75.jpg','/images/games/double_play_mystery_bundle/double_play_mystery_bundle179x135.jpg','/images/games/double_play_mystery_bundle/double_play_mystery_bundle320x240.jpg','false','/images/games/thumbnails_med_2/double_play_mystery_bundle130x75.gif','/exe/double_play_mystery_bundle-setup.exe?lc=en&ext=double_play_mystery_bundle-setup.exe','Epic Egyptian Puzzlers of Magic and Mystery - 2 for 1!  ','Epic Egyptian puzzlers - 2 for 1! Unearth sparkling jewels and ancient artifacts to solve exotic mysteries!  ','false',false,false,'Double Play Mystery Bundle');ag(117306523,'Hollywood Tycoon','/images/games/hollywood_tycoon/hollywood_tycoon81x46.gif',0,117342290,'','false','/images/games/hollywood_tycoon/hollywood_tycoon16x16.gif',false,11323,'/images/games/hollywood_tycoon/hollywood_tycoon100x75.jpg','/images/games/hollywood_tycoon/hollywood_tycoon179x135.jpg','/images/games/hollywood_tycoon/hollywood_tycoon320x240.jpg','false','/images/games/thumbnails_med_2/hollywood_tycoon130x75.gif','/exe/hollywood_tycoon-setup.exe?lc=en&ext=hollywood_tycoon-setup.exe','Produce blockbuster Hollywood movies!','Buy scripts, hire actors and produce blockbuster Hollywood movies!','false',false,false,'Hollywood Tycoon');ag(117307377,'Pahelika: Secret Legends','/images/games/pahelika_secret_legends/pahelika_secret_legends81x46.gif',110127790,117343143,'','false','/images/games/pahelika_secret_legends/pahelika_secret_legends16x16.gif',false,11323,'/images/games/pahelika_secret_legends/pahelika_secret_legends100x75.jpg','/images/games/pahelika_secret_legends/pahelika_secret_legends179x135.jpg','/images/games/pahelika_secret_legends/pahelika_secret_legends320x240.jpg','false','/images/games/thumbnails_med_2/pahelika_secret_legends130x75.gif','/exe/pahelika_secret_legends-setup.exe?lc=en&ext=pahelika_secret_legends-setup.exe','Search temples for a mystical book!','Prevent a secret book from falling into the wrong hands!','false',false,false,'Pahelika Secret Legends');ag(117312417,'Super Ranch','/images/games/super_ranch/super_ranch81x46.gif',0,11734887,'','false','/images/games/super_ranch/super_ranch16x16.gif',false,11323,'/images/games/super_ranch/super_ranch100x75.jpg','/images/games/super_ranch/super_ranch179x135.jpg','/images/games/super_ranch/super_ranch320x240.jpg','false','/images/games/thumbnails_med_2/super_ranch130x75.gif','/exe/super_ranch-setup.exe?lc=en&ext=super_ranch-setup.exe','Harvest crops and raise livestock!','Turn a small piece of farmland into a thriving ranch!','false',false,false,'Super Ranch');ag(117324803,'Holly 2: Magic Land','/images/games/holly_2_magic_land/holly_2_magic_land81x46.gif',1003,11736053,'','false','/images/games/holly_2_magic_land/holly_2_magic_land16x16.gif',false,11323,'/images/games/holly_2_magic_land/holly_2_magic_land100x75.jpg','/images/games/holly_2_magic_land/holly_2_magic_land179x135.jpg','/images/games/holly_2_magic_land/holly_2_magic_land320x240.jpg','false','/images/games/thumbnails_med_2/holly_2_magic_land130x75.gif','/exe/holly_2_magic_land-setup.exe?lc=en&ext=holly_2_magic_land-setup.exe','Reunite Holly with her daughter!','Help Holly reunite with her daughter in the Land of Magic!','false',false,false,'Holly 2 Magic Land');ag(117325817,'Bilbo’s Four Corners Of The World','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world81x46.gif',0,117361627,'','false','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world16x16.gif',false,11323,'/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world100x75.jpg','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world179x135.jpg','/images/games/bilbo_the_four_corners_of_the_world/bilbo_the_four_corners_of_the_world320x240.jpg','false','/images/games/thumbnails_med_2/bilbo_the_four_corners_of_the_world130x75.gif','/exe/mr_bilbos_four_corners_of_the_world-setup.exe?lc=en&ext=mr_bilbos_four_corners_of_the_world-setup.exe','Run restaurants around the world!','Run restaurants and win the heart of your true love! ','false',false,false,'Bilbos Four Corners Of The');ag(117327560,'Kuros','/images/games/kuros/kuros81x46.gif',1100710,117363357,'','false','/images/games/kuros/kuros16x16.gif',false,11323,'/images/games/kuros/kuros100x75.jpg','/images/games/kuros/kuros179x135.jpg','/images/games/kuros/kuros320x240.jpg','false','/images/games/thumbnails_med_2/kuros130x75.gif','/exe/kuros-setup.exe?lc=en&ext=kuros-setup.exe','Save an alien world from destruction!','Restore balance to a mysterious alien world teetering on destruction!','false',false,false,'Kuros');ag(117333363,'Amazing Heists: Dillinger','/images/games/amazing_heists_dillinger/amazing_heists_dillinger81x46.gif',1100710,11736937,'','false','/images/games/amazing_heists_dillinger/amazing_heists_dillinger16x16.gif',false,11323,'/images/games/amazing_heists_dillinger/amazing_heists_dillinger100x75.jpg','/images/games/amazing_heists_dillinger/amazing_heists_dillinger179x135.jpg','/images/games/amazing_heists_dillinger/amazing_heists_dillinger320x240.jpg','false','/images/games/thumbnails_med_2/amazing_heists_dillinger130x75.gif','/exe/amazing_heists_dillinger-setup.exe?lc=en&ext=amazing_heists_dillinger-setup.exe','Rob banks without getting caught!','Assemble your gang and rob banks across America without getting caught! ','false',false,false,'Amazing Heists Dillinger');ag(117334223,'Babylonia','/images/games/babylonia/babylonia81x46.gif',1007,117370897,'','false','/images/games/babylonia/babylonia16x16.gif',false,11323,'/images/games/babylonia/babylonia100x75.jpg','/images/games/babylonia/babylonia179x135.jpg','/images/games/babylonia/babylonia320x240.jpg','false','/images/games/thumbnails_med_2/babylonia130x75.gif','/exe/babylonia-setup.exe?lc=en&ext=babylonia-setup.exe','Match flowers to restore ancient gardens!','Match flowers to restore Babylon’s legendary Hanging Gardens to their glory!','false',false,false,'Babylonia');ag(117336373,'Diner Town Detective Agency','/images/games/dinertown_detective_agency/dinertown_detective_agency81x46.gif',1003,11737280,'','false','/images/games/dinertown_detective_agency/dinertown_detective_agency16x16.gif',false,11323,'/images/games/dinertown_detective_agency/dinertown_detective_agency100x75.jpg','/images/games/dinertown_detective_agency/dinertown_detective_agency179x135.jpg','/images/games/dinertown_detective_agency/dinertown_detective_agency320x240.jpg','false','/images/games/thumbnails_med_2/dinertown_detective_agency130x75.gif','/exe/diner_town_detective_agency-setup.exe?lc=en&ext=diner_town_detective_agency-setup.exe','Solve whimsical crimes and mysteries!','Investigate crime scenes to ID culprits and solve whimsical mysteries!','false',false,false,'Diner Town Detective Agency');ag(117337303,'GHOST Chronicles: Phantom of the Ren Faire','/images/games/ghost_chronicles/ghost_chronicles81x46.gif',1100710,117373120,'','false','/images/games/ghost_chronicles/ghost_chronicles16x16.gif',false,11323,'/images/games/ghost_chronicles/ghost_chronicles100x75.jpg','/images/games/ghost_chronicles/ghost_chronicles179x135.jpg','/images/games/ghost_chronicles/ghost_chronicles320x240.jpg','false','/images/games/thumbnails_med_2/ghost_chronicles130x75.gif','/exe/ghost_chronicles_phantom-setup.exe?lc=en&ext=ghost_chronicles_phantom-setup.exe','Track down a vengeful ghost!','Ghost or hoax? Find out who’s haunting the Renaissance Faire!','false',false,false,'GHOST Chronicles Phantom');ag(117371277,'Pure Hidden','/images/games/pure_hidden/pure_hidden81x46.gif',1100710,117407137,'','false','/images/games/pure_hidden/pure_hidden16x16.gif',false,11323,'/images/games/pure_hidden/pure_hidden100x75.jpg','/images/games/pure_hidden/pure_hidden179x135.jpg','/images/games/pure_hidden/pure_hidden320x240.jpg','false','/images/games/thumbnails_med_2/pure_hidden130x75.gif','/exe/pure_hidden-setup.exe?lc=en&ext=pure_hidden-setup.exe','Discover surprises inside boxes of cream.','Discover 1,001 hidden objects and gorgeous original artwork hidden inside cream!','false',false,false,'Pure Hidden');ag(117373543,'My Kingdom for the Princess','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess81x46.gif',110127790,117409903,'','false','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess16x16.gif',false,11323,'/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess100x75.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess179x135.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess320x240.jpg','false','/images/games/thumbnails_med_2/my_kingdom_for_the_princess130x75.gif','/exe/my_kingdom_for_the_princess-setup.exe?lc=en&ext=my_kingdom_for_the_princess-setup.exe','A Dark Ages Disaster and Damsel in Distress!','Help the brave knight Arthur tackle a Dark Ages disaster and damsel in distress!','false',false,false,'My Kingdom for the Princess');ag(117375803,'Magic Farm Ultimate Flower','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower81x46.gif',110127790,117411493,'','false','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower16x16.gif',false,11323,'/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower100x75.jpg','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower179x135.jpg','/images/games/magic_farm_ultimate_flower/magic_farm_ultimate_flower320x240.jpg','false','/images/games/thumbnails_med_2/magic_farm_ultimate_flower130x75.gif','/exe/magic_farm_utimate_flower-setup.exe?lc=en&ext=magic_farm_utimate_flower-setup.exe','Help a Fairytale Florist!','Help a fairytale florist save her beloved parents!','false',false,false,'Magic Farm Ultimate Flower');ag(117378200,'Youda Legend: The Curse of the Amsterdam Diamond','/images/games/youda_legend_the_curse/youda_legend_the_curse81x46.gif',1100710,11741447,'','false','/images/games/youda_legend_the_curse/youda_legend_the_curse16x16.gif',false,11323,'/images/games/youda_legend_the_curse/youda_legend_the_curse100x75.jpg','/images/games/youda_legend_the_curse/youda_legend_the_curse179x135.jpg','/images/games/youda_legend_the_curse/youda_legend_the_curse320x240.jpg','false','/images/games/thumbnails_med_2/youda_legend_the_curse130x75.gif','/exe/youda_legend_curse_amsterdam-setup.exe?lc=en&ext=youda_legend_curse_amsterdam-setup.exe','Delve into Dark Mysteries of Amsterdam!','Delve into the dark mysteries of Amsterdam on this haunting hidden object adventure!','false',false,false,'Youda Legend Curse of Amsterda');ag(117379630,'Youda Sushi Chef','/images/games/youda_sushi_chef/youda_sushi_chef81x46.gif',0,117415740,'','false','/images/games/youda_sushi_chef/youda_sushi_chef16x16.gif',false,11323,'/images/games/youda_sushi_chef/youda_sushi_chef100x75.jpg','/images/games/youda_sushi_chef/youda_sushi_chef179x135.jpg','/images/games/youda_sushi_chef/youda_sushi_chef320x240.jpg','false','/images/games/thumbnails_med_2/youda_sushi_chef130x75.gif','/exe/youda_sushi_chef-setup.exe?lc=en&ext=youda_sushi_chef-setup.exe','Sushi, Sashimi, Sake – You’re the Master!','Sushi, Sashimi, Sake – build a restaurant empire and become the sushi master!','false',false,false,'Youda Sushi Chef');ag(117380237,'Family Feud: Battle of the Sexes','/images/games/family_feud_battle/family_feud_battle81x46.gif',110127790,117416393,'','false','/images/games/family_feud_battle/family_feud_battle16x16.gif',false,11323,'/images/games/family_feud_battle/family_feud_battle100x75.jpg','/images/games/family_feud_battle/family_feud_battle179x135.jpg','/images/games/family_feud_battle/family_feud_battle320x240.jpg','false','/images/games/thumbnails_med_2/family_feud_battle130x75.gif','/exe/family_feud_battle_of_sexes-setup.exe?lc=en&ext=family_feud_battle_of_sexes-setup.exe','Survey Says: Gender Faceoff!','Survey says: Gender Faceoff! Family Feud™ is back and this sequel is ready for love!','false',false,false,'Family Feud Battle Sexes');ag(117385693,'GemCraft chapter 0: Gem of Eternity','/images/games/gemcraft_chapter_0/gemcraft_chapter_081x46.gif',110082753,117421350,'6c028e3e-6c5e-4fb3-a7d2-0315de1a1b9e','false','/images/games/gemcraft_chapter_0/gemcraft_chapter_016x16.gif',false,11323,'/images/games/gemcraft_chapter_0/gemcraft_chapter_0100x75.jpg','/images/games/gemcraft_chapter_0/gemcraft_chapter_0179x135.jpg','/images/games/gemcraft_chapter_0/gemcraft_chapter_0320x240.jpg','false','/images/games/thumbnails_med_2/gemcraft_chapter_0130x75.gif','','The Gem of Eternity awaits you...','Unleash your magic powers and fight your way through the wilderness!','true',true,true,'Gemcraft chapter 0 OLT1 AS3');ag(117388953,'Hotel Mogul','/images/games/hotel_mogul/hotel_mogul81x46.gif',110127790,117424563,'','false','/images/games/hotel_mogul/hotel_mogul16x16.gif',false,11323,'/images/games/hotel_mogul/hotel_mogul100x75.jpg','/images/games/hotel_mogul/hotel_mogul179x135.jpg','/images/games/hotel_mogul/hotel_mogul320x240.jpg','false','/images/games/thumbnails_med_2/hotel_mogul130x75.gif','/exe/hotel_mogul-setup.exe?lc=en&ext=hotel_mogul-setup.exe','Fight for the Family Business!','Help Lynette fight for the family business and put her hubby in the slammer!','false',false,false,'Hotel Mogul');ag(117398253,'Build A Lot 4','/images/games/build_a_lot_4/build_a_lot_481x46.gif',110127790,11743417,'','false','/images/games/build_a_lot_4/build_a_lot_416x16.gif',false,11323,'/images/games/build_a_lot_4/build_a_lot_4100x75.jpg','/images/games/build_a_lot_4/build_a_lot_4179x135.jpg','/images/games/build_a_lot_4/build_a_lot_4320x240.jpg','false','/images/games/thumbnails_med_2/build_a_lot_4130x75.gif','/exe/build_a_lot_4-setup.exe?lc=en&ext=build_a_lot_4-setup.exe','Generate Clean, Green Power!','Energize eco-friendly neighborhoods and help towns grow by generating clean, green power!','false',false,false,'Build a Lot 4');ag(117399517,'City Sights: Hello Seattle','/images/games/citysights/citysights81x46.gif',1100710,117435580,'','false','/images/games/citysights/citysights16x16.gif',false,11323,'/images/games/citysights/citysights100x75.jpg','/images/games/citysights/citysights179x135.jpg','/images/games/citysights/citysights320x240.jpg','false','/images/games/thumbnails_med_2/citysights130x75.gif','/exe/city_sights-setup.exe?lc=en&ext=city_sights-setup.exe','Uncover Seattle’s hidden gems & earn awards!','Seek & find the Emerald City’s hidden gems and earn unique awards!','false',false,false,'City Sights Seattle');ag(117450330,'Keys to Manhattan','/images/games/keys_to_manhattan/keys_to_manhattan81x46.gif',1100710,117486970,'','false','/images/games/keys_to_manhattan/keys_to_manhattan16x16.gif',false,11323,'/images/games/keys_to_manhattan/keys_to_manhattan100x75.jpg','/images/games/keys_to_manhattan/keys_to_manhattan179x135.jpg','/images/games/keys_to_manhattan/keys_to_manhattan320x240.jpg','false','/images/games/thumbnails_med_2/keys_to_manhattan130x75.gif','/exe/keys_to_manhattan-setup.exe?lc=en&ext=keys_to_manhattan-setup.exe','Uncover Emily’s Family Antiques and Childhood Memories!','Help Emily uncover family antiques and mysterious keys to restore a New York City townhouse!','false',false,false,'Keys To Manhattan');ag(117451913,'Passport to Perfume™','/images/games/passport_to_perfume/passport_to_perfume81x46.gif',0,117487710,'','false','/images/games/passport_to_perfume/passport_to_perfume16x16.gif',false,11323,'/images/games/passport_to_perfume/passport_to_perfume100x75.jpg','/images/games/passport_to_perfume/passport_to_perfume179x135.jpg','/images/games/passport_to_perfume/passport_to_perfume320x240.jpg','false','/images/games/thumbnails_med_2/passport_to_perfume130x75.gif','/exe/passport_to_perfume-setup.exe?lc=en&ext=passport_to_perfume-setup.exe','Seek and Sell Luxurious Fragrances!','Seek ingredients, blend fragrances, and successfully run your London perfume boutique!','false',false,false,'Passport To Perfume');ag(117485130,'Mystery P.I. - Lost in Los Angeles','/images/games/mysteryPI_los_angeles/mysteryPI_los_angeles81x46.gif',1100710,117523817,'','false','/images/games/mysteryPI_los_angeles/mysteryPI_los_angeles16x16.gif',false,11323,'/images/games/mysteryPI_los_angeles/mysteryPI_los_angeles100x75.jpg','/images/games/mysteryPI_los_angeles/mysteryPI_los_angeles179x135.jpg','/images/games/mysteryPI_los_angeles/mysteryPI_los_angeles320x240.jpg','false','/images/games/thumbnails_med_2/mysteryPI_los_angeles130x75.gif','/exe/mystery_pi_lost_in_los_angeles-setup.exe?lc=en&ext=mystery_pi_lost_in_los_angeles-setup.exe','Search for the Stolen Hollywood Blockbuster!','From Malibu to movie sets, search L.A. for a stolen Hollywood blockbuster!  ','false',false,false,'Mystery PI Lost In Los Angeles');ag(117487143,'Horatio&rsquo;s Travels','/images/games/horatios_travels/horatios_travels81x46.gif',0,117525847,'','false','/images/games/horatios_travels/horatios_travels16x16.gif',false,11323,'/images/games/horatios_travels/horatios_travels100x75.jpg','/images/games/horatios_travels/horatios_travels179x135.jpg','/images/games/horatios_travels/horatios_travels320x240.jpg','false','/images/games/thumbnails_med_2/horatios_travels130x75.gif','/exe/horatios_travels-setup.exe?lc=en&ext=horatios_travels-setup.exe','Deliver Desserts to the World’s Wackiest Customers!','Deliver desserts to the world’s wackiest customers in this globetrotting time management adventure!','false',false,false,'Horatios Travels');ag(117488817,'Puppy Stylin&rsquo;','/images/games/puppy_stylin/puppy_stylin81x46.gif',0,117526537,'','false','/images/games/puppy_stylin/puppy_stylin16x16.gif',false,11323,'/images/games/puppy_stylin/puppy_stylin100x75.jpg','/images/games/puppy_stylin/puppy_stylin179x135.jpg','/images/games/puppy_stylin/puppy_stylin320x240.jpg','false','/images/games/thumbnails_med_2/puppy_stylin130x75.gif','/exe/puppy_stylin-setup.exe?lc=en&ext=puppy_stylin-setup.exe','Prep Pups to be Dog Show Champs!','Prep pups to be dog show champs! Wash, trim, and brush your way to the top!','false',false,false,'Puppy Stylin');ag(117497293,'Puppy Stylin’','/images/games/puppy_stylin/puppy_stylin81x46.gif',110083820,117536950,'404576f0-0d5b-4a06-abd0-f52a55482132','false','/images/games/puppy_stylin/puppy_stylin16x16.gif',false,11323,'/images/games/puppy_stylin/puppy_stylin100x75.jpg','/images/games/puppy_stylin/puppy_stylin179x135.jpg','/images/games/puppy_stylin/puppy_stylin320x240.jpg','false','/images/games/thumbnails_med_2/puppy_stylin130x75.gif','','Prep Pups to be Dog Show Champs!','Prep pups to be dog show champs! Wash, trim, and brush your way to the top!','true',false,false,'Puppy Stylin OL AS3');ag(117498460,'Tradewinds Odyssey','/images/games/tradewinds_odyssey/tradewinds_odyssey81x46.gif',110083820,117537943,'adc8f2bf-7941-4e6b-9fab-198bfe39fdf8','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','','Navigate the high seas of Ancient Greece!','An epic journey across Ancient Greece where gods, heroes and monsters await!','true',false,false,'Tradewinds Odyssey OL AS3');ag(117555593,'Fishdom H2O: Hidden Odyssey','/images/games/fishdom_h2o/fishdom_h2o81x46.gif',110082753,11759493,'180cb4ea-7a8a-4aad-bea3-d99395daf16c','false','/images/games/fishdom_h2o/fishdom_h2o16x16.gif',false,11323,'/images/games/fishdom_h2o/fishdom_h2o100x75.jpg','/images/games/fishdom_h2o/fishdom_h2o179x135.jpg','/images/games/fishdom_h2o/fishdom_h2o320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_h2o130x75.gif','','Create Exotic, Award-winning Aquariums!','Dive for exotic hidden objects and create your dream aquariums!','true',true,true,'Fishdom H20 OLT1');ag(117576307,'Mr. Jones’ Graveyard Shift','/images/games/mr_jones_graveyardshift/mr_jones_graveyardshift81x46.gif',1003,117615510,'','false','/images/games/mr_jones_graveyardshift/mr_jones_graveyardshift16x16.gif',false,11323,'/images/games/mr_jones_graveyardshift/mr_jones_graveyardshift100x75.jpg','/images/games/mr_jones_graveyardshift/mr_jones_graveyardshift179x135.jpg','/images/games/mr_jones_graveyardshift/mr_jones_graveyardshift320x240.jpg','false','/images/games/thumbnails_med_2/mr_jones_graveyardshift130x75.gif','/exe/mr_jones_graveyard_shift-setup.exe?lc=en&ext=mr_jones_graveyard_shift-setup.exe','Help Dig Up a Cemetery Empire!','Help Mr. Jones dig up a cemetery empire – he’s just DYING to get rich quick! ','false',false,false,'Mr Jones Graveyard Shift');ag(117579150,'Women’s Murder Club: Twice in a Blue Moon','/images/games/womens_murder_club_3/womens_murder_club_381x46.gif',1100710,117618977,'','false','/images/games/womens_murder_club_3/womens_murder_club_316x16.gif',false,11323,'/images/games/womens_murder_club_3/womens_murder_club_3100x75.jpg','/images/games/womens_murder_club_3/womens_murder_club_3179x135.jpg','/images/games/womens_murder_club_3/womens_murder_club_3320x240.jpg','false','/images/games/thumbnails_med_2/womens_murder_club_3130x75.gif','/exe/womens_murder_club_3-setup.exe?lc=en&ext=womens_murder_club_3-setup.exe','Decipher murderous clues before it’s too late!','Decipher a criminal’s murderous clues before it’s too late!','false',false,false,'Womens Murder Club 3');ag(117601840,'Farm Frenzy 3','/images/games/farm_frenzy3/farm_frenzy381x46.gif',110127790,117640670,'','false','/images/games/farm_frenzy3/farm_frenzy316x16.gif',false,11323,'/images/games/farm_frenzy3/farm_frenzy3100x75.jpg','/images/games/farm_frenzy3/farm_frenzy3179x135.jpg','/images/games/farm_frenzy3/farm_frenzy3320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy3130x75.gif','/exe/farm_frenzy_3-setup.exe?lc=en&ext=farm_frenzy_3-setup.exe','Manage Wacky Farms Around the World!','From penguin breeding to jewelry making, manage 5 wacky farms around the world!','false',false,false,'Farm Frenzy 3');ag(117603270,'Go! Go! Rescue Squad!','/images/games/gogo_rescue_squad/gogo_rescue_squad81x46.gif',1007,117642100,'','false','/images/games/gogo_rescue_squad/gogo_rescue_squad16x16.gif',false,11323,'/images/games/gogo_rescue_squad/gogo_rescue_squad100x75.jpg','/images/games/gogo_rescue_squad/gogo_rescue_squad179x135.jpg','/images/games/gogo_rescue_squad/gogo_rescue_squad320x240.jpg','false','/images/games/thumbnails_med_2/gogo_rescue_squad130x75.gif','/exe/go_go_rescue_squad-setup.exe?lc=en&ext=go_go_rescue_squad-setup.exe','Save Hapless Citizens from Impending Doom!','Solve fiendishly addicting puzzles to save hapless citizens from impending doom!','false',false,false,'Go Go Rescue Squad');ag(117604257,'Joe’s Garden','/images/games/joes_garden/joes_garden81x46.gif',1003,117643867,'','false','/images/games/joes_garden/joes_garden16x16.gif',false,11323,'/images/games/joes_garden/joes_garden100x75.jpg','/images/games/joes_garden/joes_garden179x135.jpg','/images/games/joes_garden/joes_garden320x240.jpg','false','/images/games/thumbnails_med_2/joes_garden130x75.gif','/exe/joes_garden-setup.exe?lc=en&ext=joes_garden-setup.exe','Resurrect Joe’s Failed Floral Business!','Resurrect Joe’s failed floral business and take him from rags to riches!','false',false,false,'Joes Garden');ag(117609643,'Eco Rescue: Project Rainforest','/images/games/eco_rescue/eco_rescue81x46.gif',1100710,117648923,'','false','/images/games/eco_rescue/eco_rescue16x16.gif',false,11323,'/images/games/eco_rescue/eco_rescue100x75.jpg','/images/games/eco_rescue/eco_rescue179x135.jpg','/images/games/eco_rescue/eco_rescue320x240.jpg','false','/images/games/thumbnails_med_2/eco_rescue130x75.gif','/exe/eco_rescue_project_rainforest-setup.exe?lc=en&ext=eco_rescue_project_rainforest-setup.exe','Exotic Puzzle Adventure to Save the Planet!','Trek through an exotic puzzle adventure and save the planet!  ','false',false,false,'Eco Rescue Project Rainforest');ag(117610610,'My Kingdom for the Princess','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess81x46.gif',110082753,117649470,'aa6baa95-b54a-41dd-8913-a589b87c9dbe','false','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess16x16.gif',false,11323,'/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess100x75.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess179x135.jpg','/images/games/my_kingdom_for_the_princess/my_kingdom_for_the_princess320x240.jpg','false','/images/games/thumbnails_med_2/my_kingdom_for_the_princess130x75.gif','','A Dark Ages Disaster and Damsel in Distress!','Help the brave knight Arthur tackle a Dark Ages disaster and damsel in distress!','true',true,true,'My Kingdom for the Princess OL');ag(117618927,'Little Things','/images/games/little_things/little_things81x46.gif',1100710,117657950,'','false','/images/games/little_things/little_things16x16.gif',false,11323,'/images/games/little_things/little_things100x75.jpg','/images/games/little_things/little_things179x135.jpg','/images/games/little_things/little_things320x240.jpg','false','/images/games/thumbnails_med_2/little_things130x75.gif','/exe/little_things-setup.exe?lc=en&ext=little_things-setup.exe','Quirky and Colorful Hidden Object Hunt!','Quirky, colorful, and revolutionary hidden object fun for the whole family!','false',false,false,'Little Things');ag(117643617,'Sprouts Adventure','/images/games/SproutsAdventure/SproutsAdventure81x46.gif',0,117682243,'','false','/images/games/SproutsAdventure/SproutsAdventure16x16.gif',false,11323,'/images/games/SproutsAdventure/SproutsAdventure100x75.jpg','/images/games/SproutsAdventure/SproutsAdventure179x135.jpg','/images/games/SproutsAdventure/SproutsAdventure320x240.jpg','false','/images/games/thumbnails_med_2/SproutsAdventure130x75.gif','/exe/sprouts_adventure-setup.exe?lc=en&ext=sprouts_adventure-setup.exe','Rule Almightily Over the Sprouts!','Rule almightily over the Sprouts and help rebuild their prosperous community!   ','false',false,false,'Sprouts Adventure');ag(117644500,'Angela Young 2: Escape the Dreamscape','/images/games/angela_young2/angela_young281x46.gif',1100710,117683607,'','false','/images/games/angela_young2/angela_young216x16.gif',false,11323,'/images/games/angela_young2/angela_young2100x75.jpg','/images/games/angela_young2/angela_young2179x135.jpg','/images/games/angela_young2/angela_young2320x240.jpg','false','/images/games/thumbnails_med_2/angela_young2130x75.gif','/exe/angela_young_2-setup.exe?lc=en&ext=angela_young_2-setup.exe','Find Felix and Escape the Eerie Puzzle Maze!','Find Felix and navigate a getaway through the eerie maze of puzzles!','false',false,false,'Angela Young 2');ag(117650233,'Everything Nice','/images/games/everything_nice/everything_nice81x46.gif',110127790,11768963,'','false','/images/games/everything_nice/everything_nice16x16.gif',false,11323,'/images/games/everything_nice/everything_nice100x75.jpg','/images/games/everything_nice/everything_nice179x135.jpg','/images/games/everything_nice/everything_nice320x240.jpg','false','/images/games/thumbnails_med_2/everything_nice130x75.gif','/exe/everything_nice-setup.exe?lc=en&ext=everything_nice-setup.exe','A Wondrous Factory of Sweet Surprises!','With sweet surprises of sugar and spice, Abby’s wondrous factory makes everything nice!','false',false,false,'Everything Nice');ag(117651207,'Tourist Trap','/images/games/tourist_trap/tourist_trap81x46.gif',110127790,117690817,'','false','/images/games/tourist_trap/tourist_trap16x16.gif',false,11323,'/images/games/tourist_trap/tourist_trap100x75.jpg','/images/games/tourist_trap/tourist_trap179x135.jpg','/images/games/tourist_trap/tourist_trap320x240.jpg','false','/images/games/thumbnails_med_2/tourist_trap130x75.gif','/exe/tourist_trap-setup.exe?lc=en&ext=tourist_trap-setup.exe','Create a Wacky Vacation Superstation!  ','As Mayor of Kitchville, transform your sleepy town into a vacation superstation!','false',false,false,'Tourist Trap');ag(117653917,'The Pretender: Part One','/images/games/the_pretender/the_pretender81x46.gif',110082753,117692620,'42dd4087-d766-4ec4-bf1b-fed91ce62456','false','/images/games/the_pretender/the_pretender16x16.gif',false,11323,'/images/games/the_pretender/the_pretender100x75.jpg','/images/games/the_pretender/the_pretender179x135.jpg','/images/games/the_pretender/the_pretender320x240.jpg','false','/images/games/thumbnails_med_2/the_pretender130x75.gif','','Puzzling fun in another dimension.','Save a magician’s audience in a strange world of puzzling fun.','true',false,false,'The Pretender OL AS3');ag(117663413,'City Style','/images/games/CityStyle/CityStyle81x46.gif',1100710,117702943,'','false','/images/games/CityStyle/CityStyle16x16.gif',false,11323,'/images/games/CityStyle/CityStyle100x75.jpg','/images/games/CityStyle/CityStyle179x135.jpg','/images/games/CityStyle/CityStyle320x240.jpg','false','/images/games/thumbnails_med_2/CityStyle130x75.gif','/exe/city_style-setup.exe?lc=en&ext=city_style-setup.exe','Seek-and-Find to Save this Fashion Mag!','Seek-and-find amid the cutthroat glamour to save this fashion magazine!','false',false,false,'City Style');ag(117665770,'Iron Roses','/images/games/iron_roses/iron_roses81x46.gif',1003,117704193,'','false','/images/games/iron_roses/iron_roses16x16.gif',false,11323,'/images/games/iron_roses/iron_roses100x75.jpg','/images/games/iron_roses/iron_roses179x135.jpg','/images/games/iron_roses/iron_roses320x240.jpg','false','/images/games/thumbnails_med_2/iron_roses130x75.gif','/exe/iron_roses-setup.exe?lc=en&ext=iron_roses-setup.exe','Reunite Alex’s Rock Band!','Scour the city to help Alex reunite her beloved rock band!','false',false,false,'Iron Roses');ag(117666710,'Magic Encyclopedia: Moonlight Mystery','/images/games/magic_encyclopedia2/magic_encyclopedia281x46.gif',1100710,11770553,'','false','/images/games/magic_encyclopedia2/magic_encyclopedia216x16.gif',false,11323,'/images/games/magic_encyclopedia2/magic_encyclopedia2100x75.jpg','/images/games/magic_encyclopedia2/magic_encyclopedia2179x135.jpg','/images/games/magic_encyclopedia2/magic_encyclopedia2320x240.jpg','false','/images/games/thumbnails_med_2/magic_encyclopedia2130x75.gif','/exe/magic_encyclopedia_2-setup.exe?lc=en&ext=magic_encyclopedia_2-setup.exe','Unravel the Professor’s Mystical Secrets!','Katrina’s mystical quest to find her professor and unravel ancient secrets!','false',false,false,'Magic Encyclopedia 2');ag(117673440,'Hide and Secret 3: Pharoah’s Quest','/images/games/hide_and_secret_3/hide_and_secret_381x46.gif',1100710,11771367,'','false','/images/games/hide_and_secret_3/hide_and_secret_316x16.gif',false,11323,'/images/games/hide_and_secret_3/hide_and_secret_3100x75.jpg','/images/games/hide_and_secret_3/hide_and_secret_3179x135.jpg','/images/games/hide_and_secret_3/hide_and_secret_3320x240.jpg','false','/images/games/thumbnails_med_2/hide_and_secret_3130x75.gif','/exe/hide_and_secret_3-setup.exe?lc=en&ext=hide_and_secret_3-setup.exe','Reunite Eternal Lovers of Ancient Egypt!','Solve hidden object mysteries to reunite eternal lovers of ancient Egypt!','false',false,false,'Hide And Secret 3');ag(117680873,'Escape from Paradise 2','/images/games/escape_from_paradise2/escape_from_paradise281x46.gif',0,117720247,'','false','/images/games/escape_from_paradise2/escape_from_paradise216x16.gif',false,11323,'/images/games/escape_from_paradise2/escape_from_paradise2100x75.jpg','/images/games/escape_from_paradise2/escape_from_paradise2179x135.jpg','/images/games/escape_from_paradise2/escape_from_paradise2320x240.jpg','false','/images/games/thumbnails_med_2/escape_from_paradise2130x75.gif','/exe/escape_from_paradise_2-setup.exe?lc=en&ext=escape_from_paradise_2-setup.exe','Become Tribal Chief to Find True Love!','Become tribal chief of a successful society to land the hand of your true love!','false',false,false,'Escape from Paradise 2');ag(117682280,'Bato: Treasures of Tibet','/images/games/bato/bato81x46.gif',110083820,11772243,'d12b6166-07e5-48e5-a56c-be1244bff0cd','false','/images/games/bato/bato16x16.gif',false,11323,'/images/games/bato/bato100x75.jpg','/images/games/bato/bato179x135.jpg','/images/games/bato/bato320x240.jpg','false','/images/games/thumbnails_med_2/bato130x75.gif','','Match Colored Stones to Unearth Ancient Treasures!','Match similarly colored stones to unearth Far Eastern treasures!','true',true,true,'Bato OLT1 AS3');ag(117683747,'Farm Frenzy 3','/images/games/farm_frenzy3/farm_frenzy381x46.gif',110082753,117723700,'10474986-818a-466f-9cdd-5af5a6d9a459','false','/images/games/farm_frenzy3/farm_frenzy316x16.gif',false,11323,'/images/games/farm_frenzy3/farm_frenzy3100x75.jpg','/images/games/farm_frenzy3/farm_frenzy3179x135.jpg','/images/games/farm_frenzy3/farm_frenzy3320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy3130x75.gif','','Manage Wacky Farms Around the World!','From penguin breeding to jewelry making, manage 5 wacky farms around the world!','true',false,false,'Farm Frenzy 3 OLT1 AS3');ag(117684730,'Fish! Let’s Jump!','/images/games/fish_lets_jump/fish_lets_jump81x46.gif',110083820,117724467,'ff6c128a-0694-4c43-9c84-62a386c89f0a','false','/images/games/fish_lets_jump/fish_lets_jump16x16.gif',false,11323,'/images/games/fish_lets_jump/fish_lets_jump100x75.jpg','/images/games/fish_lets_jump/fish_lets_jump179x135.jpg','/images/games/fish_lets_jump/fish_lets_jump320x240.jpg','false','/images/games/thumbnails_med_2/fish_lets_jump130x75.gif','','A puzzle game about jumping fish.','A puzzle game about jumping fish. The goal is to clear the board of fish.','true',true,true,'Fish! Letâ€™s Jump! OLT1 AS3');ag(117688203,'Save our Spirit','/images/games/save_our_spirit/save_our_spirit81x46.gif',1100710,117729483,'','false','/images/games/save_our_spirit/save_our_spirit16x16.gif',false,11323,'/images/games/save_our_spirit/save_our_spirit100x75.jpg','/images/games/save_our_spirit/save_our_spirit179x135.jpg','/images/games/save_our_spirit/save_our_spirit320x240.jpg','false','/images/games/thumbnails_med_2/save_our_spirit130x75.gif','/exe/save_out_spirit-setup.exe?lc=en&ext=save_out_spirit-setup.exe','Save Lord Longstep’s Kidnapped Love!','Set off on a global adventure to save Lord Longstep’s kidnapped love!','false',false,false,'Save our Spirit');ag(117690343,'Paradise Beach','/images/games/paradise_beach/paradise_beach81x46.gif',0,117731953,'','false','/images/games/paradise_beach/paradise_beach16x16.gif',false,11323,'/images/games/paradise_beach/paradise_beach100x75.jpg','/images/games/paradise_beach/paradise_beach179x135.jpg','/images/games/paradise_beach/paradise_beach320x240.jpg','false','/images/games/thumbnails_med_2/paradise_beach130x75.gif','/exe/paradise_beach-setup.exe?lc=en&ext=paradise_beach-setup.exe','Build Your Beach Resort Empire!','Create your own castle in the sand as you build a beach resort empire!','false',false,false,'Paradise Beach');ag(117693570,'Zuma’s Revenge! Adventure','/images/games/zumas_revenge/zumas_revenge81x46.gif',1003,117734103,'','false','/images/games/zumas_revenge/zumas_revenge16x16.gif',false,11323,'/images/games/zumas_revenge/zumas_revenge100x75.jpg','/images/games/zumas_revenge/zumas_revenge179x135.jpg','/images/games/zumas_revenge/zumas_revenge320x240.jpg','false','/images/games/thumbnails_med_2/zumas_revenge130x75.gif','/exe/zumas_revenge-setup.exe?lc=en&ext=zumas_revenge-setup.exe','Take on the Tikis! ','Take on the tikis with amphibian agility in this ball-blasting sequel!','false',false,false,'Zumas Revenge');ag(117700587,'Superior Save','/images/games/superior_save/superior_save81x46.gif',1100710,117741880,'','false','/images/games/superior_save/superior_save16x16.gif',false,11323,'/images/games/superior_save/superior_save100x75.jpg','/images/games/superior_save/superior_save179x135.jpg','/images/games/superior_save/superior_save320x240.jpg','false','/images/games/thumbnails_med_2/superior_save130x75.gif','/exe/superior_save-setup.exe?lc=en&ext=superior_save-setup.exe','Rescue your Kidnapped Boss!  ','A hidden object thriller to rescue your kidnapped boss!','false',false,false,'Superior Save');ag(117701833,'Cake Mania Main Street','/images/games/CakeMania_MainStreet/CakeMania_MainStreet81x46.gif',110127790,117742537,'','false','/images/games/CakeMania_MainStreet/CakeMania_MainStreet16x16.gif',false,11323,'/images/games/CakeMania_MainStreet/CakeMania_MainStreet100x75.jpg','/images/games/CakeMania_MainStreet/CakeMania_MainStreet179x135.jpg','/images/games/CakeMania_MainStreet/CakeMania_MainStreet320x240.jpg','false','/images/games/thumbnails_med_2/CakeMania_MainStreet130x75.gif','/exe/cake_mania_4-setup.exe?lc=en&ext=cake_mania_4-setup.exe','Purchase and Manage Bakersfield Boutiques!','Help Jill and her friends purchase, manage, and upgrade 4 Bakersfield boutiques!','false',false,false,'Cake Mania 4');ag(117703647,'Aztec Tribe','/images/games/aztec_tribe/aztec_tribe81x46.gif',0,117744727,'','false','/images/games/aztec_tribe/aztec_tribe16x16.gif',false,11323,'/images/games/aztec_tribe/aztec_tribe100x75.jpg','/images/games/aztec_tribe/aztec_tribe179x135.jpg','/images/games/aztec_tribe/aztec_tribe320x240.jpg','false','/images/games/thumbnails_med_2/aztec_tribe130x75.gif','/exe/aztec_tribe-setup.exe?lc=en&ext=aztec_tribe-setup.exe','Build a Superior Civilization!','Build a superior civilization and ward off the Aztec&rsquo;s attackers!','false',false,false,'Aztec Tribe');ag(117739927,'Slingo Mystery','/images/games/slingo_mystery/slingo_mystery81x46.gif',1100710,117780800,'','false','/images/games/slingo_mystery/slingo_mystery16x16.gif',false,11323,'/images/games/slingo_mystery/slingo_mystery100x75.jpg','/images/games/slingo_mystery/slingo_mystery179x135.jpg','/images/games/slingo_mystery/slingo_mystery320x240.jpg','false','/images/games/thumbnails_med_2/slingo_mystery130x75.gif','/exe/slingo_mystery-setup.exe?lc=en&ext=slingo_mystery-setup.exe','Seek-and-Find Casino Heist!','Seek-and-find casino heist intertwines love, money, and revenge!','false',false,false,'Slingo Mystery');ag(117740550,'The Legend of Sanna – Rise of a Great Colony','/images/games/legend_of_sanna/legend_of_sanna81x46.gif',0,117781253,'','false','/images/games/legend_of_sanna/legend_of_sanna16x16.gif',false,11323,'/images/games/legend_of_sanna/legend_of_sanna100x75.jpg','/images/games/legend_of_sanna/legend_of_sanna179x135.jpg','/images/games/legend_of_sanna/legend_of_sanna320x240.jpg','false','/images/games/thumbnails_med_2/legend_of_sanna130x75.gif','/exe/the_legend_of_sanna-setup.exe?lc=en&ext=the_legend_of_sanna-setup.exe','Lead this Civilization to Greatness!','Lead a civilization to greatness as you defend against war and sickness!','false',false,false,'The Legend Of Sanna');ag(117753307,'Fishdom: Spooky Splash™','/images/games/fishdom_spooky_splash/fishdom_spooky_splash81x46.gif',1007,117794137,'','false','/images/games/fishdom_spooky_splash/fishdom_spooky_splash16x16.gif',false,11323,'/images/games/fishdom_spooky_splash/fishdom_spooky_splash100x75.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash179x135.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_spooky_splash130x75.gif','/exe/fishdom_spooky_splash-setup.exe?lc=en&ext=fishdom_spooky_splash-setup.exe','Get spooked – hook, line, and sinker!','Solve puzzles to create your scary aquarium! Get spooked – hook, line, and sinker!','false',false,false,'Fishdom Spooky Splash');ag(117760850,'Agatha Christie: Dead Man’s Folly','/images/games/dead_mans_folly/dead_mans_folly81x46.gif',1100710,117802570,'','false','/images/games/dead_mans_folly/dead_mans_folly16x16.gif',false,11323,'/images/games/dead_mans_folly/dead_mans_folly100x75.jpg','/images/games/dead_mans_folly/dead_mans_folly179x135.jpg','/images/games/dead_mans_folly/dead_mans_folly320x240.jpg','false','/images/games/thumbnails_med_2/dead_mans_folly130x75.gif','/exe/agatha_christie_3-setup.exe?lc=en&ext=agatha_christie_3-setup.exe','You’re Invited to a Murder Hunt!','Welcome to a Murder Hunt! Could this charade be a disguise for the perfect crime?','false',false,false,'Agatha Christie 3');ag(117762797,'Kelly Green: Garden Queen','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen81x46.gif',0,117804437,'','false','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen16x16.gif',false,11323,'/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen100x75.jpg','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen179x135.jpg','/images/games/KellyGreen_GardenQueen/KellyGreen_GardenQueen320x240.jpg','false','/images/games/thumbnails_med_2/KellyGreen_GardenQueen130x75.gif','/exe/kelly_green-setup.exe?lc=en&ext=kelly_green-setup.exe','From City Gal to Gardening Guru!','Master the nursery business and go from city gal to gardening guru!','false',false,false,'Kelly Green');ag(117766587,'Enlightenus','/images/games/enlightenus/enlightenus81x46.gif',1100710,11780853,'','false','/images/games/enlightenus/enlightenus16x16.gif',false,11323,'/images/games/enlightenus/enlightenus100x75.jpg','/images/games/enlightenus/enlightenus179x135.jpg','/images/games/enlightenus/enlightenus320x240.jpg','false','/images/games/thumbnails_med_2/enlightenus130x75.gif','/exe/enlightenus-setup.exe?lc=en&ext=enlightenus-setup.exe','Detective Quest in the World of Enlightenus!','Wind your way through Enlightenus on a detective’s quest for missing novels!','false',false,false,'Enlightenus');ag(117767470,'Autumn&rsquo;s Treasures','/images/games/autumns_treasures/autumns_treasures81x46.gif',1100710,117809110,'','false','/images/games/autumns_treasures/autumns_treasures16x16.gif',false,11323,'/images/games/autumns_treasures/autumns_treasures100x75.jpg','/images/games/autumns_treasures/autumns_treasures179x135.jpg','/images/games/autumns_treasures/autumns_treasures320x240.jpg','false','/images/games/thumbnails_med_2/autumns_treasures130x75.gif','/exe/autumns_treasures-setup.exe?lc=en&ext=autumns_treasures-setup.exe','Recover Mysterious Relics from Grandpa’s Past!','Help Autumn search grandpa’s antiques shop to recover mysterious relics of his past!','false',false,false,'Autumns Treasures');ag(117768563,'Tinseltown Dreams: The 50&rsquo;s','/images/games/tinseltown_dreams/tinseltown_dreams81x46.gif',1007,117810860,'','false','/images/games/tinseltown_dreams/tinseltown_dreams16x16.gif',false,11323,'/images/games/tinseltown_dreams/tinseltown_dreams100x75.jpg','/images/games/tinseltown_dreams/tinseltown_dreams179x135.jpg','/images/games/tinseltown_dreams/tinseltown_dreams320x240.jpg','false','/images/games/thumbnails_med_2/tinseltown_dreams130x75.gif','/exe/tinseltown_dreams-setup.exe?lc=en&ext=tinseltown_dreams-setup.exe','Movie-making Match-3 Madness!','Earn film production budgets during match-3 movie-making madness!','false',false,false,'Tinseltown Dreams');ag(117770767,'Every Day Genius: Square Logic','/images/games/square_logic/square_logic81x46.gif',1007,117812890,'','false','/images/games/square_logic/square_logic16x16.gif',false,11323,'/images/games/square_logic/square_logic100x75.jpg','/images/games/square_logic/square_logic179x135.jpg','/images/games/square_logic/square_logic320x240.jpg','false','/images/games/thumbnails_med_2/square_logic130x75.gif','/exe/squarelogic-setup.exe?lc=en&ext=squarelogic-setup.exe','Unleash Your Inner Genius!','Unleash your inner genius with over 20,000 puzzles of logic and arithmetic!','false',false,false,'SquareLogic');ag(117774810,'Bookworm Adventures: The Monkey King','/images/games/BWA_monkey_king/BWA_monkey_king81x46.gif',1008,117816433,'','false','/images/games/BWA_monkey_king/BWA_monkey_king16x16.gif',false,11323,'/images/games/BWA_monkey_king/BWA_monkey_king100x75.jpg','/images/games/BWA_monkey_king/BWA_monkey_king179x135.jpg','/images/games/BWA_monkey_king/BWA_monkey_king320x240.jpg','false','/images/games/thumbnails_med_2/BWA_monkey_king130x75.gif','/exe/bookworm_monkey_king-setup.exe?lc=en&ext=bookworm_monkey_king-setup.exe','Combine Forces to Save the Great Library!','Build words and battle foes alongside vocab allies to save the Great Library!','false',false,false,'Bookworm Monkey King');ag(117778147,'Romance of Rome','/images/games/romance_of_rome/romance_of_rome81x46.gif',1100710,117820100,'','false','/images/games/romance_of_rome/romance_of_rome16x16.gif',false,11323,'/images/games/romance_of_rome/romance_of_rome100x75.jpg','/images/games/romance_of_rome/romance_of_rome179x135.jpg','/images/games/romance_of_rome/romance_of_rome320x240.jpg','false','/images/games/thumbnails_med_2/romance_of_rome130x75.gif','/exe/romance_of_rome-setup.exe?lc=en&ext=romance_of_rome-setup.exe','Love and Treachery in the Ancient Empire!  ','Love and treachery in the ancient empire in a quest for stolen relics!  ','false',false,false,'Romance of Rome');ag(117779147,'Age of Oracles™: Tara’s Journey','/images/games/age_of_oracles/age_of_oracles81x46.gif',1007,117821993,'','false','/images/games/age_of_oracles/age_of_oracles16x16.gif',false,11323,'/images/games/age_of_oracles/age_of_oracles100x75.jpg','/images/games/age_of_oracles/age_of_oracles179x135.jpg','/images/games/age_of_oracles/age_of_oracles320x240.jpg','false','/images/games/thumbnails_med_2/age_of_oracles130x75.gif','/exe/age_of_oracles-setup.exe?lc=en&ext=age_of_oracles-setup.exe','Prove Tara Worthy of her Destiny!','Conquer challenges alongside a magical peacock and prove Tara worthy of her destiny!','false',false,false,'Age of Oracles');ag(117783227,'Fishdom: Spooky Splash™','/images/games/fishdom_spooky_splash/fishdom_spooky_splash81x46.gif',110083820,117825930,'4a348f69-bf38-48ab-affc-ba920dbd4e5c','false','/images/games/fishdom_spooky_splash/fishdom_spooky_splash16x16.gif',false,11323,'/images/games/fishdom_spooky_splash/fishdom_spooky_splash100x75.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash179x135.jpg','/images/games/fishdom_spooky_splash/fishdom_spooky_splash320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_spooky_splash130x75.gif','','Get spooked – hook, line, and sinker!','Solve puzzles to create your scary aquarium! Get spooked – hook, line, and sinker!','true',true,false,'Fishdom Spooky Splash OL');ag(117785367,'Gemini Lost™','/images/games/gemini_lost/gemini_lost81x46.gif',0,117827117,'','false','/images/games/gemini_lost/gemini_lost16x16.gif',false,11323,'/images/games/gemini_lost/gemini_lost100x75.jpg','/images/games/gemini_lost/gemini_lost179x135.jpg','/images/games/gemini_lost/gemini_lost320x240.jpg','false','/images/games/thumbnails_med_2/gemini_lost130x75.gif','/exe/gemini_lost-setup.exe?lc=en&ext=gemini_lost-setup.exe','Survive and Thrive Following an Astrological Teleport!  ','Survive and thrive after becoming stranded in a deserted astrological world!','false',false,false,'Gemini Lost');ag(117786977,'Ghost Town Mysteries™ - Bodie','/images/games/GhostTown_Mysteries/GhostTown_Mysteries81x46.gif',1100710,117828477,'','false','/images/games/GhostTown_Mysteries/GhostTown_Mysteries16x16.gif',false,11323,'/images/games/GhostTown_Mysteries/GhostTown_Mysteries100x75.jpg','/images/games/GhostTown_Mysteries/GhostTown_Mysteries179x135.jpg','/images/games/GhostTown_Mysteries/GhostTown_Mysteries320x240.jpg','false','/images/games/thumbnails_med_2/GhostTown_Mysteries130x75.gif','/exe/ghost_town_mysteries-setup.exe?lc=en&ext=ghost_town_mysteries-setup.exe','The Haunting Unsolved Murder of Evelyn Byers!','Solve the gruesome, 100-year-old murder haunting this real life ghost town!','false',false,false,'Ghost Town Mysteries');ag(117788977,'The Mysterious Past of Gregory Phoenix','/images/games/the_mysterious_past/the_mysterious_past81x46.gif',1100710,117830680,'','false','/images/games/the_mysterious_past/the_mysterious_past16x16.gif',false,11323,'/images/games/the_mysterious_past/the_mysterious_past100x75.jpg','/images/games/the_mysterious_past/the_mysterious_past179x135.jpg','/images/games/the_mysterious_past/the_mysterious_past320x240.jpg','false','/images/games/thumbnails_med_2/the_mysterious_past130x75.gif','/exe/mysterious_past_gregory-setup.exe?lc=en&ext=mysterious_past_gregory-setup.exe','Reveal the Secrets of His Ancient Legacy!','Reveal the secrets of Gregory’s ancient legacy and search for the Prince’s stolen armor!','false',false,false,'Mysterious Past Gregory');ag(117795997,'Kitchen Brigade','/images/games/KitchenBrigade/KitchenBrigade81x46.gif',110127790,117837667,'','false','/images/games/KitchenBrigade/KitchenBrigade16x16.gif',false,11323,'/images/games/KitchenBrigade/KitchenBrigade100x75.jpg','/images/games/KitchenBrigade/KitchenBrigade179x135.jpg','/images/games/KitchenBrigade/KitchenBrigade320x240.jpg','false','/images/games/thumbnails_med_2/KitchenBrigade130x75.gif','/exe/kitchen_brigade-setup.exe?lc=en&ext=kitchen_brigade-setup.exe','Open and Manage 7 New Restaurants!','Open and manage 7 new restaurants to win a reality TV competition!','false',false,false,'Kitchen Brigade');ag(117800857,'Zombie Bowl-O-Rama','/images/games/Zombie_BowlORama/Zombie_BowlORama81x46.gif',110011217,117842230,'','false','/images/games/Zombie_BowlORama/Zombie_BowlORama16x16.gif',false,11323,'/images/games/Zombie_BowlORama/Zombie_BowlORama100x75.jpg','/images/games/Zombie_BowlORama/Zombie_BowlORama179x135.jpg','/images/games/Zombie_BowlORama/Zombie_BowlORama320x240.jpg','false','/images/games/thumbnails_med_2/Zombie_BowlORama130x75.gif','/exe/zombie_bowl-setup.exe?lc=en&ext=zombie_bowl-setup.exe','Bowlers Beware - Zombies Strike!','Bowlers beware! Blast these graveyard goons into the gutter!','false',false,false,'Zombie Bowl O Rama');ag(117804257,'Tasty Turbo Trio','/images/games/tasty_turbo_trio/tasty_turbo_trio81x46.gif',1003,117846333,'','false','/images/games/tasty_turbo_trio/tasty_turbo_trio16x16.gif',false,11323,'/images/games/tasty_turbo_trio/tasty_turbo_trio100x75.jpg','/images/games/tasty_turbo_trio/tasty_turbo_trio179x135.jpg','/images/games/tasty_turbo_trio/tasty_turbo_trio320x240.jpg','false','/images/games/thumbnails_med_2/tasty_turbo_trio130x75.gif','/exe/turbo_trio-setup.exe?lc=en&ext=turbo_trio-setup.exe','Turbo Pizza, Turbo Subs and Turbo Fiesta – 3 in 1!','Manage shops of gourmet goodness - 3 for the price of 1!','false',false,false,'Turbo Trio');ag(117812470,'Danger Next Door - Miss Teri Tale','/images/games/miss_teri_tale3_bundle/miss_teri_tale3_bundle81x46.gif',1100710,117854330,'','false','/images/games/miss_teri_tale3_bundle/miss_teri_tale3_bundle16x16.gif',false,11323,'/images/games/miss_teri_tale3_bundle/miss_teri_tale3_bundle100x75.jpg','/images/games/miss_teri_tale3_bundle/miss_teri_tale3_bundle179x135.jpg','/images/games/miss_teri_tale3_bundle/miss_teri_tale3_bundle320x240.jpg','false','/images/games/thumbnails_med_2/miss_teri_tale3_bundle130x75.gif','/exe/danger_next_door_bundle-setup.exe?lc=en&ext=danger_next_door_bundle-setup.exe','Track the Killer in Peeking Town!','Track down the serial killer that’s terrorizing Peeking Town!','false',false,false,'Danger Next Door bundle');ag(117815167,'Mystery of Cleopatra','/images/games/mystery_of_cleopatra/mystery_of_cleopatra81x46.gif',1100710,117857993,'','false','/images/games/mystery_of_cleopatra/mystery_of_cleopatra16x16.gif',false,11323,'/images/games/mystery_of_cleopatra/mystery_of_cleopatra100x75.jpg','/images/games/mystery_of_cleopatra/mystery_of_cleopatra179x135.jpg','/images/games/mystery_of_cleopatra/mystery_of_cleopatra320x240.jpg','false','/images/games/thumbnails_med_2/mystery_of_cleopatra130x75.gif','/exe/mystery_of_cleopatra-setup.exe?lc=en&ext=mystery_of_cleopatra-setup.exe','Investigate a Roman Soldier’s Murder!','Investigate the murder of a Roman soldier who broke into Cleopatra’s palace!','false',false,false,'Mystery of Cleopatra');ag(117816160,'Shanghai','/images/games/shanghai/shanghai81x46.gif',110083820,117858803,'7ff4bba5-9afd-4fcd-b96a-02e37fa98f21','false','/images/games/shanghai/shanghai16x16.gif',false,11323,'/images/games/shanghai/shanghai100x75.jpg','/images/games/shanghai/shanghai179x135.jpg','/images/games/shanghai/shanghai320x240.jpg','false','/images/games/thumbnails_med_2/shanghai130x75.gif','','Remove all tiles!','Clear the playing field by finding pairs of tiles!','true',true,true,'Shanghai OLT1 AS3');ag(117817730,'Roman Towers','/images/games/roman_towers/roman_towers81x46.gif',110083820,117859433,'a6382e37-ffca-407c-b5ea-527cc403a13f','false','/images/games/roman_towers/roman_towers16x16.gif',false,11323,'/images/games/roman_towers/roman_towers100x75.jpg','/images/games/roman_towers/roman_towers179x135.jpg','/images/games/roman_towers/roman_towers320x240.jpg','false','/images/games/thumbnails_med_2/roman_towers130x75.gif','','Remove all cards!','Find cards that are one higher or lower than the card on the deck!','true',true,true,'Roman Towers OLT1 AS3');ag(117818370,'Damage','/images/games/damage/damage81x46.gif',110083820,117860180,'56f8a19e-f8ff-45af-9033-6166dd555b9d','false','/images/games/damage/damage16x16.gif',false,11323,'/images/games/damage/damage100x75.jpg','/images/games/damage/damage179x135.jpg','/images/games/damage/damage320x240.jpg','false','/images/games/thumbnails_med_2/damage130x75.gif','','Clear the screen!','Clear the screen before the columns collide!','true',true,true,'Damage OLT1 AS3');ag(117819987,'Kniffler','/images/games/kniffler/kniffler81x46.gif',110083820,117861813,'73f16648-3242-4207-91db-4d9922e1b851','false','/images/games/kniffler/kniffler16x16.gif',false,11323,'/images/games/kniffler/kniffler100x75.jpg','/images/games/kniffler/kniffler179x135.jpg','/images/games/kniffler/kniffler320x240.jpg','false','/images/games/thumbnails_med_2/kniffler130x75.gif','','Shake the dices!','Shake the dices and find the best combinations!','true',true,true,'Kniffler OLT1 AS3');ag(117820913,'Elementals: The Magic Key','/images/games/elementals_magic_key/elementals_magic_key81x46.gif',1100710,117862507,'','false','/images/games/elementals_magic_key/elementals_magic_key16x16.gif',false,11323,'/images/games/elementals_magic_key/elementals_magic_key100x75.jpg','/images/games/elementals_magic_key/elementals_magic_key179x135.jpg','/images/games/elementals_magic_key/elementals_magic_key320x240.jpg','false','/images/games/thumbnails_med_2/elementals_magic_key130x75.gif','/exe/elementals_the_magic_key-setup.exe?lc=en&ext=elementals_the_magic_key-setup.exe','Restore the Key to Save Albert’s Sister!','Solve puzzles and hunt for hidden items to save Albert’s sister!','false',false,false,'Elementals the Magic Key');ag(117821317,'Trapped: the Abduction','/images/games/trapped_the_abduction/trapped_the_abduction81x46.gif',1100710,117863987,'','false','/images/games/trapped_the_abduction/trapped_the_abduction16x16.gif',false,11323,'/images/games/trapped_the_abduction/trapped_the_abduction100x75.jpg','/images/games/trapped_the_abduction/trapped_the_abduction179x135.jpg','/images/games/trapped_the_abduction/trapped_the_abduction320x240.jpg','false','/images/games/thumbnails_med_2/trapped_the_abduction130x75.gif','/exe/trapped_the_abduction-setup.exe?lc=en&ext=trapped_the_abduction-setup.exe','Plot your Escape from a Killer!','Plot your escape from a serial killer by dodging traps and cracking codes!  ','false',false,false,'Trapped the Abduction');ag(117832540,'Alabama Smith in the Quest Of Fate','/images/games/AlabamaS_TheQuestOfFate/AlabamaS_TheQuestOfFate81x46.gif',1100710,117874650,'','false','/images/games/AlabamaS_TheQuestOfFate/AlabamaS_TheQuestOfFate16x16.gif',false,11323,'/images/games/AlabamaS_TheQuestOfFate/AlabamaS_TheQuestOfFate100x75.jpg','/images/games/AlabamaS_TheQuestOfFate/AlabamaS_TheQuestOfFate179x135.jpg','/images/games/AlabamaS_TheQuestOfFate/AlabamaS_TheQuestOfFate320x240.jpg','false','/images/games/thumbnails_med_2/AlabamaS_TheQuestOfFate130x75.gif','/exe/alabama_smith_2-setup.exe?lc=en&ext=alabama_smith_2-setup.exe','Hunt the Elusive Crystals of Fortune!','Alabama is back in this all-new time-twisting hunt for the elusive Crystals of Fortune!','false',false,false,'Alabama Smith 2');ag(117833917,'Mystery Masterpiece: The Moonstone','/images/games/mystery_masterpiece/mystery_masterpiece81x46.gif',1100710,117875743,'','false','/images/games/mystery_masterpiece/mystery_masterpiece16x16.gif',false,11323,'/images/games/mystery_masterpiece/mystery_masterpiece100x75.jpg','/images/games/mystery_masterpiece/mystery_masterpiece179x135.jpg','/images/games/mystery_masterpiece/mystery_masterpiece320x240.jpg','false','/images/games/thumbnails_med_2/mystery_masterpiece130x75.gif','/exe/mystery_masterpiece_the_moonstone-setup.exe?lc=en&ext=mystery_masterpiece_the_moonstone-setup.exe','Catch the Diamond Thief!','Catch the diamond thief and unravel the Moonstone’s mysterious past!','false',false,false,'Mystery Masterpiece The Moonst');ag(117834150,'Little Folk Of Faery','/images/games/little_folk_of_faery/little_folk_of_faery81x46.gif',110127790,117876977,'','false','/images/games/little_folk_of_faery/little_folk_of_faery16x16.gif',false,11323,'/images/games/little_folk_of_faery/little_folk_of_faery100x75.jpg','/images/games/little_folk_of_faery/little_folk_of_faery179x135.jpg','/images/games/little_folk_of_faery/little_folk_of_faery320x240.jpg','false','/images/games/thumbnails_med_2/little_folk_of_faery130x75.gif','/exe/little_folk_faery-setup.exe?lc=en&ext=little_folk_faery-setup.exe','Restore Harmony Between Nature and Humans!','Help fairy villagers restore harmony between nature and human beings!','false',false,false,'Little Folk Of Faery');ag(117835647,'The Tudors','/images/games/the_tudors/the_tudors81x46.gif',1100710,117877473,'','false','/images/games/the_tudors/the_tudors16x16.gif',false,11323,'/images/games/the_tudors/the_tudors100x75.jpg','/images/games/the_tudors/the_tudors179x135.jpg','/images/games/the_tudors/the_tudors320x240.jpg','false','/images/games/thumbnails_med_2/the_tudors130x75.gif','/exe/the_tudors-setup.exe?lc=en&ext=the_tudors-setup.exe','Travel Europe as King Henry’s Spy!','Travel across Europe as King Henry’s spy! Uncover plots against England!','false',false,false,'The Tudors');ag(117838343,'Jewel Match 2','/images/games/jewel_match_2/jewel_match_281x46.gif',110082753,117880890,'fe62716a-5983-4d78-91cb-0872e2add7c3','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','','Build a magical kingdom of jewels!','Build majestic castles with photorealistic scenes in this match-three wonderland!','true',false,false,'Jewel Match 2 OL');ag(117839513,'Elevens','/images/games/elevens/elevens81x46.gif',110081853,117881310,'bca08b81-9207-4ca6-8ece-74bf3a8cf3b2','false','/images/games/elevens/elevens16x16.gif',false,11323,'/images/games/elevens/elevens100x75.jpg','/images/games/elevens/elevens179x135.jpg','/images/games/elevens/elevens320x240.jpg','false','/images/games/thumbnails_med_2/elevens130x75.gif','','Find cards which add up to 11!','Remove all cards by finding those that add up to 11!','true',true,true,'Elevens OLT1 AS3');ag(117840103,'Wordhunt','/images/games/wordhunt/wordhunt81x46.gif',110083820,117882870,'69f16a48-af80-48e2-b391-9ac4b139e2fe','false','/images/games/wordhunt/wordhunt16x16.gif',false,11323,'/images/games/wordhunt/wordhunt100x75.jpg','/images/games/wordhunt/wordhunt179x135.jpg','/images/games/wordhunt/wordhunt320x240.jpg','false','/images/games/thumbnails_med_2/wordhunt130x75.gif','','Find the hidden words!','Find the hidden words within the single letters!','true',true,true,'Wordhunt OLT1 AS3');ag(117841210,'The Dracula Files','/images/games/the_dracula_files/the_dracula_files81x46.gif',1100710,117883853,'','false','/images/games/the_dracula_files/the_dracula_files16x16.gif',false,11323,'/images/games/the_dracula_files/the_dracula_files100x75.jpg','/images/games/the_dracula_files/the_dracula_files179x135.jpg','/images/games/the_dracula_files/the_dracula_files320x240.jpg','false','/images/games/thumbnails_med_2/the_dracula_files130x75.gif','/exe/the_dracula_files-setup.exe?lc=en&ext=the_dracula_files-setup.exe','Dracula Returns, Thirsting for Blood and Revenge!','Dracula returns, thirsting for blood and revenge, on your hunt for holy relics!','false',false,false,'The Dracula Files');ag(117842380,'The Conjurer','/images/games/the_conjurer/the_conjurer81x46.gif',1100710,117884207,'','false','/images/games/the_conjurer/the_conjurer16x16.gif',false,11323,'/images/games/the_conjurer/the_conjurer100x75.jpg','/images/games/the_conjurer/the_conjurer179x135.jpg','/images/games/the_conjurer/the_conjurer320x240.jpg','false','/images/games/thumbnails_med_2/the_conjurer130x75.gif','/exe/the_conjurer-setup.exe?lc=en&ext=the_conjurer-setup.exe','Magic Tricks and Murderous Deceit!','Storm the castle for a night of magic tricks and murderous deceit!','false',false,false,'The Conjurer (network)');ag(117848517,'Alexandra Fortune: the Lunar Archipelago','/images/games/alexandra_fortune/alexandra_fortune81x46.gif',1100710,117891877,'','false','/images/games/alexandra_fortune/alexandra_fortune16x16.gif',false,11323,'/images/games/alexandra_fortune/alexandra_fortune100x75.jpg','/images/games/alexandra_fortune/alexandra_fortune179x135.jpg','/images/games/alexandra_fortune/alexandra_fortune320x240.jpg','false','/images/games/thumbnails_med_2/alexandra_fortune130x75.gif','/exe/alexandra_fortune-setup.exe?lc=en&ext=alexandra_fortune-setup.exe','Uncover Ancient Secrets of Mysterious Islands!','Uncover the secrets of civilizations past hidden within mysterious islands!','false',false,false,'Alexandra Fortune');ag(117849760,'Wisegal','/images/games/wisegal/wisegal81x46.gif',1100710,117892430,'','false','/images/games/wisegal/wisegal16x16.gif',false,11323,'/images/games/wisegal/wisegal100x75.jpg','/images/games/wisegal/wisegal179x135.jpg','/images/games/wisegal/wisegal320x240.jpg','false','/images/games/thumbnails_med_2/wisegal130x75.gif','/exe/wisegal-setup.exe?lc=en&ext=wisegal-setup.exe','Mafia Mom Fights to Save her Son!','Take on the mafia underworld as Patty Montanari fights to save her son!','false',false,false,'Wisegal');ag(117859123,'Island Realms','/images/games/island_realms/island_realms81x46.gif',0,117902700,'','false','/images/games/island_realms/island_realms16x16.gif',false,11323,'/images/games/island_realms/island_realms100x75.jpg','/images/games/island_realms/island_realms179x135.jpg','/images/games/island_realms/island_realms320x240.jpg','false','/images/games/thumbnails_med_2/island_realms130x75.gif','/exe/island_realms-setup.exe?lc=en&ext=island_realms-setup.exe','Create and Defend Your Island Paradise!','Get creative following a shipwreck as you construct your island paradise!','false',false,false,'Island Realms');ag(117860440,'Avenue Flo™','/images/games/avenue_flo/avenue_flo81x46.gif',1003,117903487,'','false','/images/games/avenue_flo/avenue_flo16x16.gif',false,11323,'/images/games/avenue_flo/avenue_flo100x75.jpg','/images/games/avenue_flo/avenue_flo179x135.jpg','/images/games/avenue_flo/avenue_flo320x240.jpg','false','/images/games/thumbnails_med_2/avenue_flo130x75.gif','/exe/avenue_flo-setup.exe?lc=en&ext=avenue_flo-setup.exe','Explore DinerTown™ and Save the Wedding!','Explore DinerTown™ and save the wedding in the popular series’ new hands-on adventure!','false',false,false,'Avenue Flo');ag(117862270,'The Tudors','/images/games/the_tudors/the_tudors81x46.gif',110083820,117905283,'c1816f1a-f273-4a02-a9d1-198bd5b9d686','false','/images/games/the_tudors/the_tudors16x16.gif',false,11323,'/images/games/the_tudors/the_tudors100x75.jpg','/images/games/the_tudors/the_tudors179x135.jpg','/images/games/the_tudors/the_tudors320x240.jpg','false','/images/games/thumbnails_med_2/the_tudors130x75.gif','','Travel Europe as King Henry’s Spy!','Travel across Europe as King Henry’s spy! Uncover plots against England!','true',true,false,'The Tudors OLT1 AS3');ag(117863340,'Bookworm Adventures: Astounding Planet','/images/games/BWA_AstoundingPlanet/BWA_AstoundingPlanet81x46.gif',1007,117906153,'','false','/images/games/BWA_AstoundingPlanet/BWA_AstoundingPlanet16x16.gif',false,11323,'/images/games/BWA_AstoundingPlanet/BWA_AstoundingPlanet100x75.jpg','/images/games/BWA_AstoundingPlanet/BWA_AstoundingPlanet179x135.jpg','/images/games/BWA_AstoundingPlanet/BWA_AstoundingPlanet320x240.jpg','false','/images/games/thumbnails_med_2/BWA_AstoundingPlanet130x75.gif','/exe/bookworm_astounding_planet-setup.exe?lc=en&ext=bookworm_astounding_planet-setup.exe','Battle Aliens with Vocab Valor!','Battle aliens with vocab valor! Build words to help Lex save the world!','false',false,false,'Bookworm Astounding Planet');ag(117864357,'Luxor Adventures','/images/games/luxor_adventures/luxor_adventures81x46.gif',1100710,117908700,'','false','/images/games/luxor_adventures/luxor_adventures16x16.gif',false,11323,'/images/games/luxor_adventures/luxor_adventures100x75.jpg','/images/games/luxor_adventures/luxor_adventures179x135.jpg','/images/games/luxor_adventures/luxor_adventures320x240.jpg','false','/images/games/thumbnails_med_2/luxor_adventures130x75.gif','/exe/luxor_adventures-setup.exe?lc=en&ext=luxor_adventures-setup.exe','Travel through Time to Save History!','Travel through time to recover ancient items and save the course of history!','false',false,false,'Luxor Adventures');ag(117865550,'Amazing Pyramids','/images/games/amazing_pyramids/amazing_pyramids81x46.gif',1008,117910257,'','false','/images/games/amazing_pyramids/amazing_pyramids16x16.gif',false,11323,'/images/games/amazing_pyramids/amazing_pyramids100x75.jpg','/images/games/amazing_pyramids/amazing_pyramids179x135.jpg','/images/games/amazing_pyramids/amazing_pyramids320x240.jpg','false','/images/games/thumbnails_med_2/amazing_pyramids130x75.gif','/exe/amazing_pyramids-setup.exe?lc=en&ext=amazing_pyramids-setup.exe','Solve Word Puzzles to Unravel Ancient Secrets!','Solve word puzzles to unravel secrets of an ancient city!','false',false,false,'Amazing Pyramids');ag(117885100,'Burger Shop 2','/images/games/burger_shop_2/burger_shop_281x46.gif',110083820,117932553,'7b4c90b5-2a94-4d97-b83a-695fc1790137','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','','Rebuild Your Fast-food Empire!','Rebuild your fast-food empire! Unwrap the secrets behind your original chain’s demise!','true',false,false,'Burger Shop 2 OL AS3');ag(117886920,'Hostile Makeover','/images/games/hostile_makeover/hostile_makeover81x46.gif',110083820,117933810,'e8843b5a-a7d4-483e-825a-869dfbced27b','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','','If Looks Could Kill...','Crime meets couture in the mysterious case of a murdered supermodel!','true',true,false,'Hostile Makeover OL AS3');ag(117890193,'Gardenscapes™','/images/games/gardenscapes/gardenscapes81x46.gif',110127790,117937380,'','false','/images/games/gardenscapes/gardenscapes16x16.gif',false,11323,'/images/games/gardenscapes/gardenscapes100x75.jpg','/images/games/gardenscapes/gardenscapes179x135.jpg','/images/games/gardenscapes/gardenscapes320x240.jpg','false','/images/games/thumbnails_med_2/gardenscapes130x75.gif','/exe/gardenscapes-setup.exe?lc=en&ext=gardenscapes-setup.exe','Create a Gorgeous Garden Estate!','Grow a gorgeous garden by selling off objects from a mansion estate!','false',false,false,'garden_scapes');ag(117896393,'Trio the Great Settlement','/images/games/trio_great_settlement/trio_great_settlement81x46.gif',1007,117943563,'','false','/images/games/trio_great_settlement/trio_great_settlement16x16.gif',false,11323,'/images/games/trio_great_settlement/trio_great_settlement100x75.jpg','/images/games/trio_great_settlement/trio_great_settlement179x135.jpg','/images/games/trio_great_settlement/trio_great_settlement320x240.jpg','false','/images/games/thumbnails_med_2/trio_great_settlement130x75.gif','/exe/trio_the_great_settlement-setup.exe?lc=en&ext=trio_the_great_settlement-setup.exe','Fight to revive an ancient race!','Revive an ancient race in this revolutionary match-3 adventure!','false',false,false,'Trio the Great Settlement');ag(117897550,'1912 Titanic Mystery','/images/games/1912TitanicMystery/1912TitanicMystery81x46.gif',1100710,11794450,'','false','/images/games/1912TitanicMystery/1912TitanicMystery16x16.gif',false,11323,'/images/games/1912TitanicMystery/1912TitanicMystery100x75.jpg','/images/games/1912TitanicMystery/1912TitanicMystery179x135.jpg','/images/games/1912TitanicMystery/1912TitanicMystery320x240.jpg','false','/images/games/thumbnails_med_2/1912TitanicMystery130x75.gif','/exe/1912_titanic_mystery-setup.exe?lc=en&ext=1912_titanic_mystery-setup.exe','Defuse a bomb hidden aboard!','Find and defuse a bomb aboard the majestic cruise ship!','false',false,false,'1912 Titanic Mystery');ag(117919850,'Coconut Queen','/images/games/coconut_queen/coconut_queen81x46.gif',0,117966147,'','false','/images/games/coconut_queen/coconut_queen16x16.gif',false,11323,'/images/games/coconut_queen/coconut_queen100x75.jpg','/images/games/coconut_queen/coconut_queen179x135.jpg','/images/games/coconut_queen/coconut_queen320x240.jpg','false','/images/games/thumbnails_med_2/coconut_queen130x75.gif','/exe/coconut_queen-setup.exe?lc=en&ext=coconut_queen-setup.exe','Build a thriving tropical resort!','Build a thriving tropical resort full of tourists, jungles and wildlife!','false',false,false,'Coconut Queen');ag(117920410,'Marooned','/images/games/Marooned/Marooned81x46.gif',1100710,117967240,'','false','/images/games/Marooned/Marooned16x16.gif',false,11323,'/images/games/Marooned/Marooned100x75.jpg','/images/games/Marooned/Marooned179x135.jpg','/images/games/Marooned/Marooned320x240.jpg','false','/images/games/thumbnails_med_2/Marooned130x75.gif','/exe/marooned-setup.exe?lc=en&ext=marooned-setup.exe','Escape from a mysterious island!','Find your way home after waking up on a strange island!','false',false,false,'Marooned (network)');ag(117928530,'Masters of Mystery: Blood of Betrayal','/images/games/mystery_blood/mystery_blood81x46.gif',1100710,117975263,'','false','/images/games/mystery_blood/mystery_blood16x16.gif',false,11323,'/images/games/mystery_blood/mystery_blood100x75.jpg','/images/games/mystery_blood/mystery_blood179x135.jpg','/images/games/mystery_blood/mystery_blood320x240.jpg','false','/images/games/thumbnails_med_2/mystery_blood130x75.gif','/exe/masters_of_mystery_blood_of_betrayal-setup.exe?lc=en&ext=masters_of_mystery_blood_of_betrayal-setup.exe','Solve a grisly double murder mystery!','Solve a murder mystery tracing back to sergeant Carrie Chase’s past!','false',false,false,'Masters of Mystery Blood of Be');ag(117929370,'Big City Adventure: New York City','/images/games/BCA_new_york_city/BCA_new_york_city81x46.gif',1100710,117976180,'','false','/images/games/BCA_new_york_city/BCA_new_york_city16x16.gif',false,11323,'/images/games/BCA_new_york_city/BCA_new_york_city100x75.jpg','/images/games/BCA_new_york_city/BCA_new_york_city179x135.jpg','/images/games/BCA_new_york_city/BCA_new_york_city320x240.jpg','false','/images/games/thumbnails_med_2/BCA_new_york_city130x75.gif','/exe/big_city_adventure_new_york_city-setup.exe?lc=en&ext=big_city_adventure_new_york_city-setup.exe','Explore NYC neighborhoods and landmarks!','Find hidden items in dozens of NYC neighborhoods and landmarks!','false',false,false,'Big City Adventure New York Ci');ag(117931637,'Fishdom: Frosty Splash','/images/games/fishdom_frosty_splash/fishdom_frosty_splash81x46.gif',1007,117978840,'','false','/images/games/fishdom_frosty_splash/fishdom_frosty_splash16x16.gif',false,11323,'/images/games/fishdom_frosty_splash/fishdom_frosty_splash100x75.jpg','/images/games/fishdom_frosty_splash/fishdom_frosty_splash179x135.jpg','/images/games/fishdom_frosty_splash/fishdom_frosty_splash320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_frosty_splash130x75.gif','/exe/fishdom_frosty_splash-setup.exe?lc=en&ext=fishdom_frosty_splash-setup.exe','Create a winter-themed fish tank!','Turn your fish tank into a festive winter-themed wonderland! ','false',false,false,'Fishdom Frosty Splash');ag(117932650,'Sprill & Ritchie: Adventures in Time','/images/games/sprill_and_ritchie/sprill_and_ritchie81x46.gif',1100710,117979133,'','false','/images/games/sprill_and_ritchie/sprill_and_ritchie16x16.gif',false,11323,'/images/games/sprill_and_ritchie/sprill_and_ritchie100x75.jpg','/images/games/sprill_and_ritchie/sprill_and_ritchie179x135.jpg','/images/games/sprill_and_ritchie/sprill_and_ritchie320x240.jpg','false','/images/games/thumbnails_med_2/sprill_and_ritchie130x75.gif','/exe/sprill_and_ritchie-setup.exe?lc=en&ext=sprill_and_ritchie-setup.exe','A time-tripping hidden object adventure!','Return misplaced hidden objects to their proper place in time!','false',false,false,'Sprill and Ritchie');ag(117933957,'Amazing Adventures: The Caribbean Secret','/images/games/AA_the_caribbean_secret/AA_the_caribbean_secret81x46.gif',1100710,117980600,'','false','/images/games/AA_the_caribbean_secret/AA_the_caribbean_secret16x16.gif',false,11323,'/images/games/AA_the_caribbean_secret/AA_the_caribbean_secret100x75.jpg','/images/games/AA_the_caribbean_secret/AA_the_caribbean_secret179x135.jpg','/images/games/AA_the_caribbean_secret/AA_the_caribbean_secret320x240.jpg','false','/images/games/thumbnails_med_2/AA_the_caribbean_secret130x75.gif','/exe/amazing_adventures_3-setup.exe?lc=en&ext=amazing_adventures_3-setup.exe','Recover a ship’s lost treasure!','Locate a long-lost Spanish ship and its fortune of gold!','false',false,false,'Amazing Adventures 3');ag(117948443,'Mahjong Memoirs','/images/games/mahjong_memoirs_without_calendar/mahjong_memoirs_without_calendar81x46.gif',1006,117997257,'','false','/images/games/mahjong_memoirs_without_calendar/mahjong_memoirs_without_calendar16x16.gif',false,11323,'/images/games/mahjong_memoirs_without_calendar/mahjong_memoirs_without_calendar100x75.jpg','/images/games/mahjong_memoirs_without_calendar/mahjong_memoirs_without_calendar179x135.jpg','/images/games/mahjong_memoirs_without_calendar/mahjong_memoirs_without_calendar320x240.jpg','false','/images/games/thumbnails_med_2/mahjong_memoirs_without_calendar130x75.gif','/exe/mahjong-memoirs-setup.exe?lc=en&ext=mahjong-memoirs-setup.exe','Now their love story can be told…','Discover a timeless tale of forbidden love in this reinvention of Mahjong.','false',false,false,'Mahjong Memoirs');ag(117949590,'Valerie Porter and the Scarlet Scandal™','/images/games/valerie_porter/valerie_porter81x46.gif',1100710,117998513,'','false','/images/games/valerie_porter/valerie_porter16x16.gif',false,11323,'/images/games/valerie_porter/valerie_porter100x75.jpg','/images/games/valerie_porter/valerie_porter179x135.jpg','/images/games/valerie_porter/valerie_porter320x240.jpg','false','/images/games/thumbnails_med_2/valerie_porter130x75.gif','/exe/valerie_porter-setup.exe?lc=en&ext=valerie_porter-setup.exe','Uncover Murder and Lies Behind Hollywood Headlines!','Uncover the murder and lies behind Hollywood headlines in this sexy hidden object mystery!','false',false,false,'Valerie Porter');ag(117964553,'Fishdom: Frosty Splash','/images/games/fishdom_frosty_splash/fishdom_frosty_splash81x46.gif',110083820,118014303,'128cd81e-9fb5-424a-9f58-ee1814194981','false','/images/games/fishdom_frosty_splash/fishdom_frosty_splash16x16.gif',false,11323,'/images/games/fishdom_frosty_splash/fishdom_frosty_splash100x75.jpg','/images/games/fishdom_frosty_splash/fishdom_frosty_splash179x135.jpg','/images/games/fishdom_frosty_splash/fishdom_frosty_splash320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_frosty_splash130x75.gif','','Create a winter-themed fish tank!','Turn your fish tank into a festive winter-themed wonderland! ','true',true,true,'Fishdom Frosty Splash OLT1');ag(117965123,'Westward® IV: All Aboard','/images/games/westward_4/westward_481x46.gif',0,118015653,'','false','/images/games/westward_4/westward_416x16.gif',false,11323,'/images/games/westward_4/westward_4100x75.jpg','/images/games/westward_4/westward_4179x135.jpg','/images/games/westward_4/westward_4320x240.jpg','false','/images/games/thumbnails_med_2/westward_4130x75.gif','/exe/westward_iv-setup.exe?lc=en&ext=westward_iv-setup.exe','Ride the Rails to Fortune and Glory! ','Ride the rails to fortune and glory in a real-time strategy adventure!','false',false,false,'Westward IV');ag(117968890,'The Treasures of Montezuma 2','/images/games/treasures_of_montezuma2/treasures_of_montezuma281x46.gif',1007,118018390,'','false','/images/games/treasures_of_montezuma2/treasures_of_montezuma216x16.gif',false,11323,'/images/games/treasures_of_montezuma2/treasures_of_montezuma2100x75.jpg','/images/games/treasures_of_montezuma2/treasures_of_montezuma2179x135.jpg','/images/games/treasures_of_montezuma2/treasures_of_montezuma2320x240.jpg','false','/images/games/thumbnails_med_2/treasures_of_montezuma2130x75.gif','/exe/treasures_of_montezuma_2-setup.exe?lc=en&ext=treasures_of_montezuma_2-setup.exe','Return to the Match-3 Jungle!','Return to the jungle for more match-3 levels, more challenges, and more fun! ','false',false,false,'Treasures of Montezuma 2');ag(117969177,'Escape The Museum 2','/images/games/escape_the_museum2/escape_the_museum281x46.gif',1100710,118019520,'','false','/images/games/escape_the_museum2/escape_the_museum216x16.gif',false,11323,'/images/games/escape_the_museum2/escape_the_museum2100x75.jpg','/images/games/escape_the_museum2/escape_the_museum2179x135.jpg','/images/games/escape_the_museum2/escape_the_museum2320x240.jpg','false','/images/games/thumbnails_med_2/escape_the_museum2130x75.gif','/exe/escape_the_museum_2-setup.exe?lc=en&ext=escape_the_museum_2-setup.exe','Navigate a Gritty City of Earthquake Rubble!','Navigate a gritty city of earthquake rubble to save David’s family!','false',false,false,'Escape the Museum 2');ag(118012230,'Real Crimes™: Jack the Ripper','/images/games/RealCrimesJacktheRiper/RealCrimesJacktheRiper81x46.gif',1000,118064243,'','false','/images/games/RealCrimesJacktheRiper/RealCrimesJacktheRiper16x16.gif',false,11323,'/images/games/RealCrimesJacktheRiper/RealCrimesJacktheRiper100x75.jpg','/images/games/RealCrimesJacktheRiper/RealCrimesJacktheRiper179x135.jpg','/images/games/RealCrimesJacktheRiper/RealCrimesJacktheRiper320x240.jpg','false','/images/games/thumbnails_med_2/RealCrimesJacktheRiper130x75.gif','/exe/real_crimes_jack_the_ripper-setup.exe?lc=en&ext=real_crimes_jack_the_ripper-setup.exe','Crack the Case of the Infamous Murderer! ','Journey back to 1888 and crack the case of the infamous murderer!','false',false,false,'Real Crimes: Jack the Ripper');ag(118013827,'Natalie Brooks: Mystery at Hillcrest High','/images/games/natalie_brooks_3/natalie_brooks_381x46.gif',1100710,118065653,'','false','/images/games/natalie_brooks_3/natalie_brooks_316x16.gif',false,11323,'/images/games/natalie_brooks_3/natalie_brooks_3100x75.jpg','/images/games/natalie_brooks_3/natalie_brooks_3179x135.jpg','/images/games/natalie_brooks_3/natalie_brooks_3320x240.jpg','false','/images/games/thumbnails_med_2/natalie_brooks_3130x75.gif','/exe/natalie_brooks_3-setup.exe?lc=en&ext=natalie_brooks_3-setup.exe','Thwart the Schemes of a Criminal Gang! ','Stop the Black Cat Gang from committing the crime of the century!','false',false,false,'Natalie Brooks 3');ag(118015210,'Tropical Farm','/images/games/TropicalFarm/TropicalFarm81x46.gif',110127790,11806720,'','false','/images/games/TropicalFarm/TropicalFarm16x16.gif',false,11323,'/images/games/TropicalFarm/TropicalFarm100x75.jpg','/images/games/TropicalFarm/TropicalFarm179x135.jpg','/images/games/TropicalFarm/TropicalFarm320x240.jpg','false','/images/games/thumbnails_med_2/TropicalFarm130x75.gif','/exe/tropical_farm-setup.exe?lc=en&ext=tropical_farm-setup.exe','Harvest a Tropical Island Homestead!','Harvest a tropical island homestead bursting with fruits, vegetables, and livestock! ','false',false,false,'Tropical Farm');ag(118017940,'Rabbits','/images/games/Rabbits/Rabbits81x46.gif',110083820,118069630,'dbc0ee81-14a7-4bb5-9f45-048ac39dc66d','false','/images/games/Rabbits/Rabbits16x16.gif',false,11323,'/images/games/Rabbits/Rabbits100x75.jpg','/images/games/Rabbits/Rabbits179x135.jpg','/images/games/Rabbits/Rabbits320x240.jpg','false','/images/games/thumbnails_med_2/Rabbits130x75.gif','','Compose the words','Compose the words for a limited period of time','true',true,true,'Rabbits OLT1 AS3');ag(118051377,'Aviator','/images/games/Aviator/Aviator81x46.gif',110083820,118108390,'43e7325e-fc36-4688-b3ff-91e646967e98','false','/images/games/Aviator/Aviator16x16.gif',false,11323,'/images/games/Aviator/Aviator100x75.jpg','/images/games/Aviator/Aviator179x135.jpg','/images/games/Aviator/Aviator320x240.jpg','false','/images/games/thumbnails_med_2/Aviator130x75.gif','','Fly as far as possible!','Fly as far as you can and try to avoid obstacles!','true',true,true,'Aviator OLT1 AS3');ag(118052713,'Duo','/images/games/duo/duo81x46.gif',110083820,118109430,'82f1c477-215d-48da-8bda-21c5680d4b86','false','/images/games/duo/duo16x16.gif',false,11323,'/images/games/duo/duo100x75.jpg','/images/games/duo/duo179x135.jpg','/images/games/duo/duo320x240.jpg','false','/images/games/thumbnails_med_2/duo130x75.gif','','Clear the field!','Find the pairs and clear the field!','true',true,true,'Duo OLT1 AS3');ag(118053610,'Kick the Fish','/images/games/kick_the_fish/kick_the_fish81x46.gif',110083820,118110203,'acbd2265-3b5d-41c1-a953-6285ffa68c2a','false','/images/games/kick_the_fish/kick_the_fish16x16.gif',false,11323,'/images/games/kick_the_fish/kick_the_fish100x75.jpg','/images/games/kick_the_fish/kick_the_fish179x135.jpg','/images/games/kick_the_fish/kick_the_fish320x240.jpg','false','/images/games/thumbnails_med_2/kick_the_fish130x75.gif','','Kick the Fish!','The aim of the game is to kick the fish as far as possible!','true',true,true,'Kick the Fish OLT1 AS3');ag(118074470,'Built It! Miami Beach Resort','/images/games/build_it_miami_beach/build_it_miami_beach81x46.gif',0,118135190,'','false','/images/games/build_it_miami_beach/build_it_miami_beach16x16.gif',false,11323,'/images/games/build_it_miami_beach/build_it_miami_beach100x75.jpg','/images/games/build_it_miami_beach/build_it_miami_beach179x135.jpg','/images/games/build_it_miami_beach/build_it_miami_beach320x240.jpg','false','/images/games/thumbnails_med_2/build_it_miami_beach130x75.gif','/exe/build_it_miami_beach-setup.exe?lc=en&ext=build_it_miami_beach-setup.exe','Create a City by the Sea!','Create a city by the sea spanning 60 years of beach resort development!','false',false,false,'Build It Miami Beach');ag(118076927,'National Geographic Traveler: Italy','/images/games/natgeo_traveler_italy/natgeo_traveler_italy81x46.gif',1007,118137850,'','false','/images/games/natgeo_traveler_italy/natgeo_traveler_italy16x16.gif',false,11323,'/images/games/natgeo_traveler_italy/natgeo_traveler_italy100x75.jpg','/images/games/natgeo_traveler_italy/natgeo_traveler_italy179x135.jpg','/images/games/natgeo_traveler_italy/natgeo_traveler_italy320x240.jpg','false','/images/games/thumbnails_med_2/natgeo_traveler_italy130x75.gif','/exe/nat_geo_traveler_italy-setup.exe?lc=en&ext=nat_geo_traveler_italy-setup.exe','Viva Italia with Stunning Photo Puzzles!','Viva Italia with National Geographic photo puzzles and an interactive atlas!  ','false',false,false,'Nat Geo Traveler: Italy');ag(118078260,'Cajun Cop: The French Quarter Caper','/images/games/cajun_cop/cajun_cop81x46.gif',1100710,118139980,'','false','/images/games/cajun_cop/cajun_cop16x16.gif',false,11323,'/images/games/cajun_cop/cajun_cop100x75.jpg','/images/games/cajun_cop/cajun_cop179x135.jpg','/images/games/cajun_cop/cajun_cop320x240.jpg','false','/images/games/thumbnails_med_2/cajun_cop130x75.gif','/exe/cajun_cop-setup.exe?lc=en&ext=cajun_cop-setup.exe','Bust Jewel Thieves in the Big Easy!','Help Inspector Jacques Lamont bust jewel thieves in the Big Easy!','false',false,false,'Cajun Cop');ag(118080877,'Samantha Swift and the Mystery from Atlantis','/images/games/samantha_swift_3/samantha_swift_381x46.gif',1100710,118141550,'','false','/images/games/samantha_swift_3/samantha_swift_316x16.gif',false,11323,'/images/games/samantha_swift_3/samantha_swift_3100x75.jpg','/images/games/samantha_swift_3/samantha_swift_3179x135.jpg','/images/games/samantha_swift_3/samantha_swift_3320x240.jpg','false','/images/games/thumbnails_med_2/samantha_swift_3130x75.gif','/exe/samantha_swift_3-setup.exe?lc=en&ext=samantha_swift_3-setup.exe','Unite the Lost Tribes of Atlantis!','Recover ancient artifacts to unite the lost tribes of Atlantis!','false',false,false,'Samantha Swift 3');ag(118089280,'Soccer Heroes','/images/games/soccer_heroes/soccer_heroes81x46.gif',110083820,118150297,'9461217b-9222-4873-950b-db80dd4886fd','false','/images/games/soccer_heroes/soccer_heroes16x16.gif',false,11323,'/images/games/soccer_heroes/soccer_heroes100x75.jpg','/images/games/soccer_heroes/soccer_heroes179x135.jpg','/images/games/soccer_heroes/soccer_heroes320x240.jpg','false','/images/games/thumbnails_med_2/soccer_heroes130x75.gif','','Dissolve the specified number of cards!','Dissolve the specified number of cards by placing them together!','true',true,true,'Soccer Heroes OLT1 AS3');ag(118090780,'Rings','/images/games/rings/rings81x46.gif',110083820,118151390,'96275a28-bf08-4091-8a0e-16ec176a7233','false','/images/games/rings/rings16x16.gif',false,11323,'/images/games/rings/rings100x75.jpg','/images/games/rings/rings179x135.jpg','/images/games/rings/rings320x240.jpg','false','/images/games/thumbnails_med_2/rings130x75.gif','','Create the requested number of towers!','Create the requested number of towers as fast as possible!','true',true,true,'Rings OLT1 AS3');ag(118091807,'Azada: Ancient Magic','/images/games/azada_2/azada_281x46.gif',1100710,118152477,'','false','/images/games/azada_2/azada_216x16.gif',false,11323,'/images/games/azada_2/azada_2100x75.jpg','/images/games/azada_2/azada_2179x135.jpg','/images/games/azada_2/azada_2320x240.jpg','false','/images/games/thumbnails_med_2/azada_2130x75.gif','/exe/azada2-setup.exe?lc=en&ext=azada2-setup.exe','Revisit the Mystery and Magic of Azada!','Revisit the magical mystery of Azada to unveil the dark hidden secret!','false',false,false,'Azada 2');ag(118094573,'altshift','/images/games/altSHIFT/altSHIFT81x46.gif',1003,118155197,'','false','/images/games/altSHIFT/altSHIFT16x16.gif',false,11323,'/images/games/altSHIFT/altSHIFT100x75.jpg','/images/games/altSHIFT/altSHIFT179x135.jpg','/images/games/altSHIFT/altSHIFT320x240.jpg','false','/images/games/thumbnails_med_2/altSHIFT130x75.gif','/exe/alt_shift-setup.exe?lc=en&ext=alt_shift-setup.exe','Puzzle Platformer of Shifting Dimensions!  ','Reach the unreachable in this dimension-shifting puzzle platformer!','false',false,false,'Alt Shift');ag(118095903,'Jane Angel: Templar Mystery','/images/games/jane_angel_mystery_templar/jane_angel_mystery_templar81x46.gif',1100710,118156967,'','false','/images/games/jane_angel_mystery_templar/jane_angel_mystery_templar16x16.gif',false,11323,'/images/games/jane_angel_mystery_templar/jane_angel_mystery_templar100x75.jpg','/images/games/jane_angel_mystery_templar/jane_angel_mystery_templar179x135.jpg','/images/games/jane_angel_mystery_templar/jane_angel_mystery_templar320x240.jpg','false','/images/games/thumbnails_med_2/jane_angel_mystery_templar130x75.gif','/exe/jane_angel_templar_mystery-setup.exe?lc=en&ext=jane_angel_templar_mystery-setup.exe','Worldwide Quest for the Holy Grail!','FBI Agent Jane Angel&rsquo;s worldwide quest for the Holy Grail!','false',false,false,'Jane Angel Templar Mystery');ag(118097667,'Heroes of Hellas 2 Olympia','/images/games/heroes_of_hellas2/heroes_of_hellas281x46.gif',1007,118158497,'','false','/images/games/heroes_of_hellas2/heroes_of_hellas216x16.gif',false,11323,'/images/games/heroes_of_hellas2/heroes_of_hellas2100x75.jpg','/images/games/heroes_of_hellas2/heroes_of_hellas2179x135.jpg','/images/games/heroes_of_hellas2/heroes_of_hellas2320x240.jpg','false','/images/games/thumbnails_med_2/heroes_of_hellas2130x75.gif','/exe/heroes_of_hellas_2_12332145-setup.exe?lc=en&ext=heroes_of_hellas_2_12332145-setup.exe','BONUS: Heroes of Hellas FREE!','Rebuild a fallen Greek city with addictive match-3 gaming! <b>BONUS: Heroes of Hellas FREE!</b>','false',false,false,'Heroes of Hellas 2 Olympia');ag(118098220,'Solitaire AM','/images/games/solitaire_am/solitaire_am81x46.gif',110083820,118159890,'07a701cf-cccf-4135-8f11-1bbf66a08cae','false','/images/games/solitaire_am/solitaire_am16x16.gif',false,11323,'/images/games/solitaire_am/solitaire_am100x75.jpg','/images/games/solitaire_am/solitaire_am179x135.jpg','/images/games/solitaire_am/solitaire_am320x240.jpg','false','/images/games/thumbnails_med_2/solitaire_am130x75.gif','','Stack the cards in ascending order!','Stack the cards of equal colour in ascending order!','true',true,true,'Solitaire AM OLT1 AS3');ag(118099707,'Concentration','/images/games/concentration_ol/concentration_ol81x46.gif',110083820,118160520,'2dd56126-e3c2-4b59-81d2-ba11510d29c2','false','/images/games/concentration_ol/concentration_ol16x16.gif',false,11323,'/images/games/concentration_ol/concentration_ol100x75.jpg','/images/games/concentration_ol/concentration_ol179x135.jpg','/images/games/concentration_ol/concentration_ol320x240.jpg','false','/images/games/thumbnails_med_2/concentration_ol130x75.gif','','Memorize the pairs!','Memorize pairs of matching cards!','true',true,true,'Concentration OLT1 AS3');ag(118106997,'Murder, She Wrote','/images/games/murder_she_wrote/murder_she_wrote81x46.gif',1100710,118167560,'','false','/images/games/murder_she_wrote/murder_she_wrote16x16.gif',false,11323,'/images/games/murder_she_wrote/murder_she_wrote100x75.jpg','/images/games/murder_she_wrote/murder_she_wrote179x135.jpg','/images/games/murder_she_wrote/murder_she_wrote320x240.jpg','false','/images/games/thumbnails_med_2/murder_she_wrote130x75.gif','/exe/murder_she_wrote_24351999-setup.exe?lc=en&ext=murder_she_wrote_24351999-setup.exe','Return to Cabot Cove!','Return to your favorite TV series and the lethal mysteries of Cabot Cove!','false',false,false,'Murder She Wrote');ag(118107893,'Empire Builder: Ancient Egypt','/images/games/EmpireBuilderAncientEgypt/EmpireBuilderAncientEgypt81x46.gif',0,118168720,'','false','/images/games/EmpireBuilderAncientEgypt/EmpireBuilderAncientEgypt16x16.gif',false,11323,'/images/games/EmpireBuilderAncientEgypt/EmpireBuilderAncientEgypt100x75.jpg','/images/games/EmpireBuilderAncientEgypt/EmpireBuilderAncientEgypt179x135.jpg','/images/games/EmpireBuilderAncientEgypt/EmpireBuilderAncientEgypt320x240.jpg','false','/images/games/thumbnails_med_2/EmpireBuilderAncientEgypt130x75.gif','/exe/empire_builder_ancient_egypt_24351998-setup.exe?lc=en&ext=empire_builder_ancient_egypt_24351998-setup.exe','Raise an Empire from the Sands of Time!','Become an ancient architect and raise an empire from the sands of time!','false',false,false,'Empire Builder Ancient Egypt');ag(118108777,'Farm Frenzy 3: American Pie','/images/games/farm_frenzy_3/farm_frenzy_381x46.gif',110127790,118169590,'20284f6b-41c2-496e-ba7e-07f12187b2cf','false','/images/games/farm_frenzy_3/farm_frenzy_316x16.gif',false,11323,'/images/games/farm_frenzy_3/farm_frenzy_3100x75.jpg','/images/games/farm_frenzy_3/farm_frenzy_3179x135.jpg','/images/games/farm_frenzy_3/farm_frenzy_3320x240.jpg','false','/images/games/thumbnails_med_2/farm_frenzy_3130x75.gif','/exe/farm_frenzy_3_24351997-setup.exe?lc=en&ext=farm_frenzy_3_24351997-setup.exe','Harvest the Land with Robot Workers!','Join Scarlett as she puts robots to work down on the farm!','false',false,false,'Farm Frenzy 3: AP');ag(118117367,'Mary Kay Andrews: The Fixer Upper','/images/games/MaryKayAndrewsTheFixerUpper/MaryKayAndrewsTheFixerUpper81x46.gif',1100710,118178960,'','false','/images/games/MaryKayAndrewsTheFixerUpper/MaryKayAndrewsTheFixerUpper16x16.gif',false,11323,'/images/games/MaryKayAndrewsTheFixerUpper/MaryKayAndrewsTheFixerUpper100x75.jpg','/images/games/MaryKayAndrewsTheFixerUpper/MaryKayAndrewsTheFixerUpper179x135.jpg','/images/games/MaryKayAndrewsTheFixerUpper/MaryKayAndrewsTheFixerUpper320x240.jpg','false','/images/games/thumbnails_med_2/MaryKayAndrewsTheFixerUpper130x75.gif','/exe/mary_kay_andrews_the_fixer_upper_55641238-setup.exe?lc=en&ext=mary_kay_andrews_the_fixer_upper_55641238-setup.exe','Restore the Rundown Family Estate!','Restore the rundown family estate and clear Dempsey’s good name!','false',false,false,'Mary Kay Andrews: The Fixer Up');ag(118118997,'Virtual City','/images/games/virtual_city/virtual_city81x46.gif',0,118179933,'','false','/images/games/virtual_city/virtual_city16x16.gif',false,11323,'/images/games/virtual_city/virtual_city100x75.jpg','/images/games/virtual_city/virtual_city179x135.jpg','/images/games/virtual_city/virtual_city320x240.jpg','false','/images/games/thumbnails_med_2/virtual_city130x75.gif','/exe/virtual_city_44267851-setup.exe?lc=en&ext=virtual_city_44267851-setup.exe','Construct the City of your Dreams!','Construct an elaborate city of houses, malls, mass-transit, and more!','false',false,false,'Virtual City');ag(118179400,'Mystery Case Files: Return to Ravenhearst','/images/games/return_to_ravenhearst/return_to_ravenhearst81x46.gif',1100710,118240230,'','false','/images/games/return_to_ravenhearst/return_to_ravenhearst16x16.gif',false,11323,'/images/games/return_to_ravenhearst/return_to_ravenhearst100x75.jpg','/images/games/return_to_ravenhearst/return_to_ravenhearst179x135.jpg','/images/games/return_to_ravenhearst/return_to_ravenhearst320x240.jpg','false','/images/games/thumbnails_med_2/return_to_ravenhearst130x75.gif','/exe/mystery_case_files_98412658-setup.exe?lc=en&ext=mystery_case_files_98412658-setup.exe','Evil Still Lurks in Ravenhearst Manor!','Emma’s soul may be free but evil still lurks in Ravenhearst Manor!','false',false,false,'Mystery Case Files Return to R');ag(118180693,'Dream Day Travel Pack - 3 in 1','/images/games/dream_day_travel_pack/dream_day_travel_pack81x46.gif',1100710,118241160,'','false','/images/games/dream_day_travel_pack/dream_day_travel_pack16x16.gif',false,11323,'/images/games/dream_day_travel_pack/dream_day_travel_pack100x75.jpg','/images/games/dream_day_travel_pack/dream_day_travel_pack179x135.jpg','/images/games/dream_day_travel_pack/dream_day_travel_pack320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_travel_pack130x75.gif','/exe/dream_day_travel_pack_23551282-setup.exe?lc=en&ext=dream_day_travel_pack_23551282-setup.exe','You’re Invited to two Weddings and a Honeymoon!','You’re Invited to two Weddings and a Honeymoon - 3 games, 1 download, 50% off full price!','false',false,false,'Dream Day Travel Pack');ag(118186583,'Drawn: The Painted Tower','/images/games/DrawnThePaintedTower/DrawnThePaintedTower81x46.gif',1007,11824737,'','false','/images/games/DrawnThePaintedTower/DrawnThePaintedTower16x16.gif',false,11323,'/images/games/DrawnThePaintedTower/DrawnThePaintedTower100x75.jpg','/images/games/DrawnThePaintedTower/DrawnThePaintedTower179x135.jpg','/images/games/DrawnThePaintedTower/DrawnThePaintedTower320x240.jpg','false','/images/games/thumbnails_med_2/DrawnThePaintedTower130x75.gif','/exe/drawn_the_painted_tower_49251711-setup.exe?lc=en&ext=drawn_the_painted_tower_49251711-setup.exe','Break the Curse to Save Iris!','Unravel challenging puzzles to break the Tower’s curse and save Iris!','false',false,false,'Drawn: The Painted Tower');ag(118187923,'Serpent of Isis','/images/games/TheSerpentOfIsis/TheSerpentOfIsis81x46.gif',1100710,118248313,'','false','/images/games/TheSerpentOfIsis/TheSerpentOfIsis16x16.gif',false,11323,'/images/games/TheSerpentOfIsis/TheSerpentOfIsis100x75.jpg','/images/games/TheSerpentOfIsis/TheSerpentOfIsis179x135.jpg','/images/games/TheSerpentOfIsis/TheSerpentOfIsis320x240.jpg','false','/images/games/thumbnails_med_2/TheSerpentOfIsis130x75.gif','/exe/serpent_of_isis_45665445-setup.exe?lc=en&ext=serpent_of_isis_45665445-setup.exe','All Aboard to Catch a Thief!','All aboard the Mont Palu Express in search of the stolen painting!','false',false,false,'Serpent of Isis');ag(118188153,'Power Puzzle Pack - 3 in 1','/images/games/power_puzzle_pack/power_puzzle_pack81x46.gif',1007,118249683,'','false','/images/games/power_puzzle_pack/power_puzzle_pack16x16.gif',false,11323,'/images/games/power_puzzle_pack/power_puzzle_pack100x75.jpg','/images/games/power_puzzle_pack/power_puzzle_pack179x135.jpg','/images/games/power_puzzle_pack/power_puzzle_pack320x240.jpg','false','/images/games/thumbnails_med_2/power_puzzle_pack130x75.gif','/exe/power_puzzle_pack_35128649-setup.exe?lc=en&ext=power_puzzle_pack_35128649-setup.exe','Embark on THREE unique match-3 puzzle adventures!','Embark on THREE unique match-3 puzzle adventures – 3 games, 1 download: 50% off full price!','false',false,false,'Power Puzzle Pack');ag(118189163,'Women’s Murder Club: Triple Crime Pack','/images/games/WMC_triple_crime_pack/WMC_triple_crime_pack81x46.gif',1100710,118250693,'','false','/images/games/WMC_triple_crime_pack/WMC_triple_crime_pack16x16.gif',false,11323,'/images/games/WMC_triple_crime_pack/WMC_triple_crime_pack100x75.jpg','/images/games/WMC_triple_crime_pack/WMC_triple_crime_pack179x135.jpg','/images/games/WMC_triple_crime_pack/WMC_triple_crime_pack320x240.jpg','false','/images/games/thumbnails_med_2/WMC_triple_crime_pack130x75.gif','/exe/wmc_triple_crime_pack_56781149-setup.exe?lc=en&ext=wmc_triple_crime_pack_56781149-setup.exe','Three bestsellers – one low price!','Three bestsellers – one low price!','false',false,false,'Womens Murder Club Triple');ag(118191470,'Spice Solitary','/images/games/spice_solitary/spice_solitary81x46.gif',110083820,118252127,'6607edcc-3182-4da1-bf5d-9f42638b2ffe','false','/images/games/spice_solitary/spice_solitary16x16.gif',false,11323,'/images/games/spice_solitary/spice_solitary100x75.jpg','/images/games/spice_solitary/spice_solitary179x135.jpg','/images/games/spice_solitary/spice_solitary320x240.jpg','false','/images/games/thumbnails_med_2/spice_solitary130x75.gif','','Play the space solitaire','When spaceship flies through the Universe, the best entertainment is a solitaire.','true',true,true,'Spice Solitairy AS3 OLT1');ag(118192413,'Guess','/images/games/guess/guess81x46.gif',110083820,118253130,'3938cd7b-0eb3-4b04-963b-60427007a991','false','/images/games/guess/guess16x16.gif',false,11323,'/images/games/guess/guess100x75.jpg','/images/games/guess/guess179x135.jpg','/images/games/guess/guess320x240.jpg','false','/images/games/thumbnails_med_2/guess130x75.gif','','Help the cartoon man guess the words.','Help the cartoon man to solve the crossword.','true',true,true,'Guess AS3 OLT1');ag(118193743,'Photo Puzzle','/images/games/photo_puzzle/photo_puzzle81x46.gif',110083820,118254540,'5358cbcd-2c84-4264-8a6e-bee1c454caba','false','/images/games/photo_puzzle/photo_puzzle16x16.gif',false,11323,'/images/games/photo_puzzle/photo_puzzle100x75.jpg','/images/games/photo_puzzle/photo_puzzle179x135.jpg','/images/games/photo_puzzle/photo_puzzle320x240.jpg','false','/images/games/thumbnails_med_2/photo_puzzle130x75.gif','','Combine the pieces into the photo.','Combine all the pieces correctly and compose the photo from them!','true',true,true,'Photo Puzzle AS3 OLT1');ag(118194250,'Redrum','/images/games/redrum/redrum81x46.gif',1100710,118255267,'','false','/images/games/redrum/redrum16x16.gif',false,11323,'/images/games/redrum/redrum100x75.jpg','/images/games/redrum/redrum179x135.jpg','/images/games/redrum/redrum320x240.jpg','false','/images/games/thumbnails_med_2/redrum130x75.gif','/exe/redrum_45862154-setup.exe?lc=en&ext=redrum_45862154-setup.exe','Pulse-pounding, Psychological Murder Mystery!','Combat ghostly visions and an evil doctor in this psychological murder mystery!','false',false,false,'Redrum');ag(118203740,'Mirror Mysteries','/images/games/mirror_mysteries/mirror_mysteries81x46.gif',1100710,11826483,'','false','/images/games/mirror_mysteries/mirror_mysteries16x16.gif',false,11323,'/images/games/mirror_mysteries/mirror_mysteries100x75.jpg','/images/games/mirror_mysteries/mirror_mysteries179x135.jpg','/images/games/mirror_mysteries/mirror_mysteries320x240.jpg','false','/images/games/thumbnails_med_2/mirror_mysteries130x75.gif','/exe/mirror_mysteries_61024678-setup.exe?lc=en&ext=mirror_mysteries_61024678-setup.exe','A Mother’s Quest Through Mystical Worlds!','A mother’s quest through mystical worlds to solve a mirror’s mysteries!','false',false,false,'Mirror Mysteries');ag(118206773,'1001 Nights: The Adventures of Sindbad','/images/games/1001NightsTheAdventuresOfSindbad/1001NightsTheAdventuresOfSindbad81x46.gif',1100710,118267570,'','false','/images/games/1001NightsTheAdventuresOfSindbad/1001NightsTheAdventuresOfSindbad16x16.gif',false,11323,'/images/games/1001NightsTheAdventuresOfSindbad/1001NightsTheAdventuresOfSindbad100x75.jpg','/images/games/1001NightsTheAdventuresOfSindbad/1001NightsTheAdventuresOfSindbad179x135.jpg','/images/games/1001NightsTheAdventuresOfSindbad/1001NightsTheAdventuresOfSindbad320x240.jpg','false','/images/games/thumbnails_med_2/1001NightsTheAdventuresOfSindbad130x75.gif','/exe/1001_nights_adventures_of_sindbad_46758936-setup.exe?lc=en&ext=1001_nights_adventures_of_sindbad_46758936-setup.exe','Seek Seven Precious Stones!','Uncover hidden objects as you seek seven precious stones!','false',false,false,'1001 Nights: The Adventures of');ag(118207953,'Million Dollar Quest','/images/games/MillionDollarQuest/MillionDollarQuest81x46.gif',1100710,118268750,'','false','/images/games/MillionDollarQuest/MillionDollarQuest16x16.gif',false,11323,'/images/games/MillionDollarQuest/MillionDollarQuest100x75.jpg','/images/games/MillionDollarQuest/MillionDollarQuest179x135.jpg','/images/games/MillionDollarQuest/MillionDollarQuest320x240.jpg','false','/images/games/thumbnails_med_2/MillionDollarQuest130x75.gif','/exe/million_dollar_quest_76893499-setup.exe?lc=en&ext=million_dollar_quest_76893499-setup.exe','Travel the World to Win a Million!','Travel the world and piece together Sandra’s past to win a million!','false',false,false,'Million Dollar Quest');ag(118208910,'Pyramid of Words','/images/games/PyramidOfWords/PyramidOfWords81x46.gif',110083820,118269207,'4d5ebd1e-c1be-4140-8247-df79293dcc52','false','/images/games/PyramidOfWords/PyramidOfWords16x16.gif',false,11323,'/images/games/PyramidOfWords/PyramidOfWords100x75.jpg','/images/games/PyramidOfWords/PyramidOfWords179x135.jpg','/images/games/PyramidOfWords/PyramidOfWords320x240.jpg','false','/images/games/thumbnails_med_2/PyramidOfWords130x75.gif','','Dismantle the pyramid composing the words.','Play the famous Chinese solitaire by composing the words.','true',true,true,'Pyramid of Words AS3 OLT1');ag(118210257,'Gardenscapes™','/images/games/gardenscapes/gardenscapes81x46.gif',110082753,118271900,'6651dc83-7d04-4de9-bfbe-926f878a133d','false','/images/games/gardenscapes/gardenscapes16x16.gif',false,11323,'/images/games/gardenscapes/gardenscapes100x75.jpg','/images/games/gardenscapes/gardenscapes179x135.jpg','/images/games/gardenscapes/gardenscapes320x240.jpg','false','/images/games/thumbnails_med_2/gardenscapes130x75.gif','','Create a Gorgeous Garden Estate!','Grow a gorgeous garden by selling off objects from a mansion estate!','true',true,true,'garden_scapes OLT1 AS3');ag(118211700,'Lost In Reefs','/images/games/lost_in_reefs/lost_in_reefs81x46.gif',110083820,118272560,'a6ed0c2c-608a-4f5b-9eb2-34434c6b0759','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','','Explore ancient deep-sea shipwrecks!','Explore ancient shipwrecks and underwater mysteries in this match-3 puzzler!','true',false,false,'Lost In Reefs OL AS3');ag(118212777,'Death vs. Monstars','/images/games/death_vs_monstars/death_vs_monstars81x46.gif',110015873,118273417,'de0fc57a-7996-4d28-b95c-11db4682bf93','false','/images/games/death_vs_monstars/death_vs_monstars16x16.gif',false,11323,'/images/games/death_vs_monstars/death_vs_monstars100x75.jpg','/images/games/death_vs_monstars/death_vs_monstars179x135.jpg','/images/games/death_vs_monstars/death_vs_monstars320x240.jpg','false','/images/games/thumbnails_med_2/death_vs_monstars130x75.gif','','Funny cartoon manic arena shooter.','Fight off waves of monsters and defeat the last boss.','true',true,true,'Death vs. Monstars OLT1 AS3');ag(118213430,'Cockroach Fever','/images/games/cockroach/cockroach81x46.gif',110083820,1182747,'0a796564-df93-41b1-a5a0-0cb4c68a0666','false','/images/games/cockroach/cockroach16x16.gif',false,11323,'/images/games/cockroach/cockroach100x75.jpg','/images/games/cockroach/cockroach179x135.jpg','/images/games/cockroach/cockroach320x240.jpg','false','/images/games/thumbnails_med_2/cockroach130x75.gif','','Pop the bubbles!','Pop the bubbles of a bubble wrap and avoid the hidden cockroaches!','true',true,true,'Cockroach Fever OLT1 AS3');ag(118215540,'DogTown','/images/games/Dogtown/Dogtown81x46.gif',1003,118276650,'','false','/images/games/Dogtown/Dogtown16x16.gif',false,11323,'/images/games/Dogtown/Dogtown100x75.jpg','/images/games/Dogtown/Dogtown179x135.jpg','/images/games/Dogtown/Dogtown320x240.jpg','false','/images/games/thumbnails_med_2/Dogtown130x75.gif','/exe/DogTown_65489211-setup.exe?lc=en&ext=DogTown_65489211-setup.exe','Rehabilitate Troubled Dogs for Adoption!','Rehabilitate the troubled canines of DogTown and prepare them for adoption!','false',false,false,'DogTown');ag(118217160,'Romance of Rome','/images/games/romance_of_rome/romance_of_rome81x46.gif',110082753,11827867,'ce33ab0d-61e9-4cc7-b6d5-2ce5bdbe1ce1','false','/images/games/romance_of_rome/romance_of_rome16x16.gif',false,11323,'/images/games/romance_of_rome/romance_of_rome100x75.jpg','/images/games/romance_of_rome/romance_of_rome179x135.jpg','/images/games/romance_of_rome/romance_of_rome320x240.jpg','false','/images/games/thumbnails_med_2/romance_of_rome130x75.gif','','Love and Treachery in the Ancient Empire!  ','Love and treachery in the ancient empire in a quest for stolen relics!  ','true',true,true,'Romance of Rome OLT1 AS3');ag(118218970,'Rumbling Marbles','/images/games/RumblingMarbles/RumblingMarbles81x46.gif',110083820,11827977,'149a75e5-6bc9-4de7-987a-773bb448722e','false','/images/games/RumblingMarbles/RumblingMarbles16x16.gif',false,11323,'/images/games/RumblingMarbles/RumblingMarbles100x75.jpg','/images/games/RumblingMarbles/RumblingMarbles179x135.jpg','/images/games/RumblingMarbles/RumblingMarbles320x240.jpg','false','/images/games/thumbnails_med_2/RumblingMarbles130x75.gif','','Build rows of three of equal colour.','Clear the specified number of marbles by building rows of three of equal colour!','true',true,true,'Rumbling Marbles OLT1 AS3');ag(118223930,'House of Horus','/images/games/horus/horus81x46.gif',110083820,118284383,'d2fba3c5-7163-4b77-b295-7c9b45136719','false','/images/games/horus/horus16x16.gif',false,11323,'/images/games/horus/horus100x75.jpg','/images/games/horus/horus179x135.jpg','/images/games/horus/horus320x240.jpg','false','/images/games/thumbnails_med_2/horus130x75.gif','','Build the pyramid!','Build the pyramid by forming pairs of cards with the same color or value!','true',false,true,'House of Horus OLT1 AS3');ag(118224763,'Supersonic','/images/games/supersonic/supersonic81x46.gif',110083820,118285467,'bdd8daee-624f-4b44-a016-46fcd76b60ce','false','/images/games/supersonic/supersonic16x16.gif',false,11323,'/images/games/supersonic/supersonic100x75.jpg','/images/games/supersonic/supersonic179x135.jpg','/images/games/supersonic/supersonic320x240.jpg','false','/images/games/thumbnails_med_2/supersonic130x75.gif','','Navigate through the obstacles!','Find your way through a dangerous system of tunnels!','true',true,true,'Supersonic OLT1 AS3');ag(118226760,'Fix It Up 2 World Tour','/images/games/FixItUp2WorldTour/FixItUp2WorldTour81x46.gif',0,118287913,'','false','/images/games/FixItUp2WorldTour/FixItUp2WorldTour16x16.gif',false,11323,'/images/games/FixItUp2WorldTour/FixItUp2WorldTour100x75.jpg','/images/games/FixItUp2WorldTour/FixItUp2WorldTour179x135.jpg','/images/games/FixItUp2WorldTour/FixItUp2WorldTour320x240.jpg','false','/images/games/thumbnails_med_2/FixItUp2WorldTour130x75.gif','/exe/fix_it_up_2_world_tour_32112517-setup.exe?lc=en&ext=fix_it_up_2_world_tour_32112517-setup.exe','Expand Kate’s Car-repair Worldwide!','Expand Kate’s car-repair shop into a worldwide empire!','false',false,false,'Fix It Up 2 World Tour');ag(118227563,'Haunted Hotel','/images/games/hauntedhotel/hauntedhotel81x46.gif',1100710,11828847,'','false','/images/games/hauntedhotel/hauntedhotel16x16.gif',false,11323,'/images/games/hauntedhotel/hauntedhotel100x75.jpg','/images/games/hauntedhotel/hauntedhotel179x135.jpg','/images/games/hauntedhotel/hauntedhotel320x240.jpg','false','/images/games/thumbnails_med_2/hauntedhotel130x75.gif','/exe/haunted_hotel_59413371-setup.exe?lc=en&ext=haunted_hotel_59413371-setup.exe','Check In for a Fright!','Check in for a frightful stay of hidden object adventures!','false',false,false,'Haunted Hotel');ag(118228933,'Hidden Expedition Amazon','/images/games/HiddenExpeditionAmazon/HiddenExpeditionAmazon81x46.gif',1100710,118289497,'','false','/images/games/HiddenExpeditionAmazon/HiddenExpeditionAmazon16x16.gif',false,11323,'/images/games/HiddenExpeditionAmazon/HiddenExpeditionAmazon100x75.jpg','/images/games/HiddenExpeditionAmazon/HiddenExpeditionAmazon179x135.jpg','/images/games/HiddenExpeditionAmazon/HiddenExpeditionAmazon320x240.jpg','false','/images/games/thumbnails_med_2/HiddenExpeditionAmazon130x75.gif','/exe/hidden_expedition_amazon_85661752-setup.exe?lc=en&ext=hidden_expedition_amazon_85661752-setup.exe','Untamed Jungles and Ancient Civilizations!','Follow a tattered map through untamed jungles to ancient civilizations!','false',false,false,'Hidden Expedition Amazon');ag(118229457,'Rasputin’s Curse','/images/games/RasputinsCurse/RasputinsCurse81x46.gif',1100710,118290470,'','false','/images/games/RasputinsCurse/RasputinsCurse16x16.gif',false,11323,'/images/games/RasputinsCurse/RasputinsCurse100x75.jpg','/images/games/RasputinsCurse/RasputinsCurse179x135.jpg','/images/games/RasputinsCurse/RasputinsCurse320x240.jpg','false','/images/games/thumbnails_med_2/RasputinsCurse130x75.gif','/exe/rasputins_curse_85694138-setup.exe?lc=en&ext=rasputins_curse_85694138-setup.exe','Unravel Lora’s Family Secrets!','Unravel Lora’s family history secrets through hidden object puzzles!','false',false,false,'Rasputins Curse');ag(118232510,'Gotcha Celebrity Secrets','/images/games/GotchaCelebritySecrets/GotchaCelebritySecrets81x46.gif',1100710,118293167,'','false','/images/games/GotchaCelebritySecrets/GotchaCelebritySecrets16x16.gif',false,11323,'/images/games/GotchaCelebritySecrets/GotchaCelebritySecrets100x75.jpg','/images/games/GotchaCelebritySecrets/GotchaCelebritySecrets179x135.jpg','/images/games/GotchaCelebritySecrets/GotchaCelebritySecrets320x240.jpg','false','/images/games/thumbnails_med_2/GotchaCelebritySecrets130x75.gif','/exe/gotcha_celebrity_secrets_86514925-setup.exe?lc=en&ext=gotcha_celebrity_secrets_86514925-setup.exe','Uncover the Juiciest Holllywood Gossip!','Locate hot celebrities to uncover juicy Hollywood gossip!','false',false,false,'Gotcha Celebrity Secrets');ag(118261750,'Passport to paradise','/images/games/PassportToParadise/PassportToParadise81x46.gif',0,118322203,'','false','/images/games/PassportToParadise/PassportToParadise16x16.gif',false,11323,'/images/games/PassportToParadise/PassportToParadise100x75.jpg','/images/games/PassportToParadise/PassportToParadise179x135.jpg','/images/games/PassportToParadise/PassportToParadise320x240.jpg','false','/images/games/thumbnails_med_2/PassportToParadise130x75.gif','/exe/passport_to_paradise_56127866-setup.exe?lc=en&ext=passport_to_paradise_56127866-setup.exe','Turn Tropical Islands into Resorts!','Turn five tropical islands into world-class beach resorts!','false',false,false,'Passport to paradise');ag(118262253,'Hidden in Time Mirror Mirror','/images/games/HiddenInTimeMirrorMirror/HiddenInTimeMirrorMirror81x46.gif',1100710,118323850,'','false','/images/games/HiddenInTimeMirrorMirror/HiddenInTimeMirrorMirror16x16.gif',false,11323,'/images/games/HiddenInTimeMirrorMirror/HiddenInTimeMirrorMirror100x75.jpg','/images/games/HiddenInTimeMirrorMirror/HiddenInTimeMirrorMirror179x135.jpg','/images/games/HiddenInTimeMirrorMirror/HiddenInTimeMirrorMirror320x240.jpg','false','/images/games/thumbnails_med_2/HiddenInTimeMirrorMirror130x75.gif','/exe/hidden_in_time_mirror_84567715-setup.exe?lc=en&ext=hidden_in_time_mirror_84567715-setup.exe','Magical Investigation of Castle Fairwich!','Investigate Castle Fairwich’s shady history with an antique, magical mirror!','false',false,false,'Hidden in time mirror');ag(118263760,'Insider Tales Vanished in Rome','/images/games/InsiderTalesVanishedInRome/InsiderTalesVanishedInRome81x46.gif',1100710,118324540,'','false','/images/games/InsiderTalesVanishedInRome/InsiderTalesVanishedInRome16x16.gif',false,11323,'/images/games/InsiderTalesVanishedInRome/InsiderTalesVanishedInRome100x75.jpg','/images/games/InsiderTalesVanishedInRome/InsiderTalesVanishedInRome179x135.jpg','/images/games/InsiderTalesVanishedInRome/InsiderTalesVanishedInRome320x240.jpg','false','/images/games/thumbnails_med_2/InsiderTalesVanishedInRome130x75.gif','/exe/insider_tales_vanished_in_rome_66851591-setup.exe?lc=en&ext=insider_tales_vanished_in_rome_66851591-setup.exe','Couple Vanishes Amid Lotto Fever!','A Roman couple mysteriously disappears amid crazed lotto fever!','false',false,false,'Insider Tales Vanished in Rome');ag(118264740,'BookWorm Adventures 2','/images/games/BookwormAdventuresVol2/BookwormAdventuresVol281x46.gif',1008,118325177,'','false','/images/games/BookwormAdventuresVol2/BookwormAdventuresVol216x16.gif',false,11323,'/images/games/BookwormAdventuresVol2/BookwormAdventuresVol2100x75.jpg','/images/games/BookwormAdventuresVol2/BookwormAdventuresVol2179x135.jpg','/images/games/BookwormAdventuresVol2/BookwormAdventuresVol2320x240.jpg','false','/images/games/thumbnails_med_2/BookwormAdventuresVol2130x75.gif','/exe/bookworm_adventures_2_53261168-setup.exe?lc=en&ext=bookworm_adventures_2_53261168-setup.exe','Continued Quest for Vocab Valor!','Continued quest for vocab valor! Build words and battle monsters!','false',false,false,'BookWorm Adventures 2');ag(118265980,'The Otherside: Realm of Eons','/images/games/TheOtherside/TheOtherside81x46.gif',1100710,118326183,'','false','/images/games/TheOtherside/TheOtherside16x16.gif',false,11323,'/images/games/TheOtherside/TheOtherside100x75.jpg','/images/games/TheOtherside/TheOtherside179x135.jpg','/images/games/TheOtherside/TheOtherside320x240.jpg','false','/images/games/thumbnails_med_2/TheOtherside130x75.gif','/exe/the_other_side_23511522-setup.exe?lc=en&ext=the_other_side_23511522-setup.exe','Uncover Mystical Worlds of Secrets!','Travel between mystical worlds to uncover a realm of secrets!','false',false,false,'The Other Side');ag(118266520,'Fiona Finch And The Finest Flowers','/images/games/FionaFinchAndTheFinestFlowers/FionaFinchAndTheFinestFlowers81x46.gif',1003,118327580,'','false','/images/games/FionaFinchAndTheFinestFlowers/FionaFinchAndTheFinestFlowers16x16.gif',false,11323,'/images/games/FionaFinchAndTheFinestFlowers/FionaFinchAndTheFinestFlowers100x75.jpg','/images/games/FionaFinchAndTheFinestFlowers/FionaFinchAndTheFinestFlowers179x135.jpg','/images/games/FionaFinchAndTheFinestFlowers/FionaFinchAndTheFinestFlowers320x240.jpg','false','/images/games/thumbnails_med_2/FionaFinchAndTheFinestFlowers130x75.gif','/exe/Fiona_finch_and_finest_flowers_61553944-setup.exe?lc=en&ext=Fiona_finch_and_finest_flowers_61553944-setup.exe','Plant Flowers with Fiona!','Plant flowers and cross species! Help Fiona win the contest!','false',false,false,'Fiona Finch And Finest Flowers');ag(118267297,'Haunted Hotel 2 Believe the Lies','/images/games/HauntedHotel2BelieveTheLies/HauntedHotel2BelieveTheLies81x46.gif',1100710,118328890,'','false','/images/games/HauntedHotel2BelieveTheLies/HauntedHotel2BelieveTheLies16x16.gif',false,11323,'/images/games/HauntedHotel2BelieveTheLies/HauntedHotel2BelieveTheLies100x75.jpg','/images/games/HauntedHotel2BelieveTheLies/HauntedHotel2BelieveTheLies179x135.jpg','/images/games/HauntedHotel2BelieveTheLies/HauntedHotel2BelieveTheLies320x240.jpg','false','/images/games/thumbnails_med_2/HauntedHotel2BelieveTheLies130x75.gif','/exe/haunted_hotel_2_believe_the_lies_54813269-setup.exe?lc=en&ext=haunted_hotel_2_believe_the_lies_54813269-setup.exe','Crack this Creepy Case!','A lone FBI agent arrives to crack this creepy case!','false',false,false,'Haunted Hotel 2 Believe');ag(118268417,'Cake Shop 2','/images/games/CakeShop2/CakeShop281x46.gif',1003,118329180,'','false','/images/games/CakeShop2/CakeShop216x16.gif',false,11323,'/images/games/CakeShop2/CakeShop2100x75.jpg','/images/games/CakeShop2/CakeShop2179x135.jpg','/images/games/CakeShop2/CakeShop2320x240.jpg','false','/images/games/thumbnails_med_2/CakeShop2130x75.gif','/exe/cake_shop_2_23561844-setup.exe?lc=en&ext=cake_shop_2_23561844-setup.exe','Open Your Own Roadside Cafe!','Open your own roadside cafe! Treat customers to delicious fruitcakes!','false',false,false,'Cake Shop 2');ag(118269867,'Treasure Seekers Visions Of Gold','/images/games/TreasureSeekersVisionsOfGold/TreasureSeekersVisionsOfGold81x46.gif',1100710,118330600,'','false','/images/games/TreasureSeekersVisionsOfGold/TreasureSeekersVisionsOfGold16x16.gif',false,11323,'/images/games/TreasureSeekersVisionsOfGold/TreasureSeekersVisionsOfGold100x75.jpg','/images/games/TreasureSeekersVisionsOfGold/TreasureSeekersVisionsOfGold179x135.jpg','/images/games/TreasureSeekersVisionsOfGold/TreasureSeekersVisionsOfGold320x240.jpg','false','/images/games/thumbnails_med_2/TreasureSeekersVisionsOfGold130x75.gif','/exe/treasure_seekers_visions_of_gold_56421153-setup.exe?lc=en&ext=treasure_seekers_visions_of_gold_56421153-setup.exe','Pirate Treasure and Family Secrets!','Join the quest for pirate treasure and age-old family secrets!','false',false,false,'Treasure Seekers Visions Of Go');ag(118270670,'The Search For Amelia Earhart','/images/games/TheSearchForAmeliaEarhart/TheSearchForAmeliaEarhart81x46.gif',1100710,118331797,'','false','/images/games/TheSearchForAmeliaEarhart/TheSearchForAmeliaEarhart16x16.gif',false,11323,'/images/games/TheSearchForAmeliaEarhart/TheSearchForAmeliaEarhart100x75.jpg','/images/games/TheSearchForAmeliaEarhart/TheSearchForAmeliaEarhart179x135.jpg','/images/games/TheSearchForAmeliaEarhart/TheSearchForAmeliaEarhart320x240.jpg','false','/images/games/thumbnails_med_2/TheSearchForAmeliaEarhart130x75.gif','/exe/the_search_for_amelia_earhart_89556712-setup.exe?lc=en&ext=the_search_for_amelia_earhart_89556712-setup.exe','Solve the Pilot’s Mysterious Disappearance!','Solve the mysterious disappearance of legendary American pilot Amelia Earhart!','false',false,false,'The Search For Amelia Earhart');ag(118274990,'Vision In White','/images/games/NoraRoberts/NoraRoberts81x46.gif',1100710,118335553,'','false','/images/games/NoraRoberts/NoraRoberts16x16.gif',false,11323,'/images/games/NoraRoberts/NoraRoberts100x75.jpg','/images/games/NoraRoberts/NoraRoberts179x135.jpg','/images/games/NoraRoberts/NoraRoberts320x240.jpg','false','/images/games/thumbnails_med_2/NoraRoberts130x75.gif','/exe/nora_roberts_vision_24657835-setup.exe?lc=en&ext=nora_roberts_vision_24657835-setup.exe','Capture the Romance!','Capture the romance as a brilliant wedding photographer’s casual fling turns steamy!','false',false,false,'Nora Roberts Vision In White');ag(118281503,'Matchmaker Joining Hearts','/images/games/MatchmakerJoiningHearts/MatchmakerJoiningHearts81x46.gif',1100710,118342880,'','false','/images/games/MatchmakerJoiningHearts/MatchmakerJoiningHearts16x16.gif',false,11323,'/images/games/MatchmakerJoiningHearts/MatchmakerJoiningHearts100x75.jpg','/images/games/MatchmakerJoiningHearts/MatchmakerJoiningHearts179x135.jpg','/images/games/MatchmakerJoiningHearts/MatchmakerJoiningHearts320x240.jpg','false','/images/games/thumbnails_med_2/MatchmakerJoiningHearts130x75.gif','/exe/matchmaker_joining_hearts_56942218-setup.exe?lc=en&ext=matchmaker_joining_hearts_56942218-setup.exe','Help Singles Find Lasting Love!','Help 10 lonely singles find their perfect match!','false',false,false,'Matchmaker Joining Hearts');ag(118288313,'Free Cell Wonderland','/images/games/FreeCellWonderland/FreeCellWonderland81x46.gif',1004,11834980,'','false','/images/games/FreeCellWonderland/FreeCellWonderland16x16.gif',false,11323,'/images/games/FreeCellWonderland/FreeCellWonderland100x75.jpg','/images/games/FreeCellWonderland/FreeCellWonderland179x135.jpg','/images/games/FreeCellWonderland/FreeCellWonderland320x240.jpg','false','/images/games/thumbnails_med_2/FreeCellWonderland130x75.gif','/exe/free_cell_wonderland_56231884-setup.exe?lc=en&ext=free_cell_wonderland_56231884-setup.exe','Thwart the Queen of Hearts!','Journey through whimsical Wonderland and thwart the Queen of Hearts!','false',false,false,'Free Cell Wonderland');ag(118291513,'Shutter Island','/images/games/ShutterIsland/ShutterIsland81x46.gif',1100710,118352373,'','false','/images/games/ShutterIsland/ShutterIsland16x16.gif',false,11323,'/images/games/ShutterIsland/ShutterIsland100x75.jpg','/images/games/ShutterIsland/ShutterIsland179x135.jpg','/images/games/ShutterIsland/ShutterIsland320x240.jpg','false','/images/games/thumbnails_med_2/ShutterIsland130x75.gif','/exe/shutter_island_32519941-setup.exe?lc=en&ext=shutter_island_32519941-setup.exe','Track an Escaped Mental Patient!','A mental patient has gone missing on foreboding Shutter Island!','false',false,false,'Shutter Island');ag(118293803,'Wizard Land','/images/games/WizardLand/WizardLand81x46.gif',1007,118354493,'','false','/images/games/WizardLand/WizardLand16x16.gif',false,11323,'/images/games/WizardLand/WizardLand100x75.jpg','/images/games/WizardLand/WizardLand179x135.jpg','/images/games/WizardLand/WizardLand320x240.jpg','false','/images/games/thumbnails_med_2/WizardLand130x75.gif','/exe/wizard_land_54117152-setup.exe?lc=en&ext=wizard_land_54117152-setup.exe','Revive the Mythical Crystal Flower!','Revive the mythical crystal flower with extreme match-3 gameplay!','false',false,false,'Wizard Land');ag(118294290,'Lost Fortunes','/images/games/LostFortunes/LostFortunes81x46.gif',1007,118355963,'','false','/images/games/LostFortunes/LostFortunes16x16.gif',false,11323,'/images/games/LostFortunes/LostFortunes100x75.jpg','/images/games/LostFortunes/LostFortunes179x135.jpg','/images/games/LostFortunes/LostFortunes320x240.jpg','false','/images/games/thumbnails_med_2/LostFortunes130x75.gif','/exe/lost_fortunes_25826551-setup.exe?lc=en&ext=lost_fortunes_25826551-setup.exe','Puzzling Escape from Clutches of Evil!','Solve riddles and puzzles to escape an evil fortune teller!','false',false,false,'Lost Fortunes');ag(118295220,'Born into Darkness','/images/games/BornintoDarkness/BornintoDarkness81x46.gif',1003,11835660,'','false','/images/games/BornintoDarkness/BornintoDarkness16x16.gif',false,11323,'/images/games/BornintoDarkness/BornintoDarkness100x75.jpg','/images/games/BornintoDarkness/BornintoDarkness179x135.jpg','/images/games/BornintoDarkness/BornintoDarkness320x240.jpg','false','/images/games/thumbnails_med_2/BornintoDarkness130x75.gif','/exe/born_into_darkness_89456178-setup.exe?lc=en&ext=born_into_darkness_89456178-setup.exe','Uncover the Secrets of Eternal Life!','A vampire&rsquo;s quest to uncover the secrets of eternal life!','false',false,false,'Born into Darkness');ag(118336810,'Escape From Lost Island','/images/games/EscapeFromLostIsland/EscapeFromLostIsland81x46.gif',1100710,118397437,'','false','/images/games/EscapeFromLostIsland/EscapeFromLostIsland16x16.gif',false,11323,'/images/games/EscapeFromLostIsland/EscapeFromLostIsland100x75.jpg','/images/games/EscapeFromLostIsland/EscapeFromLostIsland179x135.jpg','/images/games/EscapeFromLostIsland/EscapeFromLostIsland320x240.jpg','false','/images/games/thumbnails_med_2/EscapeFromLostIsland130x75.gif','/exe/escape_from_lost_island_64811744-setup.exe?lc=en&ext=escape_from_lost_island_64811744-setup.exe','Fight to Stay Alive!','Avert pirates, plot your escape, and fight to stay alive!','false',false,false,'Escape From Lost Island');ag(118337433,'Broken Hearts A Soldiers Duty','/images/games/BrokenHeartsASoldiersDuty/BrokenHeartsASoldiersDuty81x46.gif',1100710,118398200,'','false','/images/games/BrokenHeartsASoldiersDuty/BrokenHeartsASoldiersDuty16x16.gif',false,11323,'/images/games/BrokenHeartsASoldiersDuty/BrokenHeartsASoldiersDuty100x75.jpg','/images/games/BrokenHeartsASoldiersDuty/BrokenHeartsASoldiersDuty179x135.jpg','/images/games/BrokenHeartsASoldiersDuty/BrokenHeartsASoldiersDuty320x240.jpg','false','/images/games/thumbnails_med_2/BrokenHeartsASoldiersDuty130x75.gif','/exe/Broken_hearts_soldiers_duty_11254155-setup.exe?lc=en&ext=Broken_hearts_soldiers_duty_11254155-setup.exe','Heartbreaking Tale of Love and Tragedy!','A Hidden Object journey of love, deception, and heartbreak!','false',false,false,'Broken hearts a soldiers duty');ag(118341103,'Big City Adventure Vancouver','/images/games/BigCityAdventureVancouver/BigCityAdventureVancouver81x46.gif',1100710,118402960,'','false','/images/games/BigCityAdventureVancouver/BigCityAdventureVancouver16x16.gif',false,11323,'/images/games/BigCityAdventureVancouver/BigCityAdventureVancouver100x75.jpg','/images/games/BigCityAdventureVancouver/BigCityAdventureVancouver179x135.jpg','/images/games/BigCityAdventureVancouver/BigCityAdventureVancouver320x240.jpg','false','/images/games/thumbnails_med_2/BigCityAdventureVancouver130x75.gif','/exe/big_city_adventures_vancouver_64415122-setup.exe?lc=en&ext=big_city_adventures_vancouver_64415122-setup.exe','Snowy Seek-and-Find of Olympic Proportions!','Head north for Big City adventure - a snowy seek-and-find of Olympic proportions!','false',false,false,'Big City Adventure Vancouver');ag(118342887,'The Clumsys 2','/images/games/TheClumsys2/TheClumsys281x46.gif',1007,118403293,'','false','/images/games/TheClumsys2/TheClumsys216x16.gif',false,11323,'/images/games/TheClumsys2/TheClumsys2100x75.jpg','/images/games/TheClumsys2/TheClumsys2179x135.jpg','/images/games/TheClumsys2/TheClumsys2320x240.jpg','false','/images/games/thumbnails_med_2/TheClumsys2130x75.gif','/exe/the_clumsis_2_55381569-setup.exe?lc=en&ext=the_clumsis_2_55381569-setup.exe','Repair History&rsquo;s Greatest Discoveries!','After a time machine mishap, Helen must repair history&rsquo;s greatest discoveries!','false',false,false,'The Clumsys 2');ag(118347343,'Jewel Quest Heritage','/images/games/JewelQuestHeritage/JewelQuestHeritage81x46.gif',1007,11840813,'','false','/images/games/JewelQuestHeritage/JewelQuestHeritage16x16.gif',false,11323,'/images/games/JewelQuestHeritage/JewelQuestHeritage100x75.jpg','/images/games/JewelQuestHeritage/JewelQuestHeritage179x135.jpg','/images/games/JewelQuestHeritage/JewelQuestHeritage320x240.jpg','false','/images/games/thumbnails_med_2/JewelQuestHeritage130x75.gif','/exe/Jewel_quest_heritage_64822175-setup.exe?lc=en&ext=Jewel_quest_heritage_64822175-setup.exe','Puzzling Quest to Ancient European Locales!','A puzzling, match-3 quest to reclaim the Golden Jewel Board!','false',false,false,'Jewel Quest Heritage');ag(118348607,'1 Penguin 100 Cases','/images/games/1Penguin100Cases/1Penguin100Cases81x46.gif',1100710,118409263,'','false','/images/games/1Penguin100Cases/1Penguin100Cases16x16.gif',false,11323,'/images/games/1Penguin100Cases/1Penguin100Cases100x75.jpg','/images/games/1Penguin100Cases/1Penguin100Cases179x135.jpg','/images/games/1Penguin100Cases/1Penguin100Cases320x240.jpg','false','/images/games/thumbnails_med_2/1Penguin100Cases130x75.gif','/exe/1_Penguin_100_Cases_65445665-setup.exe?lc=en&ext=1_Penguin_100_Cases_65445665-setup.exe','Arctic Blast of Hidden Object Fun!','Arctic hidden object adventure following the life of an adorable penguin!','false',false,false,'1 Penguin 100 Cases');ag(118349360,'Dream Cars','/images/games/DreamCars/DreamCars81x46.gif',1003,118410157,'','false','/images/games/DreamCars/DreamCars16x16.gif',false,11323,'/images/games/DreamCars/DreamCars100x75.jpg','/images/games/DreamCars/DreamCars179x135.jpg','/images/games/DreamCars/DreamCars320x240.jpg','false','/images/games/thumbnails_med_2/DreamCars130x75.gif','/exe/dream_cars_59458122-setup.exe?lc=en&ext=dream_cars_59458122-setup.exe','Help Achieve a Car Racing Dream!','Achieve a car racing dream in this full-throttle time management simulator!','false',false,false,'Dream Cars');ag(118365797,'Treasure Hunter','/images/games/TreasureHunter/TreasureHunter81x46.gif',110083820,118426623,'e986eeaf-38d6-439b-8bd3-b220d5472441','false','/images/games/TreasureHunter/TreasureHunter16x16.gif',false,11323,'/images/games/TreasureHunter/TreasureHunter100x75.jpg','/images/games/TreasureHunter/TreasureHunter179x135.jpg','/images/games/TreasureHunter/TreasureHunter320x240.jpg','false','/images/games/thumbnails_med_2/TreasureHunter130x75.gif','','Remember and dig out!','Remember the location of treasure sprites and dig them out!','true',false,false,'Treasure Hunter OL AS3');ag(118372843,'The Mystery of the Crystal Portal','/images/games/the_mystery_of_the_crystal_portal/the_mystery_of_the_crystal_portal81x46.gif',1100710,11843480,'','false','/images/games/the_mystery_of_the_crystal_portal/the_mystery_of_the_crystal_portal16x16.gif',false,11323,'/images/games/the_mystery_of_the_crystal_portal/the_mystery_of_the_crystal_portal100x75.jpg','/images/games/the_mystery_of_the_crystal_portal/the_mystery_of_the_crystal_portal179x135.jpg','/images/games/the_mystery_of_the_crystal_portal/the_mystery_of_the_crystal_portal320x240.jpg','false','/images/games/thumbnails_med_2/the_mystery_of_the_crystal_portal130x75.gif','/exe/mystery_of_the_crystal_portal_INTL_EN-setup.exe?lc=en&ext=mystery_of_the_crystal_portal_INTL_EN-setup.exe','Find a missing archeologist!','Find an archeologist who disappears after making a shocking discovery!','false',false,false,'Mystery Crystal Portal INTL EN');ag(118373793,'Alice’s Tea Cup Madness','/images/games/AlicesTeaCupMadness/AlicesTeaCupMadness81x46.gif',110127790,118435527,'','false','/images/games/AlicesTeaCupMadness/AlicesTeaCupMadness16x16.gif',false,11323,'/images/games/AlicesTeaCupMadness/AlicesTeaCupMadness100x75.jpg','/images/games/AlicesTeaCupMadness/AlicesTeaCupMadness179x135.jpg','/images/games/AlicesTeaCupMadness/AlicesTeaCupMadness320x240.jpg','false','/images/games/thumbnails_med_2/AlicesTeaCupMadness130x75.gif','/exe/alices_tea_cup_madness_69514478-setup.exe?lc=en&ext=alices_tea_cup_madness_69514478-setup.exe','Serve a Wonderland of Tea Shops!','Serve demanding customers in a whimsical Wonderland of tea shops!','false',false,false,'Alices Tea Cup Madness');ag(118377683,'Flux Family Secrets - The Ripple Effect','/images/games/FluxFamilySecrets/FluxFamilySecrets81x46.gif',1100710,118439467,'','false','/images/games/FluxFamilySecrets/FluxFamilySecrets16x16.gif',false,11323,'/images/games/FluxFamilySecrets/FluxFamilySecrets100x75.jpg','/images/games/FluxFamilySecrets/FluxFamilySecrets179x135.jpg','/images/games/FluxFamilySecrets/FluxFamilySecrets320x240.jpg','false','/images/games/thumbnails_med_2/FluxFamilySecrets130x75.gif','/exe/Flux_Family_Secrets_94512287-setup.exe?lc=en&ext=Flux_Family_Secrets_94512287-setup.exe','Realign the Timeline and Unlock Family Secrets!','Fix the errors in time by finding misplaced objects and solving puzzles!','false',false,false,'Flux Family Secrets - The Ripp');ag(118382203,'Mahjongg Dimensions Deluxe','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe81x46.gif',1006,118444187,'','false','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe16x16.gif',false,11323,'/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe100x75.jpg','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe179x135.jpg','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe320x240.jpg','false','/images/games/thumbnails_med_2/MahjonggDimensionsDeluxe130x75.gif','/exe/Mahjongg_dimensions_51548812-setup.exe?lc=en&ext=Mahjongg_dimensions_51548812-setup.exe','Classic Puzzler with a 3D Twist!','Classic puzzler with a 3D twist requiring creativity, speed, and spatial memory!','false',false,false,'Mahjongg Dimensions');ag(118384823,'Great Adventures: Lost in Mountains','/images/games/GreatAdventuresLostInMountains/GreatAdventuresLostInMountains81x46.gif',1100710,118446560,'','false','/images/games/GreatAdventuresLostInMountains/GreatAdventuresLostInMountains16x16.gif',false,11323,'/images/games/GreatAdventuresLostInMountains/GreatAdventuresLostInMountains100x75.jpg','/images/games/GreatAdventuresLostInMountains/GreatAdventuresLostInMountains179x135.jpg','/images/games/GreatAdventuresLostInMountains/GreatAdventuresLostInMountains320x240.jpg','false','/images/games/thumbnails_med_2/GreatAdventuresLostInMountains130x75.gif','/exe/great_adventures_lost_mountains_58932826-setup.exe?lc=en&ext=great_adventures_lost_mountains_58932826-setup.exe','Track Down a Missing Scientist!','Track a missing scientist while keeping your characters happy and healthy!','false',false,false,'Great Adventures Mountains');ag(118389157,'Youda Legend Golden Bird','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird81x46.gif',1100710,118451110,'','false','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird16x16.gif',false,11323,'/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird100x75.jpg','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird179x135.jpg','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird320x240.jpg','false','/images/games/thumbnails_med_2/YoudaLegendGoldenBird130x75.gif','/exe/Youda_legend_golden_bird_13258465-setup.exe?lc=en&ext=Youda_legend_golden_bird_13258465-setup.exe','Tropical Holiday Turned Mysterious Adventure!','A tropical getaway turns into an all new mysterious adventure!','false',false,false,'Youda Legend Golden Bird');ag(118391427,'DIGDUG','/images/games/DIGDUG/DIGDUG81x46.gif',0,118453740,'','false','/images/games/DIGDUG/DIGDUG16x16.gif',false,11323,'/images/games/DIGDUG/DIGDUG100x75.jpg','/images/games/DIGDUG/DIGDUG179x135.jpg','/images/games/DIGDUG/DIGDUG320x240.jpg','false','/images/games/thumbnails_med_2/DIGDUG130x75.gif','/exe/digdug_46182559-setup.exe?lc=en&ext=digdug_46182559-setup.exe','Dig for Pookas, Snare Nasty Fygars!','Dig for Pookas and snare nasty Fygars in this underground classic!','false',false,false,'DIGDUG');ag(118392197,'Pacman','/images/games/Pacman/Pacman81x46.gif',0,118454900,'','false','/images/games/Pacman/Pacman16x16.gif',false,11323,'/images/games/Pacman/Pacman100x75.jpg','/images/games/Pacman/Pacman179x135.jpg','/images/games/Pacman/Pacman320x240.jpg','false','/images/games/thumbnails_med_2/Pacman130x75.gif','/exe/pacman_54812339-setup.exe?lc=en&ext=pacman_54812339-setup.exe','Fresh take on classic arcade throwback!','Fresh take on an arcade throwback - brought to your PC!','false',false,false,'Pacman');ag(118393923,'Annie’s Millions','/images/games/AnniesMillions/AnniesMillions81x46.gif',110083820,118455530,'cb7208d2-240a-4922-99a4-c3d6dd4b15c0','false','/images/games/AnniesMillions/AnniesMillions16x16.gif',false,11323,'/images/games/AnniesMillions/AnniesMillions100x75.jpg','/images/games/AnniesMillions/AnniesMillions179x135.jpg','/images/games/AnniesMillions/AnniesMillions320x240.jpg','false','/images/games/thumbnails_med_2/AnniesMillions130x75.gif','','Extreme Seek-and-Find Spending Spree!','Help Annie out-shop her cousins in an extreme seek-and-find spending spree!','true',false,false,'Annies Millions OL AS3');ag(118398860,'National Geographic Traveler: Italy','/images/games/NationalGeographicTravelerItaly/NationalGeographicTravelerItaly81x46.gif',110015873,118461750,'936e85ab-1e6c-4c2b-a5a3-eb4d495d31f8','false','/images/games/NationalGeographicTravelerItaly/NationalGeographicTravelerItaly16x16.gif',false,11323,'/images/games/NationalGeographicTravelerItaly/NationalGeographicTravelerItaly100x75.jpg','/images/games/NationalGeographicTravelerItaly/NationalGeographicTravelerItaly179x135.jpg','/images/games/NationalGeographicTravelerItaly/NationalGeographicTravelerItaly320x240.jpg','false','/images/games/thumbnails_med_2/NationalGeographicTravelerItaly130x75.gif','','Viva Italia with Stunning Photo Puzzles!','Viva Italia with National Geographic photo puzzles and an interactive atlas!  ','true',false,false,'Nat Geo Traveler: Italy OL AS3');ag(118399487,'Farm Frenzy 3: Ice Age','/images/games/FarmFrenzy3IceAge/FarmFrenzy3IceAge81x46.gif',110127790,118462237,'','false','/images/games/FarmFrenzy3IceAge/FarmFrenzy3IceAge16x16.gif',false,11323,'/images/games/FarmFrenzy3IceAge/FarmFrenzy3IceAge100x75.jpg','/images/games/FarmFrenzy3IceAge/FarmFrenzy3IceAge179x135.jpg','/images/games/FarmFrenzy3IceAge/FarmFrenzy3IceAge320x240.jpg','false','/images/games/thumbnails_med_2/FarmFrenzy3IceAge130x75.gif','/exe/Farm_frenzy_3_ice_age_54541284-setup.exe?lc=en&ext=Farm_frenzy_3_ice_age_54541284-setup.exe','Chill Out with Frigid Farming Fun!','Chill out in the North Pole with frigid farming fun!','false',false,false,'Farm Frenzy 3 Ice Age');ag(118400663,'Three Musketeers: Queen Anne&rsquo;s Diamonds','/images/games/MusketeersQueenAnnesDiamonds/MusketeersQueenAnnesDiamonds81x46.gif',0,118463430,'','false','/images/games/MusketeersQueenAnnesDiamonds/MusketeersQueenAnnesDiamonds16x16.gif',false,11323,'/images/games/MusketeersQueenAnnesDiamonds/MusketeersQueenAnnesDiamonds100x75.jpg','/images/games/MusketeersQueenAnnesDiamonds/MusketeersQueenAnnesDiamonds179x135.jpg','/images/games/MusketeersQueenAnnesDiamonds/MusketeersQueenAnnesDiamonds320x240.jpg','false','/images/games/thumbnails_med_2/MusketeersQueenAnnesDiamonds130x75.gif','/exe/musketeers_queen_annes_diamond_87444512-setup.exe?lc=en&ext=musketeers_queen_annes_diamond_87444512-setup.exe','Join the Musketeers and Defend the Queen!','Journey to Paris to join the Musketeers and defend the queen’s honor!','false',false,false,'Musketeers Queen Annes Diamond');ag(118401623,'A Dwarf&rsquo;s Story','/images/games/ADwarfsStory/ADwarfsStory81x46.gif',1007,118464107,'','false','/images/games/ADwarfsStory/ADwarfsStory16x16.gif',false,11323,'/images/games/ADwarfsStory/ADwarfsStory100x75.jpg','/images/games/ADwarfsStory/ADwarfsStory179x135.jpg','/images/games/ADwarfsStory/ADwarfsStory320x240.jpg','false','/images/games/thumbnails_med_2/ADwarfsStory130x75.gif','/exe/a_dwarfs_story_98412254-setup.exe?lc=en&ext=a_dwarfs_story_98412254-setup.exe','Liberate Fellow Dwarves with Match-3 Gaming!','Liberate fellow dwarves and reclaim a stolen pendulum with Match-3 gaming!','false',false,false,'A Dwarfs Story');ag(118402463,'Wolfgang Hohlbeins The Inquisitor','/images/games/WolfgangHohlbeinsTheInquisitor/WolfgangHohlbeinsTheInquisitor81x46.gif',1100710,11846573,'','false','/images/games/WolfgangHohlbeinsTheInquisitor/WolfgangHohlbeinsTheInquisitor16x16.gif',false,11323,'/images/games/WolfgangHohlbeinsTheInquisitor/WolfgangHohlbeinsTheInquisitor100x75.jpg','/images/games/WolfgangHohlbeinsTheInquisitor/WolfgangHohlbeinsTheInquisitor179x135.jpg','/images/games/WolfgangHohlbeinsTheInquisitor/WolfgangHohlbeinsTheInquisitor320x240.jpg','false','/images/games/thumbnails_med_2/WolfgangHohlbeinsTheInquisitor130x75.gif','/exe/wolfgang_hohlbeins_the_inquisitor_91554625-setup.exe?lc=en&ext=wolfgang_hohlbeins_the_inquisitor_91554625-setup.exe','Unmask Secrets within a Mysterious Monastery!','Delve into the secret world of a Middle Ages&rsquo; monastery!','false',false,false,'Wolfgang Hohlbeins The Inquisi');ag(118422513,'Potion Bar ™','/images/games/PotionBarTM/PotionBarTM81x46.gif',1003,118485110,'','false','/images/games/PotionBarTM/PotionBarTM16x16.gif',false,11323,'/images/games/PotionBarTM/PotionBarTM100x75.jpg','/images/games/PotionBarTM/PotionBarTM179x135.jpg','/images/games/PotionBarTM/PotionBarTM320x240.jpg','false','/images/games/thumbnails_med_2/PotionBarTM130x75.gif','/exe/potion_bar_54122326-setup.exe?lc=en&ext=potion_bar_54122326-setup.exe','Create Magical Potions in an Enchanted Bar!','Create magical potions for mystical clients! Protect the Tree of Life!','false',false,false,'Potion Bar');ag(118423697,'Treasure Seekers 2','/images/games/TreasureSeekers2/TreasureSeekers281x46.gif',1100710,118486290,'','false','/images/games/TreasureSeekers2/TreasureSeekers216x16.gif',false,11323,'/images/games/TreasureSeekers2/TreasureSeekers2100x75.jpg','/images/games/TreasureSeekers2/TreasureSeekers2179x135.jpg','/images/games/TreasureSeekers2/TreasureSeekers2320x240.jpg','false','/images/games/thumbnails_med_2/TreasureSeekers2130x75.gif','/exe/treasure_seekers_2_55412354-setup.exe?lc=en&ext=treasure_seekers_2_55412354-setup.exe','Save Nelly&rsquo;s Brother from a Magical Castle!','Help Nelly find and save her brother from a magical castle!','false',false,false,'Treasure Seekers 2');ag(118426443,'Fantastic Farm','/images/games/FantasticFarm/FantasticFarm81x46.gif',110127790,11848970,'','false','/images/games/FantasticFarm/FantasticFarm16x16.gif',false,11323,'/images/games/FantasticFarm/FantasticFarm100x75.jpg','/images/games/FantasticFarm/FantasticFarm179x135.jpg','/images/games/FantasticFarm/FantasticFarm320x240.jpg','false','/images/games/thumbnails_med_2/FantasticFarm130x75.gif','/exe/fantastic_farm_91345422-setup.exe?lc=en&ext=fantastic_farm_91345422-setup.exe','Run Maggie&rsquo;s Magical Farm!','Turn Maggie&rsquo;s magical farm into a prosperous enterprise!','false',false,false,'Fantastic Farm');ag(118429290,'Dream Day Wedding Bella Italia','/images/games/deam_day_wedding_bella_italia/deam_day_wedding_bella_italia81x46.gif',1100710,118492963,'','false','/images/games/deam_day_wedding_bella_italia/deam_day_wedding_bella_italia16x16.gif',false,11323,'/images/games/deam_day_wedding_bella_italia/deam_day_wedding_bella_italia100x75.jpg','/images/games/deam_day_wedding_bella_italia/deam_day_wedding_bella_italia179x135.jpg','/images/games/deam_day_wedding_bella_italia/deam_day_wedding_bella_italia320x240.jpg','false','/images/games/thumbnails_med_2/deam_day_wedding_bella_italia130x75.gif','/exe/dream_day_wedding_4_12344321-setup.exe?lc=en&ext=dream_day_wedding_4_12344321-setup.exe','Immerse yourself in <i>amore!</i>','Immerse yourself in <i>amore</i> as you create the Italian romance of a lifetime!','false',false,false,'Dream Day Wedding 4');ag(118436260,'Wizard Land','/images/games/WizardLand/WizardLand81x46.gif',110083820,118499773,'0dcf5937-768a-4d55-808a-1060bf916df7','false','/images/games/WizardLand/WizardLand16x16.gif',false,11323,'/images/games/WizardLand/WizardLand100x75.jpg','/images/games/WizardLand/WizardLand179x135.jpg','/images/games/WizardLand/WizardLand320x240.jpg','false','/images/games/thumbnails_med_2/WizardLand130x75.gif','','Revive the Mythical Crystal Flower!','Revive the mythical crystal flower with extreme match-3 gameplay!','true',false,false,'Wizard Land OL AS3');ag(118437157,'Joan Jade and the Gates Of Xibalba','/images/games/JoanJadeAndTheGatesOfXibalba/JoanJadeAndTheGatesOfXibalba81x46.gif',1100710,118500563,'','false','/images/games/JoanJadeAndTheGatesOfXibalba/JoanJadeAndTheGatesOfXibalba16x16.gif',false,11323,'/images/games/JoanJadeAndTheGatesOfXibalba/JoanJadeAndTheGatesOfXibalba100x75.jpg','/images/games/JoanJadeAndTheGatesOfXibalba/JoanJadeAndTheGatesOfXibalba179x135.jpg','/images/games/JoanJadeAndTheGatesOfXibalba/JoanJadeAndTheGatesOfXibalba320x240.jpg','false','/images/games/thumbnails_med_2/JoanJadeAndTheGatesOfXibalba130x75.gif','/exe/joan_jade_and_the_gates_of_xibalba_61252332-setup.exe?lc=en&ext=joan_jade_and_the_gates_of_xibalba_61252332-setup.exe','A Mother&rsquo;s Quest in an Ancient Jungle!','A mother&rsquo;s quest among ancient ruins in a dangerous jungle!','false',false,false,'Joan Jade And The Gates Of Xib');ag(118438630,'Incredible Express','/images/games/IncredibleExpress/IncredibleExpress81x46.gif',110127790,118501270,'','false','/images/games/IncredibleExpress/IncredibleExpress16x16.gif',false,11323,'/images/games/IncredibleExpress/IncredibleExpress100x75.jpg','/images/games/IncredibleExpress/IncredibleExpress179x135.jpg','/images/games/IncredibleExpress/IncredibleExpress320x240.jpg','false','/images/games/thumbnails_med_2/IncredibleExpress130x75.gif','/exe/incredible_express_13522121-setup.exe?lc=en&ext=incredible_express_13522121-setup.exe','Construct your Own Railroad Company!','Construct your own railroad company! Connect cities and factories while delivering goods!','false',false,false,'Incredible Express');ag(118439183,'Three Musketeers: Milady’s Vengence','/images/games/MusketeersMiladysVengeance/MusketeersMiladysVengeance81x46.gif',0,118502683,'','false','/images/games/MusketeersMiladysVengeance/MusketeersMiladysVengeance16x16.gif',false,11323,'/images/games/MusketeersMiladysVengeance/MusketeersMiladysVengeance100x75.jpg','/images/games/MusketeersMiladysVengeance/MusketeersMiladysVengeance179x135.jpg','/images/games/MusketeersMiladysVengeance/MusketeersMiladysVengeance320x240.jpg','false','/images/games/thumbnails_med_2/MusketeersMiladysVengeance130x75.gif','/exe/musketeers_miladys_vengence_89551477-setup.exe?lc=en&ext=musketeers_miladys_vengence_89551477-setup.exe','Join the Musketeers and Defend the Queen!','Journey to Paris to join the Musketeers and defend the queen’s honor!','false',false,false,'Musketeers Miladys Vengence');ag(118445887,'Hidden Object Heroes Bundle','/images/games/hidden_object_heroes_bundle/hidden_object_heroes_bundle81x46.gif',1000,11850843,'','false','/images/games/hidden_object_heroes_bundle/hidden_object_heroes_bundle16x16.gif',false,11323,'/images/games/hidden_object_heroes_bundle/hidden_object_heroes_bundle100x75.jpg','/images/games/hidden_object_heroes_bundle/hidden_object_heroes_bundle179x135.jpg','/images/games/hidden_object_heroes_bundle/hidden_object_heroes_bundle320x240.jpg','false','/images/games/thumbnails_med_2/hidden_object_heroes_bundle130x75.gif','/exe/hidden_object_heroes_bundle_45487842-setup.exe?lc=en&ext=hidden_object_heroes_bundle_45487842-setup.exe','Legendary Seek-and-finds with Epic Heroes!','Legendary seek-and-finds with epic heroes - three games in one!','false',false,false,'Hidden Object Heroes Bundle');ag(118446810,'Magic and Mystery Bundle - 3 in 1','/images/games/magic_mystery_and_adventure_bundle/magic_mystery_and_adventure_bundle81x46.gif',1100710,118509920,'','false','/images/games/magic_mystery_and_adventure_bundle/magic_mystery_and_adventure_bundle16x16.gif',false,11323,'/images/games/magic_mystery_and_adventure_bundle/magic_mystery_and_adventure_bundle100x75.jpg','/images/games/magic_mystery_and_adventure_bundle/magic_mystery_and_adventure_bundle179x135.jpg','/images/games/magic_mystery_and_adventure_bundle/magic_mystery_and_adventure_bundle320x240.jpg','false','/images/games/thumbnails_med_2/magic_mystery_and_adventure_bundle130x75.gif','/exe/magic_mystery_and_adventure_bundle_65465510-setup.exe?lc=en&ext=magic_mystery_and_adventure_bundle_65465510-setup.exe','Explore Distant and Unknown Lands!','Explore distant and unknown lands! 3 games in 1!','false',false,false,'Magic Mystery and Adventure Bu');ag(118447723,'Simplz Zoo','/images/games/SimplzZoo/SimplzZoo81x46.gif',0,118510630,'','false','/images/games/SimplzZoo/SimplzZoo16x16.gif',false,11323,'/images/games/SimplzZoo/SimplzZoo100x75.jpg','/images/games/SimplzZoo/SimplzZoo179x135.jpg','/images/games/SimplzZoo/SimplzZoo320x240.jpg','false','/images/games/thumbnails_med_2/SimplzZoo130x75.gif','/exe/simplz_zoo_83479927-setup.exe?lc=en&ext=simplz_zoo_83479927-setup.exe','Create and Manage your Own Zoo!','Create and manage your very own zoo with simulation and match-3 gaming!','false',false,false,'Simplz Zoo');ag(118448993,'Settlement Colossus','/images/games/SettlementColossus/SettlementColossus81x46.gif',0,118511840,'','false','/images/games/SettlementColossus/SettlementColossus16x16.gif',false,11323,'/images/games/SettlementColossus/SettlementColossus100x75.jpg','/images/games/SettlementColossus/SettlementColossus179x135.jpg','/images/games/SettlementColossus/SettlementColossus320x240.jpg','false','/images/games/thumbnails_med_2/SettlementColossus130x75.gif','/exe/settlement_colossus_84791132-setup.exe?lc=en&ext=settlement_colossus_84791132-setup.exe','Build an empire!','Build an empire out of its grass hut roots!','false',false,false,'Settlement Colossus');ag(118451570,'3 Days Zoo Mystery','/images/games/3daysZooMystery/3daysZooMystery81x46.gif',1100710,118514663,'','false','/images/games/3daysZooMystery/3daysZooMystery16x16.gif',false,11323,'/images/games/3daysZooMystery/3daysZooMystery100x75.jpg','/images/games/3daysZooMystery/3daysZooMystery179x135.jpg','/images/games/3daysZooMystery/3daysZooMystery320x240.jpg','false','/images/games/thumbnails_med_2/3daysZooMystery130x75.gif','/exe/3_days_zoo_mystery_65465521-setup.exe?lc=en&ext=3_days_zoo_mystery_65465521-setup.exe','Track the Animal Thief!','Solve riddles and search for evidence to track the animal thief!','false',false,false,'3 Days Zoo Mystery');ag(118456100,'Picma','/images/games/Picma/Picma81x46.gif',110082753,1185197,'ed33de11-30d9-42bc-bc32-b06e31bd182a','false','/images/games/Picma/Picma16x16.gif',false,11323,'/images/games/Picma/Picma100x75.jpg','/images/games/Picma/Picma179x135.jpg','/images/games/Picma/Picma320x240.jpg','false','/images/games/thumbnails_med_2/Picma130x75.gif','','Reveal a hidden picture!','Flex your logic muscles to solve over 100 Griddlers!','true',false,false,'Picma OL AS3');ag(118457350,'Plan it Green','/images/games/plan_it_green/plan_it_green81x46.gif',110083820,118520297,'13c781be-9e26-442c-b778-f9979078fceb','false','/images/games/plan_it_green/plan_it_green16x16.gif',false,11323,'/images/games/plan_it_green/plan_it_green100x75.jpg','/images/games/plan_it_green/plan_it_green179x135.jpg','/images/games/plan_it_green/plan_it_green320x240.jpg','false','/images/games/thumbnails_med_2/plan_it_green130x75.gif','','Create a Thriving, Eco-friendly Community!  ','Transform a burnt-out industrial town into a thriving, eco-friendly community!','true',false,false,'Plan it Green OL');ag(118458467,'Herod’s Lost Tomb ©','/images/games/herods_lost_tomb/herods_lost_tomb81x46.gif',110083820,118521393,'e283d202-f49b-4d41-a354-709af9ba1742','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','','An exciting archaeological adventure!','Embark on an exciting archaeological adventure in this hidden-object game!','true',false,false,'Herods Lost Tomb OL');ag(118461717,'Virtual Farm','/images/games/VirtualFarm/VirtualFarm81x46.gif',110083820,118524690,'9c841114-6cd6-4cbe-af1e-426c21d23bc8','false','/images/games/VirtualFarm/VirtualFarm16x16.gif',false,11323,'/images/games/VirtualFarm/VirtualFarm100x75.jpg','/images/games/VirtualFarm/VirtualFarm179x135.jpg','/images/games/VirtualFarm/VirtualFarm320x240.jpg','false','/images/games/thumbnails_med_2/VirtualFarm130x75.gif','','Grow and sell produce! ','Manage a farm, monitor demand, and take your goods to market! ','true',false,false,'Virtual Farm OL AS3');ag(118462843,'Farm Frenzy 3: American Pie','/images/games/FarmFrenzy3AmericanPie/FarmFrenzy3AmericanPie81x46.gif',110083820,118525797,'20284f6b-41c2-496e-ba7e-07f12187b2cf','false','/images/games/FarmFrenzy3AmericanPie/FarmFrenzy3AmericanPie16x16.gif',false,11323,'/images/games/FarmFrenzy3AmericanPie/FarmFrenzy3AmericanPie100x75.jpg','/images/games/FarmFrenzy3AmericanPie/FarmFrenzy3AmericanPie179x135.jpg','/images/games/FarmFrenzy3AmericanPie/FarmFrenzy3AmericanPie320x240.jpg','false','/images/games/thumbnails_med_2/FarmFrenzy3AmericanPie130x75.gif','/exe/farm_frenzy_3_24351997-setup.exe?lc=en&ext=farm_frenzy_3_24351997-setup.exe','Harvest the Land with Robot Workers!','Join Scarlett as she puts robots to work down on the farm!','true',false,false,'Farm Frenzy 3: AP OL AS3');ag(118464810,'Hidden Expedition Devils Triangle','/images/games/HiddenExpeditionDevilsTriangle/HiddenExpeditionDevilsTriangle81x46.gif',1100710,118527477,'','false','/images/games/HiddenExpeditionDevilsTriangle/HiddenExpeditionDevilsTriangle16x16.gif',false,11323,'/images/games/HiddenExpeditionDevilsTriangle/HiddenExpeditionDevilsTriangle100x75.jpg','/images/games/HiddenExpeditionDevilsTriangle/HiddenExpeditionDevilsTriangle179x135.jpg','/images/games/HiddenExpeditionDevilsTriangle/HiddenExpeditionDevilsTriangle320x240.jpg','false','/images/games/thumbnails_med_2/HiddenExpeditionDevilsTriangle130x75.gif','/exe/hidden_expedition_devils_triangle_93848843-setup.exe?lc=en&ext=hidden_expedition_devils_triangle_93848843-setup.exe','Solve Mysteries on a Treacherous Island!','Solve the mysteries behind a missing pilot on treacherous Devil&rsquo;s Island!','false',false,false,'Hidden Expedition Devils Trian');ag(118465353,'Waldo','/images/games/Waldo/Waldo81x46.gif',1100710,11852860,'','false','/images/games/Waldo/Waldo16x16.gif',false,11323,'/images/games/Waldo/Waldo100x75.jpg','/images/games/Waldo/Waldo179x135.jpg','/images/games/Waldo/Waldo320x240.jpg','false','/images/games/thumbnails_med_2/Waldo130x75.gif','/exe/waldo_11850397-setup.exe?lc=en&ext=waldo_11850397-setup.exe','Where&rsquo;s Waldo?','A fantastic adventure through wondrous worlds in search of Waldo!','false',false,false,'Waldo');ag(118467603,'Farm Mania 2','/images/games/FarmMania2/FarmMania281x46.gif',110127790,118530283,'','false','/images/games/FarmMania2/FarmMania216x16.gif',false,11323,'/images/games/FarmMania2/FarmMania2100x75.jpg','/images/games/FarmMania2/FarmMania2179x135.jpg','/images/games/FarmMania2/FarmMania2320x240.jpg','false','/images/games/thumbnails_med_2/FarmMania2130x75.gif','/exe/farm_mania_2_84731137-setup.exe?lc=en&ext=farm_mania_2_84731137-setup.exe','Anna Returns for More Farming Fun!','Anna returns for more farming fun with her charming husband Bob!','false',false,false,'Farm Mania 2');ag(118468350,'Jewel Charm','/images/games/JewelCharm/JewelCharm81x46.gif',1007,11853153,'','false','/images/games/JewelCharm/JewelCharm16x16.gif',false,11323,'/images/games/JewelCharm/JewelCharm100x75.jpg','/images/games/JewelCharm/JewelCharm179x135.jpg','/images/games/JewelCharm/JewelCharm320x240.jpg','false','/images/games/thumbnails_med_2/JewelCharm130x75.gif','/exe/jewel_charm_11847433-setup.exe?lc=en&ext=jewel_charm_11847433-setup.exe','Design Dazzling Jewelry for a Princess&rsquo;s Wedding!','Design dazzling jewelry for a princess&rsquo;s wedding by mastering royally addictive puzzles!','false',false,false,'Jewel Charm');ag(118469257,'Hidden Identity Chicago Blackout','/images/games/HiddenIdentityChicagoBlackout/HiddenIdentityChicagoBlackout81x46.gif',1100710,118532960,'','false','/images/games/HiddenIdentityChicagoBlackout/HiddenIdentityChicagoBlackout16x16.gif',false,11323,'/images/games/HiddenIdentityChicagoBlackout/HiddenIdentityChicagoBlackout100x75.jpg','/images/games/HiddenIdentityChicagoBlackout/HiddenIdentityChicagoBlackout179x135.jpg','/images/games/HiddenIdentityChicagoBlackout/HiddenIdentityChicagoBlackout320x240.jpg','false','/images/games/thumbnails_med_2/HiddenIdentityChicagoBlackout130x75.gif','/exe/hidden_identity_chicago_blackout_99884747-setup.exe?lc=en&ext=hidden_identity_chicago_blackout_99884747-setup.exe','Piece Together Your Lost Identity!','Piece together your lost identity after waking with amnesia in a seedy hotel!','false',false,false,'Hidden Identity Chicago Blacko');ag(118475720,'Green Moon','/images/games/GreenMoon/GreenMoon81x46.gif',1003,118538330,'','false','/images/games/GreenMoon/GreenMoon16x16.gif',false,11323,'/images/games/GreenMoon/GreenMoon100x75.jpg','/images/games/GreenMoon/GreenMoon179x135.jpg','/images/games/GreenMoon/GreenMoon320x240.jpg','false','/images/games/thumbnails_med_2/GreenMoon130x75.gif','/exe/green_moon_38489927-setup.exe?lc=en&ext=green_moon_38489927-setup.exe','A Magical, Captivating Adventure!','You&rsquo;re given the keys to enchantment in this magical, captivating adventure!','false',false,false,'Green Moon');ag(118476697,'Da Vinci','/images/games/DaVinci/DaVinci81x46.gif',110083820,118539390,'8a6ed9f4-a089-424b-942a-ef8df738b37e','false','/images/games/DaVinci/DaVinci16x16.gif',false,11323,'/images/games/DaVinci/DaVinci100x75.jpg','/images/games/DaVinci/DaVinci179x135.jpg','/images/games/DaVinci/DaVinci320x240.jpg','false','/images/games/thumbnails_med_2/DaVinci130x75.gif','','Remove all cards!','Find cards that are higher or lower than the card on the deck!','true',true,true,'Da Vinci OLT1 AS3');ag(118492570,'Magic','/images/games/magic/magic81x46.gif',110083820,118555917,'b00a60ab-8e18-48b4-8623-e344cc0efa0e','false','/images/games/magic/magic16x16.gif',false,11323,'/images/games/magic/magic100x75.jpg','/images/games/magic/magic179x135.jpg','/images/games/magic/magic320x240.jpg','false','/images/games/thumbnails_med_2/magic130x75.gif','','Remove the specified number of Icons!','The aim of the game is to remove the specified number of Icons!','true',true,true,'Magic OLT1 AS3');ag(118494417,'Atlantis','/images/games/Atlantis/Atlantis81x46.gif',110083820,118557123,'c79c2209-d503-4ce8-88ce-1303d93c9c70','false','/images/games/Atlantis/Atlantis16x16.gif',false,11323,'/images/games/Atlantis/Atlantis100x75.jpg','/images/games/Atlantis/Atlantis179x135.jpg','/images/games/Atlantis/Atlantis320x240.jpg','false','/images/games/thumbnails_med_2/Atlantis130x75.gif','','Collect the golden plates!','Collect the golden plates by removing regions of equally colored crystals!','true',true,true,'Atlantis OLT1 AS3');ag(118495940,'Annie&rsquo;s Millions','/images/games/annies_millions/annies_millions81x46.gif',1100710,118558870,'','false','/images/games/annies_millions/annies_millions16x16.gif',false,11323,'/images/games/annies_millions/annies_millions100x75.jpg','/images/games/annies_millions/annies_millions179x135.jpg','/images/games/annies_millions/annies_millions320x240.jpg','false','/images/games/thumbnails_med_2/annies_millions130x75.gif','/exe/annies_millions_54369720-setup.exe?lc=en&ext=annies_millions_54369720-setup.exe','Extreme Seek-and-Find Spending Spree!','Help Annie out-shop her cousins in an extreme seek-and-find spending spree!','false',false,false,'Annies Millions Network');ag(118503620,'Mind&rsquo;s Eye: Secrets of the Forgotten','/images/games/MindsEyeTheSecretsOfForgotten/MindsEyeTheSecretsOfForgotten81x46.gif',1100710,118566273,'','false','/images/games/MindsEyeTheSecretsOfForgotten/MindsEyeTheSecretsOfForgotten16x16.gif',false,11323,'/images/games/MindsEyeTheSecretsOfForgotten/MindsEyeTheSecretsOfForgotten100x75.jpg','/images/games/MindsEyeTheSecretsOfForgotten/MindsEyeTheSecretsOfForgotten179x135.jpg','/images/games/MindsEyeTheSecretsOfForgotten/MindsEyeTheSecretsOfForgotten320x240.jpg','false','/images/games/thumbnails_med_2/MindsEyeTheSecretsOfForgotten130x75.gif','/exe/minds_eye_secrets_of_forgotten_65464411-setup.exe?lc=en&ext=minds_eye_secrets_of_forgotten_65464411-setup.exe','Unforgettable Journey into the Subconscious!','Follow sleuthing journalist Gabrielle on an unforgettable journey into the subconscious!','false',false,false,'Minds Eye The Secrets Of Forgo');ag(118504153,'Hidden Mysteries Buckingham','/images/games/HiddenMysteriesBuckingham/HiddenMysteriesBuckingham81x46.gif',1100710,118567853,'','false','/images/games/HiddenMysteriesBuckingham/HiddenMysteriesBuckingham16x16.gif',false,11323,'/images/games/HiddenMysteriesBuckingham/HiddenMysteriesBuckingham100x75.jpg','/images/games/HiddenMysteriesBuckingham/HiddenMysteriesBuckingham179x135.jpg','/images/games/HiddenMysteriesBuckingham/HiddenMysteriesBuckingham320x240.jpg','false','/images/games/thumbnails_med_2/HiddenMysteriesBuckingham130x75.gif','/exe/hidden_mysteries_buckingham_98754221-setup.exe?lc=en&ext=hidden_mysteries_buckingham_98754221-setup.exe','Unveil Secrets of Royal Treasure!','Unveil secrets of regal treasures and royal romance!','false',false,false,'Hidden Mysteries Buckingham');ag(118506837,'Wonderburg','/images/games/wonderburg/wonderburg81x46.gif',1007,118569540,'','false','/images/games/wonderburg/wonderburg16x16.gif',false,11323,'/images/games/wonderburg/wonderburg100x75.jpg','/images/games/wonderburg/wonderburg179x135.jpg','/images/games/wonderburg/wonderburg320x240.jpg','false','/images/games/thumbnails_med_2/wonderburg130x75.gif','/exe/wonderburg_56118441-setup.exe?lc=en&ext=wonderburg_56118441-setup.exe','Rebuild a Destroyed, Magical World!','Help a magician and gnome rebuild their destroyed, magical world!','false',false,false,'Wonderburg');ag(118509867,'Battle Dice','/images/games/BattleDice/BattleDice81x46.gif',110083820,118572543,'93a065ae-1e64-4c73-878e-9ef2402933f4','false','/images/games/BattleDice/BattleDice16x16.gif',false,11323,'/images/games/BattleDice/BattleDice100x75.jpg','/images/games/BattleDice/BattleDice179x135.jpg','/images/games/BattleDice/BattleDice320x240.jpg','false','/images/games/thumbnails_med_2/BattleDice130x75.gif','','Be first to reach the target score!','Be the first to reach the target score of 10.000 points!','true',true,true,'Battle Dice OLT1 AS3');ag(118510450,'Nick Chase: A Detective Story','/images/games/NickChaseADetectiveStory/NickChaseADetectiveStory81x46.gif',1007,118573120,'','false','/images/games/NickChaseADetectiveStory/NickChaseADetectiveStory16x16.gif',false,11323,'/images/games/NickChaseADetectiveStory/NickChaseADetectiveStory100x75.jpg','/images/games/NickChaseADetectiveStory/NickChaseADetectiveStory179x135.jpg','/images/games/NickChaseADetectiveStory/NickChaseADetectiveStory320x240.jpg','false','/images/games/thumbnails_med_2/NickChaseADetectiveStory130x75.gif','/exe/nick_chase_a_detective_story_71228611-setup.exe?lc=en&ext=nick_chase_a_detective_story_71228611-setup.exe','Crack the Case as a Gritty P.I.!','Solve puzzles and find clues to crack the case as Nick Chase, P.I.!','false',false,false,'Nick Chase A Detective Story');ag(118511483,'Newton','/images/games/Newton/Newton81x46.gif',110083820,118574130,'91943a38-3c12-42bc-b9c8-4b5206d260be','false','/images/games/Newton/Newton16x16.gif',false,11323,'/images/games/Newton/Newton100x75.jpg','/images/games/Newton/Newton179x135.jpg','/images/games/Newton/Newton320x240.jpg','false','/images/games/thumbnails_med_2/Newton130x75.gif','','Place the fish tin on Newton’s Box!','Place the fish tin on Newton’s Box by removing all the other boxes!','true',true,true,'Newton OLT1 AS3');ag(118512173,'Elements','/images/games/elements/elements81x46.gif',110083820,118575863,'b0d10037-aba6-4c4d-9b9b-74b10eb420b1','false','/images/games/elements/elements16x16.gif',false,11323,'/images/games/elements/elements100x75.jpg','/images/games/elements/elements179x135.jpg','/images/games/elements/elements320x240.jpg','false','/images/games/thumbnails_med_2/elements130x75.gif','','Fill the board with your stones!','Fill the board with more stones of your color than your opponent!','true',true,true,'Elements OLT1 AS3');ag(118513483,'Horror Haunt','/images/games/HorrorHaunt/HorrorHaunt81x46.gif',110083820,118576153,'597f00e7-6d39-4c4a-b620-eda81e057dfe','false','/images/games/HorrorHaunt/HorrorHaunt16x16.gif',false,11323,'/images/games/HorrorHaunt/HorrorHaunt100x75.jpg','/images/games/HorrorHaunt/HorrorHaunt179x135.jpg','/images/games/HorrorHaunt/HorrorHaunt320x240.jpg','false','/images/games/thumbnails_med_2/HorrorHaunt130x75.gif','','Find pairs of equal icons!','Find pairs of equal icons!','true',true,true,'Horror Haunt OLT1 AS3');ag(118514767,'Youda Fairy','/images/games/YoudaFairy/YoudaFairy81x46.gif',110127790,118577433,'','false','/images/games/YoudaFairy/YoudaFairy16x16.gif',false,11323,'/images/games/YoudaFairy/YoudaFairy100x75.jpg','/images/games/YoudaFairy/YoudaFairy179x135.jpg','/images/games/YoudaFairy/YoudaFairy320x240.jpg','false','/images/games/thumbnails_med_2/YoudaFairy130x75.gif','/exe/youda_fairy_89511235-setup.exe?lc=en&ext=youda_fairy_89511235-setup.exe','Cast Spells and Free the Forest Kingdom!','Cast spells and free the forest kingdom of the evil witch!','false',false,false,'Youda Fairy');ag(118517973,'Goodie Bag Bundle - 3 in 1','/images/games/Goodie_Bag_Bundle/Goodie_Bag_Bundle81x46.gif',1007,118581667,'','false','/images/games/Goodie_Bag_Bundle/Goodie_Bag_Bundle16x16.gif',false,11323,'/images/games/Goodie_Bag_Bundle/Goodie_Bag_Bundle100x75.jpg','/images/games/Goodie_Bag_Bundle/Goodie_Bag_Bundle179x135.jpg','/images/games/Goodie_Bag_Bundle/Goodie_Bag_Bundle320x240.jpg','false','/images/games/thumbnails_med_2/Goodie_Bag_Bundle130x75.gif','/exe/goodie_bag_bundle_24698740-setup.exe?lc=en&ext=goodie_bag_bundle_24698740-setup.exe','Variety Pack of Addictive Adventures!','Variety pack of addictive adventures - 3 games, 1 download, 50% off!','false',false,false,'Goodie Bundle');ag(118518970,'99 Bricks','/images/games/99Bricks/99Bricks81x46.gif',110082753,118582610,'31e710e1-a4ca-43c5-91ad-ff6292ddaf7f','false','/images/games/99Bricks/99Bricks16x16.gif',false,11323,'/images/games/99Bricks/99Bricks100x75.jpg','/images/games/99Bricks/99Bricks179x135.jpg','/images/games/99Bricks/99Bricks320x240.jpg','false','/images/games/thumbnails_med_2/99Bricks130x75.gif','','Build the highest tower!','Build the highest tower with 99 Bricks at your disposal!','true',true,true,'99 Bricks OLT1 AS3');ag(118520203,'Bavarian Quarters','/images/games/BavarianQuarters/BavarianQuarters81x46.gif',110083820,118584800,'803b369f-4f33-41ab-baa2-d038f6f035e4','false','/images/games/BavarianQuarters/BavarianQuarters16x16.gif',false,11323,'/images/games/BavarianQuarters/BavarianQuarters100x75.jpg','/images/games/BavarianQuarters/BavarianQuarters179x135.jpg','/images/games/BavarianQuarters/BavarianQuarters320x240.jpg','false','/images/games/thumbnails_med_2/BavarianQuarters130x75.gif','','Throw the coin into the beer glass!','Throw the coin into the beer glass as often as possible!','true',true,true,'Bavarian Quarters OLT1 AS3');ag(118521863,'Mortimer Beckett and the Time Paradox','/images/games/MortimerBeckettandtheTimeParadox/MortimerBeckettandtheTimeParadox81x46.gif',110015873,118585793,'7ae11f9e-04f2-463d-85d5-34ae34d20d9f','false','/images/games/MortimerBeckettandtheTimeParadox/MortimerBeckettandtheTimeParadox16x16.gif',false,11323,'/images/games/MortimerBeckettandtheTimeParadox/MortimerBeckettandtheTimeParadox100x75.jpg','/images/games/MortimerBeckettandtheTimeParadox/MortimerBeckettandtheTimeParadox179x135.jpg','/images/games/MortimerBeckettandtheTimeParadox/MortimerBeckettandtheTimeParadox320x240.jpg','false','/images/games/thumbnails_med_2/MortimerBeckettandtheTimeParadox130x75.gif','','Travel through eight eras in time!','Close a time portal in this wild adventure through eight eras!','true',false,false,'Mortimer Beckett Time Paradox');ag(118522773,'Asamis Sushi Shop','/images/games/AsamisSushiShop/AsamisSushiShop81x46.gif',1007,118586463,'','false','/images/games/AsamisSushiShop/AsamisSushiShop16x16.gif',false,11323,'/images/games/AsamisSushiShop/AsamisSushiShop100x75.jpg','/images/games/AsamisSushiShop/AsamisSushiShop179x135.jpg','/images/games/AsamisSushiShop/AsamisSushiShop320x240.jpg','false','/images/games/thumbnails_med_2/AsamisSushiShop130x75.gif','/exe/asamis_sushi_shop_78115452-setup.exe?lc=en&ext=asamis_sushi_shop_78115452-setup.exe','Master Sushi Making!','Master the art of sushi and carry on the family tradition!','false',false,false,'Asamis Sushi Shop');ag(118524340,'Epic Adventures: La Jangada','/images/games/EpicAdventuresLaJangada/EpicAdventuresLaJangada81x46.gif',1100710,11858837,'','false','/images/games/EpicAdventuresLaJangada/EpicAdventuresLaJangada16x16.gif',false,11323,'/images/games/EpicAdventuresLaJangada/EpicAdventuresLaJangada100x75.jpg','/images/games/EpicAdventuresLaJangada/EpicAdventuresLaJangada179x135.jpg','/images/games/EpicAdventuresLaJangada/EpicAdventuresLaJangada320x240.jpg','false','/images/games/thumbnails_med_2/EpicAdventuresLaJangada130x75.gif','/exe/epic_adventures_la_jangada_59665951-setup.exe?lc=en&ext=epic_adventures_la_jangada_59665951-setup.exe','Search Jangada and Save Minha’s Father!','Help Minha save her father in an epic adventure of romance and mystery!','false',false,false,'Epic Adventures La Jangada');ag(118525977,'Super Granny 5','/images/games/SuperGranny5/SuperGranny581x46.gif',1003,118589593,'','false','/images/games/SuperGranny5/SuperGranny516x16.gif',false,11323,'/images/games/SuperGranny5/SuperGranny5100x75.jpg','/images/games/SuperGranny5/SuperGranny5179x135.jpg','/images/games/SuperGranny5/SuperGranny5320x240.jpg','false','/images/games/thumbnails_med_2/SuperGranny5130x75.gif','/exe/super_granny_5_11238155-setup.exe?lc=en&ext=super_granny_5_11238155-setup.exe','Ultimate Backyard Adventure for Shrunken Granny!','Super Granny, struck by a shrink-ray, returns in the ultimate backyard adventure!','false',false,false,'Super Granny 5');ag(118528543,'Cassandra&rsquo;s Journey Legacy','/images/games/CassandrasJourneyLegacy/CassandrasJourneyLegacy81x46.gif',1100710,118592257,'','false','/images/games/CassandrasJourneyLegacy/CassandrasJourneyLegacy16x16.gif',false,11323,'/images/games/CassandrasJourneyLegacy/CassandrasJourneyLegacy100x75.jpg','/images/games/CassandrasJourneyLegacy/CassandrasJourneyLegacy179x135.jpg','/images/games/CassandrasJourneyLegacy/CassandrasJourneyLegacy320x240.jpg','false','/images/games/thumbnails_med_2/CassandrasJourneyLegacy130x75.gif','/exe/cassandras_journey_legacy_59123384-setup.exe?lc=en&ext=cassandras_journey_legacy_59123384-setup.exe','Find Cassandra&rsquo;s Missing Ring!','Find Cassandra&rsquo;s missing ring and unearth her family&rsquo;s secrets!','false',false,false,'Cassandras Journey Legacy');ag(118531567,'Curse of the Pharaoh 2','/images/games/CurseofthePharaoh2/CurseofthePharaoh281x46.gif',1100710,118595227,'','false','/images/games/CurseofthePharaoh2/CurseofthePharaoh216x16.gif',false,11323,'/images/games/CurseofthePharaoh2/CurseofthePharaoh2100x75.jpg','/images/games/CurseofthePharaoh2/CurseofthePharaoh2179x135.jpg','/images/games/CurseofthePharaoh2/CurseofthePharaoh2320x240.jpg','false','/images/games/thumbnails_med_2/CurseofthePharaoh2130x75.gif','/exe/curse_of_the_pharaoh_2_45491223-setup.exe?lc=en&ext=curse_of_the_pharaoh_2_45491223-setup.exe','Help Archaeologist Anna Break the Ancient Curse!','Help archaeologist Anna unravel a mystery and break the ancient curse!','false',false,false,'Curse of the Pharaoh 2');ag(118532140,'Heartwild Solitaire Book Two','/images/games/HeartwildSolitaireBookTwo/HeartwildSolitaireBookTwo81x46.gif',1004,118596820,'','false','/images/games/HeartwildSolitaireBookTwo/HeartwildSolitaireBookTwo16x16.gif',false,11323,'/images/games/HeartwildSolitaireBookTwo/HeartwildSolitaireBookTwo100x75.jpg','/images/games/HeartwildSolitaireBookTwo/HeartwildSolitaireBookTwo179x135.jpg','/images/games/HeartwildSolitaireBookTwo/HeartwildSolitaireBookTwo320x240.jpg','false','/images/games/thumbnails_med_2/HeartwildSolitaireBookTwo130x75.gif','/exe/heartwild_solitaire_book_2_81226942-setup.exe?lc=en&ext=heartwild_solitaire_book_2_81226942-setup.exe','Classic Solitaire Meets Lust and Revenge!','Classic solitaire gaming meets lust, romance, and revenge!','false',false,false,'Heartwild Solitaire Book 2');ag(118534117,'Penny Dreadfuls: Sweeney Todd','/images/games/PennyDreadfulsSweeneyTodd/PennyDreadfulsSweeneyTodd81x46.gif',1100710,118598290,'','false','/images/games/PennyDreadfulsSweeneyTodd/PennyDreadfulsSweeneyTodd16x16.gif',false,11323,'/images/games/PennyDreadfulsSweeneyTodd/PennyDreadfulsSweeneyTodd100x75.jpg','/images/games/PennyDreadfulsSweeneyTodd/PennyDreadfulsSweeneyTodd179x135.jpg','/images/games/PennyDreadfulsSweeneyTodd/PennyDreadfulsSweeneyTodd320x240.jpg','false','/images/games/thumbnails_med_2/PennyDreadfulsSweeneyTodd130x75.gif','/exe/penny_dreadfuls_sweeney_todd_12333516-setup.exe?lc=en&ext=penny_dreadfuls_sweeney_todd_12333516-setup.exe','Capture London’s Murderous Barber!','Uncover the grisly secrets of London’s murderous barber!','false',false,false,'Sweeney Todd Standard');ag(118535570,'Youda Marina','/images/games/YoudaMarina/YoudaMarina81x46.gif',110083820,118599483,'25297bba-7948-4aa0-93a7-78d18df09e35','false','/images/games/YoudaMarina/YoudaMarina16x16.gif',false,11323,'/images/games/YoudaMarina/YoudaMarina100x75.jpg','/images/games/YoudaMarina/YoudaMarina179x135.jpg','/images/games/YoudaMarina/YoudaMarina320x240.jpg','false','/images/games/thumbnails_med_2/YoudaMarina130x75.gif','','Create and Operate a Tropical Marina!','Create and operate your own tropical marina with restaurants, resorts, and exotic ecursions!','true',false,false,'Youda Marina OL AS3');ag(118536153,'Farm Mania','/images/games/farmmania/farmmania81x46.gif',110083820,118600103,'96f6ba17-2f6f-4ac6-9ba7-030734114eab','false','/images/games/farmmania/farmmania16x16.gif',false,11323,'/images/games/farmmania/farmmania100x75.jpg','/images/games/farmmania/farmmania179x135.jpg','/images/games/farmmania/farmmania320x240.jpg','false','/images/games/thumbnails_med_2/farmmania130x75.gif','','Manage the Farm of your Dreams!','Help Anna manage the crops, animals, and exports of her grandfather’s farm!','true',false,false,'Farm Mania OL');ag(118539597,'Reincarnations','/images/games/Reincarnations/Reincarnations81x46.gif',1100710,118603213,'','false','/images/games/Reincarnations/Reincarnations16x16.gif',false,11323,'/images/games/Reincarnations/Reincarnations100x75.jpg','/images/games/Reincarnations/Reincarnations179x135.jpg','/images/games/Reincarnations/Reincarnations320x240.jpg','false','/images/games/thumbnails_med_2/Reincarnations130x75.gif','/exe/reincarnations_69122541-setup.exe?lc=en&ext=reincarnations_69122541-setup.exe','Explore Jane&rsquo;s Past Lives!','Help Jane explore her past lives and write an award-winning story!','false',false,false,'Reincarnations');ag(118540450,'Aveyond: The Lost Orb','/images/games/AveyondTheLostOrb/AveyondTheLostOrb81x46.gif',0,11860487,'','false','/images/games/AveyondTheLostOrb/AveyondTheLostOrb16x16.gif',false,11323,'/images/games/AveyondTheLostOrb/AveyondTheLostOrb100x75.jpg','/images/games/AveyondTheLostOrb/AveyondTheLostOrb179x135.jpg','/images/games/AveyondTheLostOrb/AveyondTheLostOrb320x240.jpg','false','/images/games/thumbnails_med_2/AveyondTheLostOrb130x75.gif','/exe/aveyond_the_lost_orb_91223781-setup.exe?lc=en&ext=aveyond_the_lost_orb_91223781-setup.exe','Find Mel&rsquo;s Fiance and the Lost Orb!','Help Mel find her fiance and Lost Orb before evil does!','false',false,false,'Aveyond The Lost Orb');ag(118714443,'Jane&rsquo;s Zoo','/images/games/JanesZoo/JanesZoo81x46.gif',110127790,11877823,'','false','/images/games/JanesZoo/JanesZoo16x16.gif',false,11323,'/images/games/JanesZoo/JanesZoo100x75.jpg','/images/games/JanesZoo/JanesZoo179x135.jpg','/images/games/JanesZoo/JanesZoo320x240.jpg','false','/images/games/thumbnails_med_2/JanesZoo130x75.gif','/exe/janes_zoo_65451217-setup.exe?lc=en&ext=janes_zoo_65451217-setup.exe','Save Endangered Animals Around the World!','Travel the world with Jane to save wild, endangered animals!','false',false,false,'Janes Zoo');ag(118716773,'Deadtime Stories','/images/games/DeadtimeStories/DeadtimeStories81x46.gif',1100710,118780200,'','false','/images/games/DeadtimeStories/DeadtimeStories16x16.gif',false,11323,'/images/games/DeadtimeStories/DeadtimeStories100x75.jpg','/images/games/DeadtimeStories/DeadtimeStories179x135.jpg','/images/games/DeadtimeStories/DeadtimeStories320x240.jpg','false','/images/games/thumbnails_med_2/DeadtimeStories130x75.gif','/exe/deadtime_stories_63254165-setup.exe?lc=en&ext=deadtime_stories_63254165-setup.exe','Leave the light on…','Sinister thrills await you in this tale of voodoo and unspeakable secrets!','false',false,false,'Deadtime Stories');ag(118717807,'Jane&rsquo;s Hotel','/images/games/JanesHotel/JanesHotel81x46.gif',110083820,118781727,'b2654fc1-6b92-475a-a9e2-b485b6c115c0','false','/images/games/JanesHotel/JanesHotel16x16.gif',false,11323,'/images/games/JanesHotel/JanesHotel100x75.jpg','/images/games/JanesHotel/JanesHotel179x135.jpg','/images/games/JanesHotel/JanesHotel320x240.jpg','false','/images/games/thumbnails_med_2/JanesHotel130x75.gif','','Manage a 5-star luxury hotel! ','Transform a dinky motel into an opulent 5-star luxury hotel!  ','true',false,false,'Janes Hotel OL');ag(118718897,'Mahjongg Dimensions','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe81x46.gif',110015873,118782850,'801d5ef7-009f-4fe1-802c-08064c40f37e','false','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe16x16.gif',false,11323,'/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe100x75.jpg','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe179x135.jpg','/images/games/MahjonggDimensionsDeluxe/MahjonggDimensionsDeluxe320x240.jpg','false','/images/games/thumbnails_med_2/MahjonggDimensionsDeluxe130x75.gif','','Classic Puzzler with a 3D Twist!','Classic puzzler with a 3D twist requiring creativity, speed, and spatial memory!','true',false,false,'Mahjongg Dimensions OL AS3');ag(118719723,'Age of Japan','/images/games/AgeOfJapan/AgeOfJapan81x46.gif',110083820,118783657,'f8adf84c-c2c5-4431-ba52-ab55c24d2fac','false','/images/games/AgeOfJapan/AgeOfJapan16x16.gif',false,11323,'/images/games/AgeOfJapan/AgeOfJapan100x75.jpg','/images/games/AgeOfJapan/AgeOfJapan179x135.jpg','/images/games/AgeOfJapan/AgeOfJapan320x240.jpg','false','/images/games/thumbnails_med_2/AgeOfJapan130x75.gif','','Unique Japanese-style puzzle play! ','Enjoy wonderful Japanese-style graphics in this fun matching puzzler! ','true',false,false,'Age of Japan OL');ag(118720163,'Mall-A-Palooza','/images/games/MallAPalooza/MallAPalooza81x46.gif',0,118784813,'','false','/images/games/MallAPalooza/MallAPalooza16x16.gif',false,11323,'/images/games/MallAPalooza/MallAPalooza100x75.jpg','/images/games/MallAPalooza/MallAPalooza179x135.jpg','/images/games/MallAPalooza/MallAPalooza320x240.jpg','false','/images/games/thumbnails_med_2/MallAPalooza130x75.gif','/exe/mall_a_palooza_34357441-setup.exe?lc=en&ext=mall_a_palooza_34357441-setup.exe','Design and Manage a Shopping Mall!','Help customers shop &rsquo;til they drop! Design a mall with click management simulation!','false',false,false,'Mall A Palooza');ag(118721790,'Happyville: Quest For Utopia','/images/games/HappyvilleQuestForUtopia/HappyvilleQuestForUtopia81x46.gif',110127790,118785490,'','false','/images/games/HappyvilleQuestForUtopia/HappyvilleQuestForUtopia16x16.gif',false,11323,'/images/games/HappyvilleQuestForUtopia/HappyvilleQuestForUtopia100x75.jpg','/images/games/HappyvilleQuestForUtopia/HappyvilleQuestForUtopia179x135.jpg','/images/games/HappyvilleQuestForUtopia/HappyvilleQuestForUtopia320x240.jpg','false','/images/games/thumbnails_med_2/HappyvilleQuestForUtopia130x75.gif','/exe/happyville_quest_for_utopia_65456777-setup.exe?lc=en&ext=happyville_quest_for_utopia_65456777-setup.exe','Create an Idyllic Land!','Create an idyllic land using intelligent, creative problem solving!','false',false,false,'Happyville Quest For Utopia');ag(118722403,'Youda Fairy','/images/games/youda_fairy/youda_fairy81x46.gif',110015873,118786240,'1d62458a-cf3d-4118-96a6-d6c67a47d104','false','/images/games/youda_fairy/youda_fairy16x16.gif',false,11323,'/images/games/youda_fairy/youda_fairy100x75.jpg','/images/games/youda_fairy/youda_fairy179x135.jpg','/images/games/youda_fairy/youda_fairy320x240.jpg','false','/images/games/thumbnails_med_2/youda_fairy130x75.gif','','Cast Spells and Free the Forest Kingdom!','Cast spells and free the forest kingdom of the evil witch!','true',false,false,'Youda Fairy OL AS3');ag(118735100,'Captain Space Bunny','/images/games/CaptainSpaceBunny/CaptainSpaceBunny81x46.gif',1003,118799753,'','false','/images/games/CaptainSpaceBunny/CaptainSpaceBunny16x16.gif',false,11323,'/images/games/CaptainSpaceBunny/CaptainSpaceBunny100x75.jpg','/images/games/CaptainSpaceBunny/CaptainSpaceBunny179x135.jpg','/images/games/CaptainSpaceBunny/CaptainSpaceBunny320x240.jpg','false','/images/games/thumbnails_med_2/CaptainSpaceBunny130x75.gif','/exe/captain_space_bunny_98752144-setup.exe?lc=en&ext=captain_space_bunny_98752144-setup.exe','Search the Galaxy for your Lost Homeworld!','Explore the galaxy in search of your lost bunny homeworld!','false',false,false,'Captain Space Bunny');ag(118736820,'The Palace Builder','/images/games/ThePalaceBuilder/ThePalaceBuilder81x46.gif',0,118801470,'','false','/images/games/ThePalaceBuilder/ThePalaceBuilder16x16.gif',false,11323,'/images/games/ThePalaceBuilder/ThePalaceBuilder100x75.jpg','/images/games/ThePalaceBuilder/ThePalaceBuilder179x135.jpg','/images/games/ThePalaceBuilder/ThePalaceBuilder320x240.jpg','false','/images/games/thumbnails_med_2/ThePalaceBuilder130x75.gif','/exe/the_palace_builder_65418844-setup.exe?lc=en&ext=the_palace_builder_65418844-setup.exe','Design Luxurious French Estates!','Test your eye for luxurious design by crafting 18th-century French estates!','false',false,false,'The Palace Builder');ag(118738570,'Governor of Poker','/images/games/GovernorOfPocker/GovernorOfPocker81x46.gif',110083820,118803500,'81a7c403-bc25-4c01-9b08-57611abd4284','false','/images/games/GovernorOfPocker/GovernorOfPocker16x16.gif',false,11323,'/images/games/GovernorOfPocker/GovernorOfPocker100x75.jpg','/images/games/GovernorOfPocker/GovernorOfPocker179x135.jpg','/images/games/GovernorOfPocker/GovernorOfPocker320x240.jpg','false','/images/games/thumbnails_med_2/GovernorOfPocker130x75.gif','','Win oodles of cash and property!','Buy fancy houses and cars with your poker tournament winnings!','true',false,false,'Governor of Poker OL');ag(118739683,'Echoes of the Past: Royal House of Stone','/images/games/EchoesofthePastRoyalHouse/EchoesofthePastRoyalHouse81x46.gif',1100710,118804337,'','false','/images/games/EchoesofthePastRoyalHouse/EchoesofthePastRoyalHouse16x16.gif',false,11323,'/images/games/EchoesofthePastRoyalHouse/EchoesofthePastRoyalHouse100x75.jpg','/images/games/EchoesofthePastRoyalHouse/EchoesofthePastRoyalHouse179x135.jpg','/images/games/EchoesofthePastRoyalHouse/EchoesofthePastRoyalHouse320x240.jpg','false','/images/games/thumbnails_med_2/EchoesofthePastRoyalHouse130x75.gif','/exe/echoes_of_the_past_royal_house_78421212-setup.exe?lc=en&ext=echoes_of_the_past_royal_house_78421212-setup.exe','Reveal a Curse and Save the Kingdom!','Help the last prince of Orion reveal a curse and save the kingdom!','false',false,false,'Echoes of the Past Royal House');ag(118740597,'Cassandra&rsquo;s Journey 2','/images/games/CassandrasJourney2/CassandrasJourney281x46.gif',1100710,118805253,'','false','/images/games/CassandrasJourney2/CassandrasJourney216x16.gif',false,11323,'/images/games/CassandrasJourney2/CassandrasJourney2100x75.jpg','/images/games/CassandrasJourney2/CassandrasJourney2179x135.jpg','/images/games/CassandrasJourney2/CassandrasJourney2320x240.jpg','false','/images/games/thumbnails_med_2/CassandrasJourney2130x75.gif','/exe/cassandras_journey_2_87451321-setup.exe?lc=en&ext=cassandras_journey_2_87451321-setup.exe','Help Cassandra Banish a Demon!','After finding her magical ring, Cassandra must now banish a mysterious demon!','false',false,false,'Cassandras Journey 2');ag(118741870,'Tales Of Pylea Crux','/images/games/TalesOfPyleaCrux/TalesOfPyleaCrux81x46.gif',110083820,118806513,'26ab607f-3181-49a5-b295-c96191761d14','false','/images/games/TalesOfPyleaCrux/TalesOfPyleaCrux16x16.gif',false,11323,'/images/games/TalesOfPyleaCrux/TalesOfPyleaCrux100x75.jpg','/images/games/TalesOfPyleaCrux/TalesOfPyleaCrux179x135.jpg','/images/games/TalesOfPyleaCrux/TalesOfPyleaCrux320x240.jpg','false','/images/games/thumbnails_med_2/TalesOfPyleaCrux130x75.gif','','Find the Differences','Spot the differences in this story adventure.','true',false,false,'Tales Of Pylea Crux OL AS3');ag(118742990,'Princess Isabella - Special Edition','/images/games/PrincessIsabellaSE/PrincessIsabellaSE81x46.gif',1100710,118807910,'','false','/images/games/PrincessIsabellaSE/PrincessIsabellaSE16x16.gif',false,11323,'/images/games/PrincessIsabellaSE/PrincessIsabellaSE100x75.jpg','/images/games/PrincessIsabellaSE/PrincessIsabellaSE179x135.jpg','/images/games/PrincessIsabellaSE/PrincessIsabellaSE320x240.jpg','false','/images/games/thumbnails_med_2/PrincessIsabellaSE130x75.gif','/exe/princess_isabella_SE_16435298-setup.exe?lc=en&ext=princess_isabella_SE_16435298-setup.exe','Break the Castle’s Evil Spell!','Break the castle’s evil spell to save your Prince Charming!','false',false,false,'Princess Isabella Special Edit');ag(118744537,'Mystery PI: The London Caper','/images/games/MysteryPILondonCaper/MysteryPILondonCaper81x46.gif',1100710,118809157,'','false','/images/games/MysteryPILondonCaper/MysteryPILondonCaper16x16.gif',false,11323,'/images/games/MysteryPILondonCaper/MysteryPILondonCaper100x75.jpg','/images/games/MysteryPILondonCaper/MysteryPILondonCaper179x135.jpg','/images/games/MysteryPILondonCaper/MysteryPILondonCaper320x240.jpg','false','/images/games/thumbnails_med_2/MysteryPILondonCaper130x75.gif','/exe/mystery_pi_london_caper_12349876-setup.exe?lc=en&ext=mystery_pi_london_caper_12349876-setup.exe','Recover the Stolen Crown Jewels!','Search London for clues and race to recover the stolen Crown Jewels!','false',false,false,'Mystery PI London Caper');ag(118745763,'Jane’s Hotel Family Hero','/images/games/JanesHotelFamilyHero/JanesHotelFamilyHero81x46.gif',110083820,118810343,'6874b62a-0a9e-4b42-b4a7-266665a7df5f','false','/images/games/JanesHotelFamilyHero/JanesHotelFamilyHero16x16.gif',false,11323,'/images/games/JanesHotelFamilyHero/JanesHotelFamilyHero100x75.jpg','/images/games/JanesHotelFamilyHero/JanesHotelFamilyHero179x135.jpg','/images/games/JanesHotelFamilyHero/JanesHotelFamilyHero320x240.jpg','false','/images/games/thumbnails_med_2/JanesHotelFamilyHero130x75.gif','','Manage a Chain of Family Hotels!','Help Jane restore and manage a chain of family hotels!','true',false,false,'Janes Hotel Family Hero OL');ag(118746783,'Love Thy Neighbor','/images/games/LOVETHYNEIGHBOR/LOVETHYNEIGHBOR81x46.gif',110083820,118811493,'d12ec57e-c9a8-4d4e-8808-7f7854ea3c78','false','/images/games/LOVETHYNEIGHBOR/LOVETHYNEIGHBOR16x16.gif',false,11323,'/images/games/LOVETHYNEIGHBOR/LOVETHYNEIGHBOR100x75.jpg','/images/games/LOVETHYNEIGHBOR/LOVETHYNEIGHBOR179x135.jpg','/images/games/LOVETHYNEIGHBOR/LOVETHYNEIGHBOR320x240.jpg','false','/images/games/thumbnails_med_2/LOVETHYNEIGHBOR130x75.gif','','Fall in love… with your neighbor.','Time to love thy neighbor… but don’t get caught in the act.','true',false,false,'Love Thy Neighbor OL');ag(118748907,'Dark Parables: Curse Of Briar Rose','/images/games/DarkParablesCurseOfBriarRose/DarkParablesCurseOfBriarRose81x46.gif',1100710,118813603,'','false','/images/games/DarkParablesCurseOfBriarRose/DarkParablesCurseOfBriarRose16x16.gif',false,11323,'/images/games/DarkParablesCurseOfBriarRose/DarkParablesCurseOfBriarRose100x75.jpg','/images/games/DarkParablesCurseOfBriarRose/DarkParablesCurseOfBriarRose179x135.jpg','/images/games/DarkParablesCurseOfBriarRose/DarkParablesCurseOfBriarRose320x240.jpg','false','/images/games/thumbnails_med_2/DarkParablesCurseOfBriarRose130x75.gif','/exe/dark_parables_curse_of_briar_rose_78951258-setup.exe?lc=en&ext=dark_parables_curse_of_briar_rose_78951258-setup.exe','Hidden Object Rescue of Sleeping Beauty!','Hidden object search for the real story of Sleeping Beauty!','false',false,false,'Dark Parables Curse Of Briar R');ag(118751920,'Youda Sushi Chef','/images/games/YoudaSushiChef/YoudaSushiChef81x46.gif',110083820,118816867,'fb5eaa88-2dc9-4e08-b9bf-46dac73a64b9','false','/images/games/YoudaSushiChef/YoudaSushiChef16x16.gif',false,11323,'/images/games/YoudaSushiChef/YoudaSushiChef100x75.jpg','/images/games/YoudaSushiChef/YoudaSushiChef179x135.jpg','/images/games/YoudaSushiChef/YoudaSushiChef320x240.jpg','false','/images/games/thumbnails_med_2/YoudaSushiChef130x75.gif','','Sushi, Sashimi, Sake – You’re the Master!','Sushi, Sashimi, Sake – build a restaurant empire and become the sushi master!','true',false,false,'Youda Sushi Chef OL AS3');ag(118752247,'The Dream Voyagers','/images/games/TheDreamVoyagers/TheDreamVoyagers81x46.gif',0,118817797,'','false','/images/games/TheDreamVoyagers/TheDreamVoyagers16x16.gif',false,11323,'/images/games/TheDreamVoyagers/TheDreamVoyagers100x75.jpg','/images/games/TheDreamVoyagers/TheDreamVoyagers179x135.jpg','/images/games/TheDreamVoyagers/TheDreamVoyagers320x240.jpg','false','/images/games/thumbnails_med_2/TheDreamVoyagers130x75.gif','/exe/dream_voyagers_46578912-setup.exe?lc=en&ext=dream_voyagers_46578912-setup.exe','Soothe Troubled Sleepers with Magical Powers!','Soothe the troubled sleepers of Slumberton with your magical hidden object powers!','false',false,false,'The Dream Voyagers');ag(118753180,'Agatha Christie Bundle - 3 in 1','/images/games/agatha_christie_bundle_3in1/agatha_christie_bundle_3in181x46.gif',1007,118818873,'','false','/images/games/agatha_christie_bundle_3in1/agatha_christie_bundle_3in116x16.gif',false,11323,'/images/games/agatha_christie_bundle_3in1/agatha_christie_bundle_3in1100x75.jpg','/images/games/agatha_christie_bundle_3in1/agatha_christie_bundle_3in1179x135.jpg','/images/games/agatha_christie_bundle_3in1/agatha_christie_bundle_3in1320x240.jpg','false','/images/games/thumbnails_med_2/agatha_christie_bundle_3in1130x75.gif','/exe/agatha_christie_3in1_13462578-setup.exe?lc=en&ext=agatha_christie_3in1_13462578-setup.exe','Solve 3 Classic Mysteries with Seek-and-find Sleuthing!','Solve classic mysteries with seek-and-find sleuthing - 3 games, 1 download, 50% off full price!','false',false,false,'Agatha Christie 3 in 1');ag(118756143,'BreakEm Up','/images/games/BREAKEMUP/BREAKEMUP81x46.gif',110084727,118821707,'d6412266-f946-44d9-803f-f865e2b74523','false','/images/games/BREAKEMUP/BREAKEMUP16x16.gif',false,11323,'/images/games/BREAKEMUP/BREAKEMUP100x75.jpg','/images/games/BREAKEMUP/BREAKEMUP179x135.jpg','/images/games/BREAKEMUP/BREAKEMUP320x240.jpg','false','/images/games/thumbnails_med_2/BREAKEMUP130x75.gif','','Steal yourself a Mr. Right!','Don’t go around looking for Mr. Right. Just steal him!','true',false,false,'BreakEm Up OL');ag(118757243,'Dress Up Rush','/images/games/DressUpRush/DressUpRush81x46.gif',110083820,118822830,'16c02778-17ba-410e-9db3-8e0dfdc64dbc','false','/images/games/DressUpRush/DressUpRush16x16.gif',false,11323,'/images/games/DressUpRush/DressUpRush100x75.jpg','/images/games/DressUpRush/DressUpRush179x135.jpg','/images/games/DressUpRush/DressUpRush320x240.jpg','false','/images/games/thumbnails_med_2/DressUpRush130x75.gif','','Manage Your Own Fashion Boutique!','Explore the world of fashion by helping Jane manage her boutique!','true',false,false,'Dress Up Rush OL');ag(118758403,'Jane&rsquo;s Realty','/images/games/janesrealty/janesrealty81x46.gif',110083820,11882350,'40ed2248-60ca-409d-a4f8-b8600ab87d22','false','/images/games/janesrealty/janesrealty16x16.gif',false,11323,'/images/games/janesrealty/janesrealty100x75.jpg','/images/games/janesrealty/janesrealty179x135.jpg','/images/games/janesrealty/janesrealty320x240.jpg','false','/images/games/thumbnails_med_2/janesrealty130x75.gif','','The city of your dream!','Try your hand at building, renting and selling houses!','true',false,false,'Janes Realty OL');ag(118759853,'Slumber Party','/images/games/SlumberParty/SlumberParty81x46.gif',110085510,118824490,'05489274-1ad1-4d89-9d6c-4e1b76f423ed','false','/images/games/SlumberParty/SlumberParty16x16.gif',false,11323,'/images/games/SlumberParty/SlumberParty100x75.jpg','/images/games/SlumberParty/SlumberParty179x135.jpg','/images/games/SlumberParty/SlumberParty320x240.jpg','false','/images/games/thumbnails_med_2/SlumberParty130x75.gif','','It’s a girls’ night in!','It’s going to be an awesome night with your gal pals!','true',false,false,'Slumber Party OL');ag(118760237,'Midnight Mysteries: Edgar Allan Poe','/images/games/MidnightMysteriesEdgarAllanPoe/MidnightMysteriesEdgarAllanPoe81x46.gif',110015873,118825143,'ed8fd7dc-bcca-46a6-b25a-5f105ffa0263','false','/images/games/MidnightMysteriesEdgarAllanPoe/MidnightMysteriesEdgarAllanPoe16x16.gif',false,11323,'/images/games/MidnightMysteriesEdgarAllanPoe/MidnightMysteriesEdgarAllanPoe100x75.jpg','/images/games/MidnightMysteriesEdgarAllanPoe/MidnightMysteriesEdgarAllanPoe179x135.jpg','/images/games/MidnightMysteriesEdgarAllanPoe/MidnightMysteriesEdgarAllanPoe320x240.jpg','false','/images/games/thumbnails_med_2/MidnightMysteriesEdgarAllanPoe130x75.gif','','Unveil the Conspiracy Behind Poe’s Death!  ','Race to solve the famed poet’s death in this seek-and-find thriller!','true',false,false,'MidnightMysteriesEdPoe AS3 OL');ag(118762467,'Magician’s Handbook II: Blacklore','/images/games/TheMagiciansHandbook2BlackLore/TheMagiciansHandbook2BlackLore81x46.gif',110083820,118827383,'6bc5c875-d420-4255-be71-e0b7739f3740','false','/images/games/TheMagiciansHandbook2BlackLore/TheMagiciansHandbook2BlackLore16x16.gif',false,11323,'/images/games/TheMagiciansHandbook2BlackLore/TheMagiciansHandbook2BlackLore100x75.jpg','/images/games/TheMagiciansHandbook2BlackLore/TheMagiciansHandbook2BlackLore179x135.jpg','/images/games/TheMagiciansHandbook2BlackLore/TheMagiciansHandbook2BlackLore320x240.jpg','false','/images/games/thumbnails_med_2/TheMagiciansHandbook2BlackLore130x75.gif','','Stop BlackLore’s Evil Enchantments!','Stop BlackLore’s evil enchantments in this high-seas hidden object adventure!','true',false,false,'The Magicians Handbook 2 OL');ag(118764397,'Pirate Stories: Kit & Ellis','/images/games/PirateStoriesKitandEllis/PirateStoriesKitandEllis81x46.gif',110083820,118829327,'d0bfee4a-6914-405b-b792-e1e325ce7b3d','false','/images/games/PirateStoriesKitandEllis/PirateStoriesKitandEllis16x16.gif',false,11323,'/images/games/PirateStoriesKitandEllis/PirateStoriesKitandEllis100x75.jpg','/images/games/PirateStoriesKitandEllis/PirateStoriesKitandEllis179x135.jpg','/images/games/PirateStoriesKitandEllis/PirateStoriesKitandEllis320x240.jpg','false','/images/games/thumbnails_med_2/PirateStoriesKitandEllis130x75.gif','','A match-3 pirate puzzler! ','Travel back to medieval times in this pirate-themed puzzler! ','true',false,false,'Pirate Stories Kit Ellis OL');ag(118765130,'Shades','/images/games/Shades/Shades81x46.gif',110083820,118830760,'c36a32bc-7eee-4d69-a97d-07653e5f7ce6','false','/images/games/Shades/Shades16x16.gif',false,11323,'/images/games/Shades/Shades100x75.jpg','/images/games/Shades/Shades179x135.jpg','/images/games/Shades/Shades320x240.jpg','false','/images/games/thumbnails_med_2/Shades130x75.gif','','Find the Differences','Spot the differences as Rebecca Allen faces evil spirits.','true',false,false,'Shades OL AS3');ag(118767790,'Royal Envoy™','/images/games/RoyalEnvoyTM/RoyalEnvoyTM81x46.gif',1100710,118832747,'','false','/images/games/RoyalEnvoyTM/RoyalEnvoyTM16x16.gif',false,11323,'/images/games/RoyalEnvoyTM/RoyalEnvoyTM100x75.jpg','/images/games/RoyalEnvoyTM/RoyalEnvoyTM179x135.jpg','/images/games/RoyalEnvoyTM/RoyalEnvoyTM320x240.jpg','false','/images/games/thumbnails_med_2/RoyalEnvoyTM130x75.gif','/exe/royal_envoy_collectors_edition_21551145-setup.exe?lc=en&ext=royal_envoy_collectors_edition_21551145-setup.exe','Rebuild the King’s Storm-Ravaged Islands!','Rebuild houses and plan cities in storm-ravaged Islandshire!','false',false,false,'Royal Envoy TM network');ag(118778933,'Ashtons Family Resort','/images/games/ashtonsfamilyresort/ashtonsfamilyresort81x46.gif',110083820,118843547,'3b9d4eaf-e32f-404c-90fd-805979534e73','false','/images/games/ashtonsfamilyresort/ashtonsfamilyresort16x16.gif',false,11323,'/images/games/ashtonsfamilyresort/ashtonsfamilyresort100x75.jpg','/images/games/ashtonsfamilyresort/ashtonsfamilyresort179x135.jpg','/images/games/ashtonsfamilyresort/ashtonsfamilyresort320x240.jpg','false','/images/games/thumbnails_med_2/ashtonsfamilyresort130x75.gif','','Launch your own tourist business!','Take part in the grand Resort Contest and travel all around the world!','true',false,false,'Ashtons Family Resort OL');ag(118779930,'Undercover','/images/games/undercover/undercover81x46.gif',110015873,118844583,'67e0ee05-13d3-429a-a2e0-db1bbd8a0932','false','/images/games/undercover/undercover16x16.gif',false,11323,'/images/games/undercover/undercover100x75.jpg','/images/games/undercover/undercover179x135.jpg','/images/games/undercover/undercover320x240.jpg','false','/images/games/thumbnails_med_2/undercover130x75.gif','','Time to start snapping hot pics.','Be a hot shot photographer and click some hot pics.','true',false,false,'Undercover OL');ag(118780903,'Cruise Clues: Caribbean Adventure','/images/games/CruiseCluesCaribbeanAdventure/CruiseCluesCaribbeanAdventure81x46.gif',1100710,118845513,'','false','/images/games/CruiseCluesCaribbeanAdventure/CruiseCluesCaribbeanAdventure16x16.gif',false,11323,'/images/games/CruiseCluesCaribbeanAdventure/CruiseCluesCaribbeanAdventure100x75.jpg','/images/games/CruiseCluesCaribbeanAdventure/CruiseCluesCaribbeanAdventure179x135.jpg','/images/games/CruiseCluesCaribbeanAdventure/CruiseCluesCaribbeanAdventure320x240.jpg','false','/images/games/thumbnails_med_2/CruiseCluesCaribbeanAdventure130x75.gif','/exe/cruise_clues_caribbean_adventure_65747344-setup.exe?lc=en&ext=cruise_clues_caribbean_adventure_65747344-setup.exe','Catch a Thief Aboard a Tropical Cruise!','Catch an international jewel thief aboard a millionaires&rsquo; tropical cruise!','false',false,false,'Cruise Clues Caribbean Adventu');ag(118782680,'Escape High School','/images/games/escapehighschool/escapehighschool81x46.gif',110084727,118847363,'88281248-13a9-4534-ae2b-fe3469237a06','false','/images/games/escapehighschool/escapehighschool16x16.gif',false,11323,'/images/games/escapehighschool/escapehighschool100x75.jpg','/images/games/escapehighschool/escapehighschool179x135.jpg','/images/games/escapehighschool/escapehighschool320x240.jpg','false','/images/games/thumbnails_med_2/escapehighschool130x75.gif','','Ditch school… for love!','Ditch school and run away with the cute guy!','true',false,false,'Escape High School OL');ag(118783497,'e-Depth Angel','/images/games/eDepthAngel/eDepthAngel81x46.gif',110083820,118848163,'28b30427-662e-498f-bb45-209452da3ec9','false','/images/games/eDepthAngel/eDepthAngel16x16.gif',false,11323,'/images/games/eDepthAngel/eDepthAngel100x75.jpg','/images/games/eDepthAngel/eDepthAngel179x135.jpg','/images/games/eDepthAngel/eDepthAngel320x240.jpg','false','/images/games/thumbnails_med_2/eDepthAngel130x75.gif','','Find the Differences','Spot the differences in this story adventure.','true',false,false,'e-Depth Angel OL AS3');ag(118784260,'Fashion Expo','/images/games/FASHIONEXPO/FASHIONEXPO81x46.gif',110083820,118849830,'7e3c8161-c4c5-4172-b32d-28efed0a0832','false','/images/games/FASHIONEXPO/FASHIONEXPO16x16.gif',false,11323,'/images/games/FASHIONEXPO/FASHIONEXPO100x75.jpg','/images/games/FASHIONEXPO/FASHIONEXPO179x135.jpg','/images/games/FASHIONEXPO/FASHIONEXPO320x240.jpg','false','/images/games/thumbnails_med_2/FASHIONEXPO130x75.gif','','Dazzle ‘em with your designs!','Fire up the ramp with your Fashion Expo!','true',false,false,'Fashion Expo OL');ag(118785927,'Turtle Odyssey 2','/images/games/TurtleOdyssey2/TurtleOdyssey281x46.gif',110083820,118850857,'28bc03a9-4f7d-49b3-82b8-557192797a46','false','/images/games/TurtleOdyssey2/TurtleOdyssey216x16.gif',false,11323,'/images/games/TurtleOdyssey2/TurtleOdyssey2100x75.jpg','/images/games/TurtleOdyssey2/TurtleOdyssey2179x135.jpg','/images/games/TurtleOdyssey2/TurtleOdyssey2320x240.jpg','false','/images/games/thumbnails_med_2/TurtleOdyssey2130x75.gif','','Explore a mysterious underwater kingdom! ','Explore underwater kingdoms and six new worlds with Ozzy the turtle! ','true',false,false,'Turtle Odyssey 2 OL');ag(118787317,'Vampire Saga: Pandoras Box','/images/games/VampireSagaPandorasBox/VampireSagaPandorasBox81x46.gif',1100710,118852953,'','false','/images/games/VampireSagaPandorasBox/VampireSagaPandorasBox16x16.gif',false,11323,'/images/games/VampireSagaPandorasBox/VampireSagaPandorasBox100x75.jpg','/images/games/VampireSagaPandorasBox/VampireSagaPandorasBox179x135.jpg','/images/games/VampireSagaPandorasBox/VampireSagaPandorasBox320x240.jpg','false','/images/games/thumbnails_med_2/VampireSagaPandorasBox130x75.gif','/exe/vampire_saga_pandoras_box_56452141-setup.exe?lc=en&ext=vampire_saga_pandoras_box_56452141-setup.exe','Creepy and Captivating Mystery Thriller!','A captivating mystery thriller! Solve the chilling crime in this spellbinding story!','false',false,false,'Vampire Saga Pandoras Box');ag(118789830,'Youda Legend Golden Bird','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird81x46.gif',110083820,118854730,'b1cb43ab-e5b4-4759-84a3-5f3a249d0de1','false','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird16x16.gif',false,11323,'/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird100x75.jpg','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird179x135.jpg','/images/games/YoudaLegendGoldenBird/YoudaLegendGoldenBird320x240.jpg','false','/images/games/thumbnails_med_2/YoudaLegendGoldenBird130x75.gif','','Tropical Holiday Turned Mysterious Adventure!','A tropical getaway turns into an all new mysterious adventure!','true',false,false,'Youda Legend Golden Bird OL');ag(118791877,'Real Detectives: Murder in Miami','/images/games/RealDetectivesMurderinMiami/RealDetectivesMurderinMiami81x46.gif',0,118856567,'','false','/images/games/RealDetectivesMurderinMiami/RealDetectivesMurderinMiami16x16.gif',false,11323,'/images/games/RealDetectivesMurderinMiami/RealDetectivesMurderinMiami100x75.jpg','/images/games/RealDetectivesMurderinMiami/RealDetectivesMurderinMiami179x135.jpg','/images/games/RealDetectivesMurderinMiami/RealDetectivesMurderinMiami320x240.jpg','false','/images/games/thumbnails_med_2/RealDetectivesMurderinMiami130x75.gif','/exe/real_detectives_murder_in_miami_86512311-setup.exe?lc=en&ext=real_detectives_murder_in_miami_86512311-setup.exe','Solve a Series of Unexplained Deaths!','Solve a series of unexplained deaths in a sizzling city of lies and deceit!','false',false,false,'Real Detectives Murder in Miam');ag(118792317,'Journalist Journey','/images/games/JournalistJourney/JournalistJourney81x46.gif',1100710,11885717,'','false','/images/games/JournalistJourney/JournalistJourney16x16.gif',false,11323,'/images/games/JournalistJourney/JournalistJourney100x75.jpg','/images/games/JournalistJourney/JournalistJourney179x135.jpg','/images/games/JournalistJourney/JournalistJourney320x240.jpg','false','/images/games/thumbnails_med_2/JournalistJourney130x75.gif','/exe/journalist_journey_13845651-setup.exe?lc=en&ext=journalist_journey_13845651-setup.exe','Investigate Strange, Glowing Symbols Around the World!','Investigate strange, glowing symbols by searching for hidden objects around the world!','false',false,false,'Journalist Journey');ag(118794180,'SKIP-BO Castaway Caper','/images/games/SKIPBOCastawayCaper/SKIPBOCastawayCaper81x46.gif',110083820,118859103,'1aa0240d-1d01-4cb1-a131-7d9eddf3dfe9','false','/images/games/SKIPBOCastawayCaper/SKIPBOCastawayCaper16x16.gif',false,11323,'/images/games/SKIPBOCastawayCaper/SKIPBOCastawayCaper100x75.jpg','/images/games/SKIPBOCastawayCaper/SKIPBOCastawayCaper179x135.jpg','/images/games/SKIPBOCastawayCaper/SKIPBOCastawayCaper320x240.jpg','false','/images/games/thumbnails_med_2/SKIPBOCastawayCaper130x75.gif','','Calm an angry volcano! ','Win at the card game SKIP-BO™ to calm an angry volcano!','true',false,false,'SKIP-BO Castaway Caper OL');ag(118795543,'Return of Monte Cristo','/images/games/ReturnofMonteCristo/ReturnofMonteCristo81x46.gif',1100710,118860203,'','false','/images/games/ReturnofMonteCristo/ReturnofMonteCristo16x16.gif',false,11323,'/images/games/ReturnofMonteCristo/ReturnofMonteCristo100x75.jpg','/images/games/ReturnofMonteCristo/ReturnofMonteCristo179x135.jpg','/images/games/ReturnofMonteCristo/ReturnofMonteCristo320x240.jpg','false','/images/games/thumbnails_med_2/ReturnofMonteCristo130x75.gif','/exe/return_of_monte_cristo_65451788-setup.exe?lc=en&ext=return_of_monte_cristo_65451788-setup.exe','Help Edmond Find Mercedes’ Killer!','Help Edmond find Mercedes’ killer and bring him to justice!','false',false,false,'Return of Monte Cristo');ag(118797343,'Fiction Fixers Wonderland','/images/games/FictionFixersWonderlandSE/FictionFixersWonderlandSE81x46.gif',1100710,118862290,'','false','/images/games/FictionFixersWonderlandSE/FictionFixersWonderlandSE16x16.gif',false,11323,'/images/games/FictionFixersWonderlandSE/FictionFixersWonderlandSE100x75.jpg','/images/games/FictionFixersWonderlandSE/FictionFixersWonderlandSE179x135.jpg','/images/games/FictionFixersWonderlandSE/FictionFixersWonderlandSE320x240.jpg','false','/images/games/thumbnails_med_2/FictionFixersWonderlandSE130x75.gif','/exe/fiction_fixers_wonderland_64581126-setup.exe?lc=en&ext=fiction_fixers_wonderland_64581126-setup.exe','Protect a Famous Work of Literature!','Protect the plot of Alice and Wonderland from the infamous Illiterati!','false',false,false,'Fiction Fixers Wonderland netw');ag(118799620,'Vampireville','/images/games/Vampireville/Vampireville81x46.gif',1100710,118864803,'','false','/images/games/Vampireville/Vampireville16x16.gif',false,11323,'/images/games/Vampireville/Vampireville100x75.jpg','/images/games/Vampireville/Vampireville179x135.jpg','/images/games/Vampireville/Vampireville320x240.jpg','false','/images/games/thumbnails_med_2/Vampireville130x75.gif','/exe/vampireville_96513332-setup.exe?lc=en&ext=vampireville_96513332-setup.exe','Discover the Secrets of Malgrey Castle!','Meet the mysterious inhabitants of Malgrey Castle and unlock their secrets!','false',false,false,'Vampireville');ag(118800363,'Love And Death Bitten','/images/games/LoveAndDeathBitten/LoveAndDeathBitten81x46.gif',1100710,11886520,'','false','/images/games/LoveAndDeathBitten/LoveAndDeathBitten16x16.gif',false,11323,'/images/games/LoveAndDeathBitten/LoveAndDeathBitten100x75.jpg','/images/games/LoveAndDeathBitten/LoveAndDeathBitten179x135.jpg','/images/games/LoveAndDeathBitten/LoveAndDeathBitten320x240.jpg','false','/images/games/thumbnails_med_2/LoveAndDeathBitten130x75.gif','/exe/love_and_death_bitten_56184445-setup.exe?lc=en&ext=love_and_death_bitten_56184445-setup.exe','Will Love Overcome Death?','Will love overcome death for this cursed vampire?','false',false,false,'Love And Death Bitten');ag(118802847,'Miriel’s Enchanted Mystery','/images/games/miriels_enchanted/miriels_enchanted81x46.gif',110015873,118867787,'ad2f2589-31fb-442a-819b-067666cd7ec9','false','/images/games/miriels_enchanted/miriels_enchanted16x16.gif',false,11323,'/images/games/miriels_enchanted/miriels_enchanted100x75.jpg','/images/games/miriels_enchanted/miriels_enchanted179x135.jpg','/images/games/miriels_enchanted/miriels_enchanted320x240.jpg','false','/images/games/thumbnails_med_2/miriels_enchanted130x75.gif','','Manage a Magical Shop and Unlock Secrets!  ','Manage Miriel’s magical shop and unlock secrets behind a mysterious artifact!  ','true',false,false,'Miriels Enchanted Mystery OL');ag(118803603,'Youda Farmer','/images/games/YoudaFarmer/YoudaFarmer81x46.gif',110083820,118868550,'47b5d317-9bd5-4a76-9dd5-5edf03487b99','false','/images/games/YoudaFarmer/YoudaFarmer16x16.gif',false,11323,'/images/games/YoudaFarmer/YoudaFarmer100x75.jpg','/images/games/YoudaFarmer/YoudaFarmer179x135.jpg','/images/games/YoudaFarmer/YoudaFarmer320x240.jpg','false','/images/games/thumbnails_med_2/YoudaFarmer130x75.gif','','Manage a thriving, expansive farm!','Turn a small patch of land into a thriving farm!','true',false,false,'Youda Farmer OL AS3');ag(118804803,'Posh Boutique 2','/images/games/posh_boutique2/posh_boutique281x46.gif',110015873,118869723,'92503508-dde1-456a-956f-6cb257b3c5e8','false','/images/games/posh_boutique2/posh_boutique216x16.gif',false,11323,'/images/games/posh_boutique2/posh_boutique2100x75.jpg','/images/games/posh_boutique2/posh_boutique2179x135.jpg','/images/games/posh_boutique2/posh_boutique2320x240.jpg','false','/images/games/thumbnails_med_2/posh_boutique2130x75.gif','','Expand Alicia’s Trendy Retail Empire!  ','Expand Alicia’s trendy retail empire in this lottery-winning sequel!  ','true',false,false,'Posh Boutique 2 OL');ag(118805673,'Buried In Time','/images/games/BuriedInTime/BuriedInTime81x46.gif',1007,118870270,'','false','/images/games/BuriedInTime/BuriedInTime16x16.gif',false,11323,'/images/games/BuriedInTime/BuriedInTime100x75.jpg','/images/games/BuriedInTime/BuriedInTime179x135.jpg','/images/games/BuriedInTime/BuriedInTime320x240.jpg','false','/images/games/thumbnails_med_2/BuriedInTime130x75.gif','/exe/buried_in_time_82138844-setup.exe?lc=en&ext=buried_in_time_82138844-setup.exe','Reveal secrets hidden beneath the sand.','Reveal the truth behind an ancient legend exposing a story of love & betrayal.','false',false,false,'Buried In Time');ag(118807937,'Lost Realms 2: Curse of Babylon','/images/games/LostRealms2CurseofBabylon/LostRealms2CurseofBabylon81x46.gif',1100710,118872587,'','false','/images/games/LostRealms2CurseofBabylon/LostRealms2CurseofBabylon16x16.gif',false,11323,'/images/games/LostRealms2CurseofBabylon/LostRealms2CurseofBabylon100x75.jpg','/images/games/LostRealms2CurseofBabylon/LostRealms2CurseofBabylon179x135.jpg','/images/games/LostRealms2CurseofBabylon/LostRealms2CurseofBabylon320x240.jpg','false','/images/games/thumbnails_med_2/LostRealms2CurseofBabylon130x75.gif','/exe/lost_realms_2_curse_of_babylon_65481212-setup.exe?lc=en&ext=lost_realms_2_curse_of_babylon_65481212-setup.exe','Alexia Must Stop Ogan’s Family Curse!','Travel to Istanbul and help Alexia stop Ogan&rsquo;s ancient family curse!','false',false,false,'Lost Realms 2 Curse of Babylon');ag(118808493,'Awakening The Dreamless Castle','/images/games/AwakeningTheDreamlessCastle/AwakeningTheDreamlessCastle81x46.gif',1100710,118873220,'','false','/images/games/AwakeningTheDreamlessCastle/AwakeningTheDreamlessCastle16x16.gif',false,11323,'/images/games/AwakeningTheDreamlessCastle/AwakeningTheDreamlessCastle100x75.jpg','/images/games/AwakeningTheDreamlessCastle/AwakeningTheDreamlessCastle179x135.jpg','/images/games/AwakeningTheDreamlessCastle/AwakeningTheDreamlessCastle320x240.jpg','false','/images/games/thumbnails_med_2/AwakeningTheDreamlessCastle130x75.gif','/exe/awakening_the_dreamless_castle_19354482-setup.exe?lc=en&ext=awakening_the_dreamless_castle_19354482-setup.exe','Escape a Mysterious Castle!','Discover a young princess’ destiny and escape a mysterious castle!','false',false,false,'Awakening The Dreamless Castle');ag(118809533,'TextTwist 2','/images/games/text_twist_2/text_twist_281x46.gif',110083820,118874460,'ed020c06-9180-427f-a216-220cd9c543d2','false','/images/games/text_twist_2/text_twist_216x16.gif',false,11323,'/images/games/text_twist_2/text_twist_2100x75.jpg','/images/games/text_twist_2/text_twist_2179x135.jpg','/images/games/text_twist_2/text_twist_2320x240.jpg','false','/images/games/thumbnails_med_2/text_twist_2130x75.gif','','NEW Brain-Bending Sequel of Word Puzzles!','Bend your brain and twist again with the NEW word puzzle sequel!','true',false,false,'Text Twist 2 OL AS3');ag(118813647,'Youda Legend: The Curse of the Amsterdam Diamond','/images/games/YoudaLegendTheCurse/YoudaLegendTheCurse81x46.gif',110083820,118878537,'964a639d-1c2d-4727-ac09-9080bab4a921','false','/images/games/YoudaLegendTheCurse/YoudaLegendTheCurse16x16.gif',false,11323,'/images/games/YoudaLegendTheCurse/YoudaLegendTheCurse100x75.jpg','/images/games/YoudaLegendTheCurse/YoudaLegendTheCurse179x135.jpg','/images/games/YoudaLegendTheCurse/YoudaLegendTheCurse320x240.jpg','false','/images/games/thumbnails_med_2/YoudaLegendTheCurse130x75.gif','','Delve into Dark Mysteries of Amsterdam!','Delve into the dark mysteries of Amsterdam on this haunting hidden object adventure!','true',false,false,'Youda Legend Curse OL AS3');ag(118824570,'Neverland','/images/games/neverland/neverland81x46.gif',110083820,118889473,'79966e4f-fe82-498d-b553-bc9ae178117f','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','','Rediscover your youth and lost toys!','Help Diana rediscover her youth and recover lost toys in Neverland!','true',false,false,'Neverland OL AS3');ag(118825247,'Little Shop - Road Trip','/images/games/LittleShopRoadTrip/LittleShopRoadTrip81x46.gif',110083820,118890197,'2964912f-bae9-4137-ab15-514f6b472bea','false','/images/games/LittleShopRoadTrip/LittleShopRoadTrip16x16.gif',false,11323,'/images/games/LittleShopRoadTrip/LittleShopRoadTrip100x75.jpg','/images/games/LittleShopRoadTrip/LittleShopRoadTrip179x135.jpg','/images/games/LittleShopRoadTrip/LittleShopRoadTrip320x240.jpg','false','/images/games/thumbnails_med_2/LittleShopRoadTrip130x75.gif','','A cross-country hidden object adventure!','Collect rare and exclusive items on this cross-country hidden object adventure!','true',false,false,'Little Shop Road Trip OL');ag(118830730,'Funny School Bus','/images/games/FunnySchoolBus/FunnySchoolBus81x46.gif',110083820,11889590,'07410dad-2c21-4eaa-8419-104316b9567f','false','/images/games/FunnySchoolBus/FunnySchoolBus16x16.gif',false,11323,'/images/games/FunnySchoolBus/FunnySchoolBus100x75.jpg','/images/games/FunnySchoolBus/FunnySchoolBus179x135.jpg','/images/games/FunnySchoolBus/FunnySchoolBus320x240.jpg','false','/images/games/thumbnails_med_2/FunnySchoolBus130x75.gif','','Hop on for a fun ride to school.','Take a fun ride to the school and have a blast!','true',false,false,'Funny School Bus OL');ag(118831187,'Hanna In A Choppa','/images/games/HannaInAChoppa/HannaInAChoppa81x46.gif',110082753,118896867,'c6f0e51d-8455-4df7-a8f4-ec8b2a4f95fc','false','/images/games/HannaInAChoppa/HannaInAChoppa16x16.gif',false,11323,'/images/games/HannaInAChoppa/HannaInAChoppa100x75.jpg','/images/games/HannaInAChoppa/HannaInAChoppa179x135.jpg','/images/games/HannaInAChoppa/HannaInAChoppa320x240.jpg','false','/images/games/HannaInAChoppa/blank_HannaInAChoppa130x75.gif','','Hanna In A Choppa','Pilot Hanna and her choppa through 21 unique levels.','true',false,false,'Hanna In A Choppa OL');ag(118832260,'Funny Prom Night','/images/games/FunnyPromNight/FunnyPromNight81x46.gif',110083820,118897920,'e7021da6-9052-4e50-99f4-8dabeee570d1','false','/images/games/FunnyPromNight/FunnyPromNight16x16.gif',false,11323,'/images/games/FunnyPromNight/FunnyPromNight100x75.jpg','/images/games/FunnyPromNight/FunnyPromNight179x135.jpg','/images/games/FunnyPromNight/FunnyPromNight320x240.jpg','false','/images/games/thumbnails_med_2/FunnyPromNight130x75.gif','','Make it a night to remember.','Make your prom night even more fun… pull some pranks on others.','true',false,false,'Funny Prom Night OL');ag(118833660,'Funny Hospital','/images/games/FunnyHospital/FunnyHospital81x46.gif',110083820,118898330,'e32dbac1-7a80-4922-bfe3-a22e8bb575ee','false','/images/games/FunnyHospital/FunnyHospital16x16.gif',false,11323,'/images/games/FunnyHospital/FunnyHospital100x75.jpg','/images/games/FunnyHospital/FunnyHospital179x135.jpg','/images/games/FunnyHospital/FunnyHospital320x240.jpg','false','/images/games/thumbnails_med_2/FunnyHospital130x75.gif','','Let laughter cure you!','No one’s gonna get sick of laughter in this Funny Hospital.','true',false,false,'Funny Hospital OL');ag(118835490,'Fast Typer 2','/images/games/FastTyper2/FastTyper281x46.gif',110083820,118900843,'78c8810f-6076-4e7f-b543-05ad6da24bf7','false','/images/games/FastTyper2/FastTyper216x16.gif',false,11323,'/images/games/FastTyper2/FastTyper2100x75.jpg','/images/games/FastTyper2/FastTyper2179x135.jpg','/images/games/FastTyper2/FastTyper2320x240.jpg','false','/images/games/thumbnails_med_2/FastTyper2130x75.gif','','Type Fast','Type as many words as you can','true',true,true,'Fast Typer 2 OLT1 AS3');ag(118836927,'Rabbit Rustler','/images/games/RabbitRustler/RabbitRustler81x46.gif',110083820,118901457,'1d138b7f-5e25-44d0-a2d1-35d3be88025d','false','/images/games/RabbitRustler/RabbitRustler16x16.gif',false,11323,'/images/games/RabbitRustler/RabbitRustler100x75.jpg','/images/games/RabbitRustler/RabbitRustler179x135.jpg','/images/games/RabbitRustler/RabbitRustler320x240.jpg','false','/images/games/thumbnails_med_2/RabbitRustler130x75.gif','','Save the cute bunnies!','Save the cute bunnies from becomming rabbit stew.','true',false,false,'Rabbit Rustler OL AS3');ag(118837190,'Momma&rsquo;s Makeup','/images/games/MommasMakeup/MommasMakeup81x46.gif',110083820,118902823,'ab9ded17-0af6-47e7-bbc4-fa8ebd2be1c2','false','/images/games/MommasMakeup/MommasMakeup16x16.gif',false,11323,'/images/games/MommasMakeup/MommasMakeup100x75.jpg','/images/games/MommasMakeup/MommasMakeup179x135.jpg','/images/games/MommasMakeup/MommasMakeup320x240.jpg','false','/images/games/thumbnails_med_2/MommasMakeup130x75.gif','','Get sneaky and nick some makeup.','Get to your Momma’s Makeup before she gets to you.','true',false,false,'Mommas Makeup OL');ag(118838967,'Super Mom','/images/games/SUPERMOM/SUPERMOM81x46.gif',110083820,118903617,'012862e0-a9b6-4a61-8ee0-67d52c662803','false','/images/games/SUPERMOM/SUPERMOM16x16.gif',false,11323,'/images/games/SUPERMOM/SUPERMOM100x75.jpg','/images/games/SUPERMOM/SUPERMOM179x135.jpg','/images/games/SUPERMOM/SUPERMOM320x240.jpg','false','/images/games/thumbnails_med_2/SUPERMOM130x75.gif','','Babies just got a whole lot more fun!','Tackle the brat and you can be the Super Mom!','true',false,false,'Super Mom OL');ag(118839933,'Word Power The Green Revolution','/images/games/WordPowerTheGreenRevolution/WordPowerTheGreenRevolution81x46.gif',1008,118904627,'','false','/images/games/WordPowerTheGreenRevolution/WordPowerTheGreenRevolution16x16.gif',false,11323,'/images/games/WordPowerTheGreenRevolution/WordPowerTheGreenRevolution100x75.jpg','/images/games/WordPowerTheGreenRevolution/WordPowerTheGreenRevolution179x135.jpg','/images/games/WordPowerTheGreenRevolution/WordPowerTheGreenRevolution320x240.jpg','false','/images/games/thumbnails_med_2/WordPowerTheGreenRevolution130x75.gif','/exe/word_power_the_green_revolution_54543118-setup.exe?lc=en&ext=word_power_the_green_revolution_54543118-setup.exe','Start a Green Revolution!','Become a green energy tycoon in this progressive word game!','false',false,false,'Word Power The Green Revolutio');ag(118840703,'Love At First Sight','/images/games/LOVEATFIRSTSIGHT/LOVEATFIRSTSIGHT81x46.gif',110083820,118905340,'396bb5ce-4be5-4f04-8261-4eea661e8c4b','false','/images/games/LOVEATFIRSTSIGHT/LOVEATFIRSTSIGHT16x16.gif',false,11323,'/images/games/LOVEATFIRSTSIGHT/LOVEATFIRSTSIGHT100x75.jpg','/images/games/LOVEATFIRSTSIGHT/LOVEATFIRSTSIGHT179x135.jpg','/images/games/LOVEATFIRSTSIGHT/LOVEATFIRSTSIGHT320x240.jpg','false','/images/games/thumbnails_med_2/LOVEATFIRSTSIGHT130x75.gif','','Matches are now made by you!','Play Cupid, spread the love and match the couples.','true',false,false,'Love At First Sight OL');ag(118841433,'Love Cab','/images/games/lovecab/lovecab81x46.gif',110083820,11890690,'9e4c53a4-3e3e-4c6d-967c-169f712a369e','false','/images/games/lovecab/lovecab16x16.gif',false,11323,'/images/games/lovecab/lovecab100x75.jpg','/images/games/lovecab/lovecab179x135.jpg','/images/games/lovecab/lovecab320x240.jpg','false','/images/games/thumbnails_med_2/lovecab130x75.gif','','Pucker up in a cab!','Dare to pucker up with your sweetie… in a cab.','true',false,false,'Love Cab OL');ag(118844217,'Reincarnationist','/images/games/Reincarnationist/Reincarnationist81x46.gif',110083820,118909807,'94f2c28b-62a4-4759-bd03-a3951281501c','false','/images/games/Reincarnationist/Reincarnationist16x16.gif',false,11323,'/images/games/Reincarnationist/Reincarnationist100x75.jpg','/images/games/Reincarnationist/Reincarnationist179x135.jpg','/images/games/Reincarnationist/Reincarnationist320x240.jpg','false','/images/games/thumbnails_med_2/Reincarnationist130x75.gif','','Find the Differences','Spot the differences in this story adventure about reincarnation.','true',false,false,'Reincarnationist OL AS3');ag(118858610,'The Mystery of the Crystal Portal','/images/games/TheMysteryOfTheCrystalPortal/TheMysteryOfTheCrystalPortal81x46.gif',110083820,118924573,'ae2c6277-a028-4ebf-a7e8-488b7da2963c','false','/images/games/TheMysteryOfTheCrystalPortal/TheMysteryOfTheCrystalPortal16x16.gif',false,11323,'/images/games/TheMysteryOfTheCrystalPortal/TheMysteryOfTheCrystalPortal100x75.jpg','/images/games/TheMysteryOfTheCrystalPortal/TheMysteryOfTheCrystalPortal179x135.jpg','/images/games/TheMysteryOfTheCrystalPortal/TheMysteryOfTheCrystalPortal320x240.jpg','false','/images/games/thumbnails_med_2/TheMysteryOfTheCrystalPortal130x75.gif','','Find a missing archeologist!','Find an archeologist who disappears after making a shocking discovery!','true',false,false,'The Mystery Crystal Portal OL');ag(118859733,'Prose and Motion','/images/games/ProseAndMotion/ProseAndMotion81x46.gif',110082753,118925300,'cae3da44-c333-4ecd-af13-84953c4064cf','false','/images/games/ProseAndMotion/ProseAndMotion16x16.gif',false,11323,'/images/games/ProseAndMotion/ProseAndMotion100x75.jpg','/images/games/ProseAndMotion/ProseAndMotion179x135.jpg','/images/games/ProseAndMotion/ProseAndMotion320x240.jpg','false','/images/games/ProseAndMotion/blank_ProseAndMotion130x75.gif','','Solve physical word puzzles','Solve the word-puzzles in this physics game.','true',false,false,'Prose And Motion OL AS3');ag(118860183,'Blind Date','/images/games/BlindDate/BlindDate81x46.gif',110083820,118926793,'8da01ab6-4ff9-4408-ac72-6579516a7993','false','/images/games/BlindDate/BlindDate16x16.gif',false,11323,'/images/games/BlindDate/BlindDate100x75.jpg','/images/games/BlindDate/BlindDate179x135.jpg','/images/games/BlindDate/BlindDate320x240.jpg','false','/images/games/thumbnails_med_2/BlindDate130x75.gif','','Get set up on a Blind Date.','Can’t get a date? Let us set you up on a blind one!','true',false,false,'Blind Date OL');ag(118861580,'Funny Babysitter','/images/games/FunnyBabysitter/FunnyBabysitter81x46.gif',110083820,118927223,'b71931c1-5e61-41a6-93e4-8264222de3be','false','/images/games/FunnyBabysitter/FunnyBabysitter16x16.gif',false,11323,'/images/games/FunnyBabysitter/FunnyBabysitter100x75.jpg','/images/games/FunnyBabysitter/FunnyBabysitter179x135.jpg','/images/games/FunnyBabysitter/FunnyBabysitter320x240.jpg','false','/images/games/thumbnails_med_2/FunnyBabysitter130x75.gif','','Babysitting will not be boring anymore!','Babysitter is home… time to let the tricks roll!','true',false,false,'Funny Babysitter OL');ag(118863423,'Oriental Dreams','/images/games/OrientalDreams/OrientalDreams81x46.gif',1007,1189297,'','false','/images/games/OrientalDreams/OrientalDreams16x16.gif',false,11323,'/images/games/OrientalDreams/OrientalDreams100x75.jpg','/images/games/OrientalDreams/OrientalDreams179x135.jpg','/images/games/OrientalDreams/OrientalDreams320x240.jpg','false','/images/games/thumbnails_med_2/OrientalDreams130x75.gif','/exe/oriental_dreams_06452891-setup.exe?lc=en&ext=oriental_dreams_06452891-setup.exe','Clear a Board of Colored Runes!','Clear a board of colored runes by matching three or more stones!','false',false,false,'Oriental Dreams');ag(118864920,'Funny Mall','/images/games/FunnyMall/FunnyMall81x46.gif',110083820,118930507,'01419813-eeca-4b48-b680-9e4b8edd15cf','false','/images/games/FunnyMall/FunnyMall16x16.gif',false,11323,'/images/games/FunnyMall/FunnyMall100x75.jpg','/images/games/FunnyMall/FunnyMall179x135.jpg','/images/games/FunnyMall/FunnyMall320x240.jpg','false','/images/games/thumbnails_med_2/FunnyMall130x75.gif','','Shopping with a dose of laughter!','Shop… and laugh through it all. Welcome to the Funny Mall!','true',false,false,'Funny Mall OL');ag(118866393,'The Treasures of Montezuma 2','/images/games/treasures_of_montezuma2/treasures_of_montezuma281x46.gif',110083820,118932363,'03520c14-f39c-4d5e-8c47-fe55e4b527ab','false','/images/games/treasures_of_montezuma2/treasures_of_montezuma216x16.gif',false,11323,'/images/games/treasures_of_montezuma2/treasures_of_montezuma2100x75.jpg','/images/games/treasures_of_montezuma2/treasures_of_montezuma2179x135.jpg','/images/games/treasures_of_montezuma2/treasures_of_montezuma2320x240.jpg','false','/images/games/thumbnails_med_2/treasures_of_montezuma2130x75.gif','','Return to the Match-3 Jungle!','Return to the jungle for more match-3 levels, more challenges, and more fun! ','true',false,false,'Treasures of Montezuma2 OLAS3');ag(118868873,'Ashtons Family Resort','/images/games/AshtonsFamilyResort/AshtonsFamilyResort81x46.gif',110127790,118934287,'','false','/images/games/AshtonsFamilyResort/AshtonsFamilyResort16x16.gif',false,11323,'/images/games/AshtonsFamilyResort/AshtonsFamilyResort100x75.jpg','/images/games/AshtonsFamilyResort/AshtonsFamilyResort179x135.jpg','/images/games/AshtonsFamilyResort/AshtonsFamilyResort320x240.jpg','false','/images/games/thumbnails_med_2/AshtonsFamilyResort130x75.gif','/exe/ashtons_family_resort_44581120-setup.exe?lc=en&ext=ashtons_family_resort_44581120-setup.exe','Launch Your Own Tourist Business!','Launch a tourist business and travel the world with the Ashtons!','false',false,false,'Ashtons Family Resort');ag(118869860,'Special Enquiry Detail','/images/games/SpecialEnquiryDetail/SpecialEnquiryDetail81x46.gif',1100710,118935480,'','false','/images/games/SpecialEnquiryDetail/SpecialEnquiryDetail16x16.gif',false,11323,'/images/games/SpecialEnquiryDetail/SpecialEnquiryDetail100x75.jpg','/images/games/SpecialEnquiryDetail/SpecialEnquiryDetail179x135.jpg','/images/games/SpecialEnquiryDetail/SpecialEnquiryDetail320x240.jpg','false','/images/games/thumbnails_med_2/SpecialEnquiryDetail130x75.gif','/exe/special_enquiry_detail_65412384-setup.exe?lc=en&ext=special_enquiry_detail_65412384-setup.exe','Solve the Scandalous Murder of Carmody Phelps!','Solve the scandalous murder of Carmody Phelps, daughter of rich charity fundraisers!','false',false,false,'Special Enquiry Detail');ag(118870313,'Mystery Masterpiece: The Moonstone','/images/games/mystery_masterpiece/mystery_masterpiece81x46.gif',110015873,118936267,'e42ba049-febb-4e9e-a6e2-ff8b053a4231','false','/images/games/mystery_masterpiece/mystery_masterpiece16x16.gif',false,11323,'/images/games/mystery_masterpiece/mystery_masterpiece100x75.jpg','/images/games/mystery_masterpiece/mystery_masterpiece179x135.jpg','/images/games/mystery_masterpiece/mystery_masterpiece320x240.jpg','false','/images/games/thumbnails_med_2/mystery_masterpiece130x75.gif','','Catch the Diamond Thief!','Catch the diamond thief and unravel the Moonstone’s mysterious past!','true',false,false,'Mystery Masterpiece:Moon OLAS3');ag(118872260,'Funny Beach','/images/games/FunnyBeach/FunnyBeach81x46.gif',110083820,118938957,'57b66fed-012d-4df7-a3f3-c28c606415c0','false','/images/games/FunnyBeach/FunnyBeach16x16.gif',false,11323,'/images/games/FunnyBeach/FunnyBeach100x75.jpg','/images/games/FunnyBeach/FunnyBeach179x135.jpg','/images/games/FunnyBeach/FunnyBeach320x240.jpg','false','/images/games/thumbnails_med_2/FunnyBeach130x75.gif','','Swim in the beach fun!','Dive into the waves of fun on the Funny Beach.','true',false,false,'Funny Beach OL');ag(118874543,'Natalie Brooks','/images/games/natalie_brooks/natalie_brooks81x46.gif',110015873,118940497,'82601fae-d023-4019-bf37-aa98876186c8','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','','Explore a house full of secrets! ','Help Natalie find items in a house full of secrets! ','true',false,false,'Natalie Brooks OL AS3');ag(118877613,'Nick Chase Deadly Diamond','/images/games/NickChaseDeadlyDiamond/NickChaseDeadlyDiamond81x46.gif',1100710,118943247,'','false','/images/games/NickChaseDeadlyDiamond/NickChaseDeadlyDiamond16x16.gif',false,11323,'/images/games/NickChaseDeadlyDiamond/NickChaseDeadlyDiamond100x75.jpg','/images/games/NickChaseDeadlyDiamond/NickChaseDeadlyDiamond179x135.jpg','/images/games/NickChaseDeadlyDiamond/NickChaseDeadlyDiamond320x240.jpg','false','/images/games/thumbnails_med_2/NickChaseDeadlyDiamond130x75.gif','/exe/nick_chase_deadly_diamond_54500057-setup.exe?lc=en&ext=nick_chase_deadly_diamond_54500057-setup.exe','Crack the Case of this Cursed Artifact!','Crack the case of a mysteriously delivered ancient artifact!','false',false,false,'Nick Chase Deadly Diamond');ag(118878390,'Jolly Rover','/images/games/JollyRover/JollyRover81x46.gif',0,118944153,'','false','/images/games/JollyRover/JollyRover16x16.gif',false,11323,'/images/games/JollyRover/JollyRover100x75.jpg','/images/games/JollyRover/JollyRover179x135.jpg','/images/games/JollyRover/JollyRover320x240.jpg','false','/images/games/thumbnails_med_2/JollyRover130x75.gif','/exe/jolly_rover_90318511-setup.exe?lc=en&ext=jolly_rover_90318511-setup.exe','A Point-and-click Adventure with Pirate Pooches!','A comedic 2D point-and click-adventure featuring crazy pirate pooches!','false',false,false,'Jolly Rover');ag(118891640,'Ranch Rush 2','/images/games/RanchRush2/RanchRush281x46.gif',0,118957620,'','false','/images/games/RanchRush2/RanchRush216x16.gif',false,11323,'/images/games/RanchRush2/RanchRush2100x75.jpg','/images/games/RanchRush2/RanchRush2179x135.jpg','/images/games/RanchRush2/RanchRush2320x240.jpg','false','/images/games/thumbnails_med_2/RanchRush2130x75.gif','/exe/ranch_rush_2_53745593-setup.exe?lc=en&ext=ranch_rush_2_53745593-setup.exe','Sara Returns with a Tropical Time Management!','Sara returns with a tropical time management! Harvest crops and raise exotic animals!','false',false,false,'Ranch Rush 2 Standard');ag(118893430,'Magic Encyclopedia Illusions','/images/games/MagicEncyclopediaIllusions/MagicEncyclopediaIllusions81x46.gif',1100710,118959127,'','false','/images/games/MagicEncyclopediaIllusions/MagicEncyclopediaIllusions16x16.gif',false,11323,'/images/games/MagicEncyclopediaIllusions/MagicEncyclopediaIllusions100x75.jpg','/images/games/MagicEncyclopediaIllusions/MagicEncyclopediaIllusions179x135.jpg','/images/games/MagicEncyclopediaIllusions/MagicEncyclopediaIllusions320x240.jpg','false','/images/games/thumbnails_med_2/MagicEncyclopediaIllusions130x75.gif','/exe/MagicEncyclopedia_54698236-setup.exe?lc=en&ext=MagicEncyclopedia_54698236-setup.exe','Save the Magic Academy!','Help Catherine learn about the Illusionist and save the Magic Academy!','false',false,false,'Magic Encyclopedia Illusions');ag(118894440,'Gwen The Magic Nanny','/images/games/GwenTheMagicNanny/GwenTheMagicNanny81x46.gif',110127790,118960917,'','false','/images/games/GwenTheMagicNanny/GwenTheMagicNanny16x16.gif',false,11323,'/images/games/GwenTheMagicNanny/GwenTheMagicNanny100x75.jpg','/images/games/GwenTheMagicNanny/GwenTheMagicNanny179x135.jpg','/images/games/GwenTheMagicNanny/GwenTheMagicNanny320x240.jpg','false','/images/games/thumbnails_med_2/GwenTheMagicNanny130x75.gif','/exe/gwen_the_magic_nanny_65481212-setup.exe?lc=en&ext=gwen_the_magic_nanny_65481212-setup.exe','Care for Seven Fantastical Families!','Care for seven fantastical families in this magical time management!','false',false,false,'Gwen The Magic Nanny');ag(118896530,'Agatha Christie 4:50 from Paddington','/images/games/agatha_christie_450/agatha_christie_45081x46.gif',1100710,118962187,'','false','/images/games/agatha_christie_450/agatha_christie_45016x16.gif',false,11323,'/images/games/agatha_christie_450/agatha_christie_450100x75.jpg','/images/games/agatha_christie_450/agatha_christie_450179x135.jpg','/images/games/agatha_christie_450/agatha_christie_450320x240.jpg','false','/images/games/thumbnails_med_2/agatha_christie_450130x75.gif','/exe/agatha_christie_4_46879135-setup.exe?lc=en&ext=agatha_christie_4_46879135-setup.exe','All aboard … for murder.','Pack your bags for murder in this classic Miss Marple adventure.','false',false,false,'Agatha Christie 4 STD');ag(118897587,'Bridal Party Bundle – 2 in 1','/images/games/bridal_party_bundle/bridal_party_bundle81x46.gif',1100710,118963257,'','false','/images/games/bridal_party_bundle/bridal_party_bundle16x16.gif',false,11323,'/images/games/bridal_party_bundle/bridal_party_bundle100x75.jpg','/images/games/bridal_party_bundle/bridal_party_bundle179x135.jpg','/images/games/bridal_party_bundle/bridal_party_bundle320x240.jpg','false','/images/games/thumbnails_med_2/bridal_party_bundle130x75.gif','/exe/bridal_party_bundle_12349876-setup.exe?lc=en&ext=bridal_party_bundle_12349876-setup.exe','Romantic Wedding Madness –two games in one!','Two romantic worlds of steamy and exotic wedding madness - two games in one!','false',false,false,'Bridal Party Bundle');ag(118901183,'Escape The Lost Kingdom','/images/games/EscapeTheLostKingdom/EscapeTheLostKingdom81x46.gif',1100710,118967137,'','false','/images/games/EscapeTheLostKingdom/EscapeTheLostKingdom16x16.gif',false,11323,'/images/games/EscapeTheLostKingdom/EscapeTheLostKingdom100x75.jpg','/images/games/EscapeTheLostKingdom/EscapeTheLostKingdom179x135.jpg','/images/games/EscapeTheLostKingdom/EscapeTheLostKingdom320x240.jpg','false','/images/games/thumbnails_med_2/EscapeTheLostKingdom130x75.gif','/exe/escape_the_lost_kingdom_85125250-setup.exe?lc=en&ext=escape_the_lost_kingdom_85125250-setup.exe','Reunite a Family Within an Egyptian Tomb!','Reunite a family lost in an Egyptian Pharaoh’s fogotten tomb!','false',false,false,'Escape Lost Kingdom');ag(118904783,'Perfect Date','/images/games/PerfectDate/PerfectDate81x46.gif',110083820,118970413,'dfaeda4b-6b75-4e09-b18f-e4882c8bffc1','false','/images/games/PerfectDate/PerfectDate16x16.gif',false,11323,'/images/games/PerfectDate/PerfectDate100x75.jpg','/images/games/PerfectDate/PerfectDate179x135.jpg','/images/games/PerfectDate/PerfectDate320x240.jpg','false','/images/games/thumbnails_med_2/PerfectDate130x75.gif','','Impress the perfect guy!','Set a Perfect Date for your perfect guy… because he’s worth it.','true',false,false,'Perfect Date OL');ag(118905820,'Match 2 Thrill','/images/games/Match2Thrill/Match2Thrill81x46.gif',110083820,11897163,'eb5fa5dd-f788-46ba-887b-9fe6200b51bc','false','/images/games/Match2Thrill/Match2Thrill16x16.gif',false,11323,'/images/games/Match2Thrill/Match2Thrill100x75.jpg','/images/games/Match2Thrill/Match2Thrill179x135.jpg','/images/games/Match2Thrill/Match2Thrill320x240.jpg','false','/images/games/thumbnails_med_2/Match2Thrill130x75.gif','','Dress up to match up.','Dress up to match your partner and get set to thrill.','true',false,false,'Match 2 Thrill OL');ag(118907407,'Cookie Time','/images/games/CookieTime/CookieTime81x46.gif',110083820,11897443,'b3f3a461-b2ae-4c59-86ff-14325add6138','false','/images/games/CookieTime/CookieTime16x16.gif',false,11323,'/images/games/CookieTime/CookieTime100x75.jpg','/images/games/CookieTime/CookieTime179x135.jpg','/images/games/CookieTime/CookieTime320x240.jpg','false','/images/games/thumbnails_med_2/CookieTime130x75.gif','','Get the baby his cookie.','Feed the hungry baby, get him to his cookie.','true',false,false,'Cookie_Time OL');ag(118908937,'Suzies Salon','/images/games/SuziesSalon/SuziesSalon81x46.gif',110083820,118975537,'a936e576-28d9-4746-a3ce-e503475c0560','false','/images/games/SuziesSalon/SuziesSalon16x16.gif',false,11323,'/images/games/SuziesSalon/SuziesSalon100x75.jpg','/images/games/SuziesSalon/SuziesSalon179x135.jpg','/images/games/SuziesSalon/SuziesSalon320x240.jpg','false','/images/games/thumbnails_med_2/SuziesSalon130x75.gif','','Run the best salon in town!','It’s the best salon in town and you are in charge.','true',false,false,'Suzies Salon OL');ag(118909700,'Dress Up Rush','/images/games/DressUpRush/DressUpRush81x46.gif',110127790,118976393,'','false','/images/games/DressUpRush/DressUpRush16x16.gif',false,11323,'/images/games/DressUpRush/DressUpRush100x75.jpg','/images/games/DressUpRush/DressUpRush179x135.jpg','/images/games/DressUpRush/DressUpRush320x240.jpg','false','/images/games/thumbnails_med_2/DressUpRush130x75.gif','/exe/dress_up_rush_44537710-setup.exe?lc=en&ext=dress_up_rush_44537710-setup.exe','Manage Your Own Fashion Boutique!','Explore the world of fashion by helping Jane manage her boutique!','false',false,false,'Dress Up Rush');ag(118911610,'Spirit of Wandering The Legend','/images/games/SpiritofWanderingTheLegend/SpiritofWanderingTheLegend81x46.gif',1100710,118978340,'','false','/images/games/SpiritofWanderingTheLegend/SpiritofWanderingTheLegend16x16.gif',false,11323,'/images/games/SpiritofWanderingTheLegend/SpiritofWanderingTheLegend100x75.jpg','/images/games/SpiritofWanderingTheLegend/SpiritofWanderingTheLegend179x135.jpg','/images/games/SpiritofWanderingTheLegend/SpiritofWanderingTheLegend320x240.jpg','false','/images/games/thumbnails_med_2/SpiritofWanderingTheLegend130x75.gif','/exe/spirit_of_wandering_the_legend_02934378-setup.exe?lc=en&ext=spirit_of_wandering_the_legend_02934378-setup.exe','A Sea Captain’s Search for Lost Love!','Join an adventurous sea captain’s search for her lost love!','false',false,false,'Spirit of Wandering The Legend');ag(118913547,'Super Mom 2','/images/games/SuperMom2/SuperMom281x46.gif',110083820,118980170,'539bd255-725b-4eca-80e2-560788184175','false','/images/games/SuperMom2/SuperMom216x16.gif',false,11323,'/images/games/SuperMom2/SuperMom2100x75.jpg','/images/games/SuperMom2/SuperMom2179x135.jpg','/images/games/SuperMom2/SuperMom2320x240.jpg','false','/images/games/thumbnails_med_2/SuperMom2130x75.gif','','Two babies. One mom!','One is not enough. You gotta handle twins this time!','true',false,false,'Super Mom 2 OL');ag(118922420,'West Coast Swing Bundle','/images/games/West_Coast_Swing_Bundle/West_Coast_Swing_Bundle81x46.gif',1100710,11898970,'','false','/images/games/West_Coast_Swing_Bundle/West_Coast_Swing_Bundle16x16.gif',false,11323,'/images/games/West_Coast_Swing_Bundle/West_Coast_Swing_Bundle100x75.jpg','/images/games/West_Coast_Swing_Bundle/West_Coast_Swing_Bundle179x135.jpg','/images/games/West_Coast_Swing_Bundle/West_Coast_Swing_Bundle320x240.jpg','false','/images/games/thumbnails_med_2/West_Coast_Swing_Bundle130x75.gif','/exe/west_coast_swing_bundle_87439921-setup.exe?lc=en&ext=west_coast_swing_bundle_87439921-setup.exe','Seek-and-Find Your Way from the Emerald City to Sin City!','Seek-and-Find Your Way from the Emerald City to Sin City! Two Games, One Download!','false',false,false,'West Coast Swing Bundle');ag(118923647,'International Romance Bundle','/images/games/international_romance_bundle/international_romance_bundle81x46.gif',1100710,118990350,'','false','/images/games/international_romance_bundle/international_romance_bundle16x16.gif',false,11323,'/images/games/international_romance_bundle/international_romance_bundle100x75.jpg','/images/games/international_romance_bundle/international_romance_bundle179x135.jpg','/images/games/international_romance_bundle/international_romance_bundle320x240.jpg','false','/images/games/thumbnails_med_2/international_romance_bundle130x75.gif','/exe/international_romance_bundle_93932234-setup.exe?lc=en&ext=international_romance_bundle_93932234-setup.exe','Exotic Tales of Love and Adventure!','Exotic tales of love and adventure - two games in one!','false',false,false,'International Romance Bundle');ag(118926283,'Good Night Kiss 2','/images/games/GoodNightKiss2/GoodNightKiss281x46.gif',110083820,118993913,'6370a62a-6ad4-4ed2-a3a3-bf08969a91d5','false','/images/games/GoodNightKiss2/GoodNightKiss216x16.gif',false,11323,'/images/games/GoodNightKiss2/GoodNightKiss2100x75.jpg','/images/games/GoodNightKiss2/GoodNightKiss2179x135.jpg','/images/games/GoodNightKiss2/GoodNightKiss2320x240.jpg','false','/images/games/thumbnails_med_2/GoodNightKiss2130x75.gif','','Pucker up all night long.','Pucker up with your love and make this a night to remember.','true',false,false,'GoodNight Kiss 2 OL');ag(118927913,'Baby Restaurant','/images/games/BabyRestaurant/BabyRestaurant81x46.gif',110083820,118994550,'cc8d283c-91de-4f9f-b255-25070b32076d','false','/images/games/BabyRestaurant/BabyRestaurant16x16.gif',false,11323,'/images/games/BabyRestaurant/BabyRestaurant100x75.jpg','/images/games/BabyRestaurant/BabyRestaurant179x135.jpg','/images/games/BabyRestaurant/BabyRestaurant320x240.jpg','false','/images/games/thumbnails_med_2/BabyRestaurant130x75.gif','','Only babies are allowed here.','These bawling babies need food! Serve them right.','true',false,false,'Baby Restaurant OL');ag(118929827,'Farm Craft 2','/images/games/FarmCraft2/FarmCraft281x46.gif',110127790,118996347,'','false','/images/games/FarmCraft2/FarmCraft216x16.gif',false,11323,'/images/games/FarmCraft2/FarmCraft2100x75.jpg','/images/games/FarmCraft2/FarmCraft2179x135.jpg','/images/games/FarmCraft2/FarmCraft2320x240.jpg','false','/images/games/thumbnails_med_2/FarmCraft2130x75.gif','/exe/farm_craft_2_54881055-setup.exe?lc=en&ext=farm_craft_2_54881055-setup.exe','Stop the Global Vegetable Crisis!','Help Ginger put an end to experimental agriculture!','false',false,false,'Farm Craft 2');ag(118930787,'Slingo Quest Egypt','/images/games/slingo_quest_egypt/slingo_quest_egypt81x46.gif',1007,118997443,'','false','/images/games/slingo_quest_egypt/slingo_quest_egypt16x16.gif',false,11323,'/images/games/slingo_quest_egypt/slingo_quest_egypt100x75.jpg','/images/games/slingo_quest_egypt/slingo_quest_egypt179x135.jpg','/images/games/slingo_quest_egypt/slingo_quest_egypt320x240.jpg','false','/images/games/thumbnails_med_2/slingo_quest_egypt130x75.gif','/exe/slingo_quest_egypt_98751210-setup.exe?lc=en&ext=slingo_quest_egypt_98751210-setup.exe','A New, Exotic Slingo Adventure!','Join the Slingo Cherubs on an exotic adventure to ancient Egypt!','false',false,false,'Slingo Quest Egypt');ag(118932177,'Celebrity Snapshot','/images/games/CelebritySnapshot/CelebritySnapshot81x46.gif',110083820,118999810,'baa5b376-a504-41f0-88a2-e4b6fb09b65b','false','/images/games/CelebritySnapshot/CelebritySnapshot16x16.gif',false,11323,'/images/games/CelebritySnapshot/CelebritySnapshot100x75.jpg','/images/games/CelebritySnapshot/CelebritySnapshot179x135.jpg','/images/games/CelebritySnapshot/CelebritySnapshot320x240.jpg','false','/images/games/thumbnails_med_2/CelebritySnapshot130x75.gif','','Time to capture the stars.','Capture the stars… at their best and their lowest.','true',false,false,'Celebrity Snapshot OL');ag(118933957,'Escape The Eye Specialist','/images/games/EscapeTheEyeSpecialist/EscapeTheEyeSpecialist81x46.gif',110083820,119000643,'9347fac3-2a50-48cf-ac9b-2746e0d66fc0','false','/images/games/EscapeTheEyeSpecialist/EscapeTheEyeSpecialist16x16.gif',false,11323,'/images/games/EscapeTheEyeSpecialist/EscapeTheEyeSpecialist100x75.jpg','/images/games/EscapeTheEyeSpecialist/EscapeTheEyeSpecialist179x135.jpg','/images/games/EscapeTheEyeSpecialist/EscapeTheEyeSpecialist320x240.jpg','false','/images/games/thumbnails_med_2/EscapeTheEyeSpecialist130x75.gif','','Sandra is trapped in the doctor&rsquo;s clinic!','Sandra hates doctors. Help her escape her doctor’s clinic.','true',false,false,'Escape The Eye Specialist OL');ag(118946477,'Lilly Wu and the Terra Cotta Mystery','/images/games/LillyWuandtheTerraCottaMystery/LillyWuandtheTerraCottaMystery81x46.gif',0,119013113,'','false','/images/games/LillyWuandtheTerraCottaMystery/LillyWuandtheTerraCottaMystery16x16.gif',false,11323,'/images/games/LillyWuandtheTerraCottaMystery/LillyWuandtheTerraCottaMystery100x75.jpg','/images/games/LillyWuandtheTerraCottaMystery/LillyWuandtheTerraCottaMystery179x135.jpg','/images/games/LillyWuandtheTerraCottaMystery/LillyWuandtheTerraCottaMystery320x240.jpg','false','/images/games/thumbnails_med_2/LillyWuandtheTerraCottaMystery130x75.gif','/exe/lilly_wuand__terra_cotta_mystery_09450054-setup.exe?lc=en&ext=lilly_wuand__terra_cotta_mystery_09450054-setup.exe','Investigate an Ancient Chinese Mystery!','Lead a forensic expedition to investigate a 2,000-year-old Chinese mystery!','false',false,false,'Lilly Wuand Terra Cotta Myster');ag(118947347,'Super Smasher','/images/games/SuperSmasher/SuperSmasher81x46.gif',0,119014997,'','false','/images/games/SuperSmasher/SuperSmasher16x16.gif',false,11323,'/images/games/SuperSmasher/SuperSmasher100x75.jpg','/images/games/SuperSmasher/SuperSmasher179x135.jpg','/images/games/SuperSmasher/SuperSmasher320x240.jpg','false','/images/games/thumbnails_med_2/SuperSmasher130x75.gif','/exe/super_smasher_06445911-setup.exe?lc=en&ext=super_smasher_06445911-setup.exe','An Amusement Park Packed with Hilarious Fun!','An amusement park packed with hilarious shooting, punching, and smashing fun!','false',false,false,'Super Smasher');ag(118981857,'Star Fish','/images/games/star_fish/star_fish81x46.gif',110015873,119049483,'818b7464-11ef-4672-9cb4-26a8a765407c','false','/images/games/star_fish/star_fish16x16.gif',false,11323,'/images/games/star_fish/star_fish100x75.jpg','/images/games/star_fish/star_fish179x135.jpg','/images/games/star_fish/star_fish320x240.jpg','false','/images/games/thumbnails_med_2/star_fish130x75.gif','','It&rsquo;s an aquatic adventure of a small fish!','It&rsquo;s an aquatic adventure of a small fish! Help it speed below the sea to catch those pesky star fish.','true',false,false,'Star_Fish OLT1 AS3');ag(118985520,'Back Home','/images/games/BackHome/BackHome81x46.gif',110083820,119053190,'91c2adfe-fcba-4e87-a9df-aed449212563','false','/images/games/BackHome/BackHome16x16.gif',false,11323,'/images/games/BackHome/BackHome100x75.jpg','/images/games/BackHome/BackHome179x135.jpg','/images/games/BackHome/BackHome320x240.jpg','false','/images/games/thumbnails_med_2/BackHome130x75.gif','','Help Max escape from recycle factory!','Max is a robot, he was sent to recycle factory, to be turned into spare parts!','true',false,false,'Back Home OL AS3');ag(119012210,'Paige Harper and the Tome of Mystery','/images/games/PaigeHarperandtheTomeofMystery/PaigeHarperandtheTomeofMystery81x46.gif',0,119081860,'','false','/images/games/PaigeHarperandtheTomeofMystery/PaigeHarperandtheTomeofMystery16x16.gif',false,11323,'/images/games/PaigeHarperandtheTomeofMystery/PaigeHarperandtheTomeofMystery100x75.jpg','/images/games/PaigeHarperandtheTomeofMystery/PaigeHarperandtheTomeofMystery179x135.jpg','/images/games/PaigeHarperandtheTomeofMystery/PaigeHarperandtheTomeofMystery320x240.jpg','false','/images/games/thumbnails_med_2/PaigeHarperandtheTomeofMystery130x75.gif','/exe/paige_harper_the_tome_of_mystery_92105445-setup.exe?lc=en&ext=paige_harper_the_tome_of_mystery_92105445-setup.exe','Literary Classics in Captivating 3D!','Classic literature comes to life in an immersive 3D seek-and-find!','false',false,false,'Paige Harper Tome of Mystery');ag(119013133,'Hotdog Hotshot','/images/games/HotdogHotshot/HotdogHotshot81x46.gif',110127790,119082587,'','false','/images/games/HotdogHotshot/HotdogHotshot16x16.gif',false,11323,'/images/games/HotdogHotshot/HotdogHotshot100x75.jpg','/images/games/HotdogHotshot/HotdogHotshot179x135.jpg','/images/games/HotdogHotshot/HotdogHotshot320x240.jpg','false','/images/games/thumbnails_med_2/HotdogHotshot130x75.gif','/exe/hotdog_hotshot_06853021-setup.exe?lc=en&ext=hotdog_hotshot_06853021-setup.exe','Fast Food Race in NYC!','Race to make the fastest food in a Big Apple game show!','false',false,false,'Hotdog Hotshot');ag(119014417,'Explorer Contraband Mystery','/images/games/ExplorerContrabandMystery/ExplorerContrabandMystery81x46.gif',1100710,11908380,'','false','/images/games/ExplorerContrabandMystery/ExplorerContrabandMystery16x16.gif',false,11323,'/images/games/ExplorerContrabandMystery/ExplorerContrabandMystery100x75.jpg','/images/games/ExplorerContrabandMystery/ExplorerContrabandMystery179x135.jpg','/images/games/ExplorerContrabandMystery/ExplorerContrabandMystery320x240.jpg','false','/images/games/thumbnails_med_2/ExplorerContrabandMystery130x75.gif','/exe/explorer_contraband_mystery_03648541-setup.exe?lc=en&ext=explorer_contraband_mystery_03648541-setup.exe','Expose a Black Market News Crew!','Help a National Geographic Explorer film crew bust a black market network!','false',false,false,'Explorer Contraband Mystery');ag(119022657,'Escape Whisper Valley','/images/games/EscapeWhisperValley/EscapeWhisperValley81x46.gif',1100710,119091300,'','false','/images/games/EscapeWhisperValley/EscapeWhisperValley16x16.gif',false,11323,'/images/games/EscapeWhisperValley/EscapeWhisperValley100x75.jpg','/images/games/EscapeWhisperValley/EscapeWhisperValley179x135.jpg','/images/games/EscapeWhisperValley/EscapeWhisperValley320x240.jpg','false','/images/games/thumbnails_med_2/EscapeWhisperValley130x75.gif','/exe/escape_whisper_valley_49756826-setup.exe?lc=en&ext=escape_whisper_valley_49756826-setup.exe','Seek Clues to Lead You Home!','Piece together clues to escape the abandoned mountain village!','false',false,false,'Escape Whisper Valley');ag(119023503,'Soccer Cup Solitaire','/images/games/SoccerCupSolitaire/SoccerCupSolitaire81x46.gif',1004,119092100,'','false','/images/games/SoccerCupSolitaire/SoccerCupSolitaire16x16.gif',false,11323,'/images/games/SoccerCupSolitaire/SoccerCupSolitaire100x75.jpg','/images/games/SoccerCupSolitaire/SoccerCupSolitaire179x135.jpg','/images/games/SoccerCupSolitaire/SoccerCupSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/SoccerCupSolitaire130x75.gif','/exe/soccer_cup_solitaire_87951022-setup.exe?lc=en&ext=soccer_cup_solitaire_87951022-setup.exe','Shoot to Score in Solitaire!','Play the world and shoot to score in Soccer Cup Solitaire!','false',false,false,'Soccer Cup Solitaire');ag(119024857,'Pet Lion','/images/games/PetLion/PetLion81x46.gif',110083820,119093447,'74250817-6d6a-471d-ba8a-33eadb6de692','false','/images/games/PetLion/PetLion16x16.gif',false,11323,'/images/games/PetLion/PetLion100x75.jpg','/images/games/PetLion/PetLion179x135.jpg','/images/games/PetLion/PetLion320x240.jpg','false','/images/games/thumbnails_med_2/PetLion130x75.gif','','Find the Differences','Find the difference in this cute story about a family and their lion.','true',false,false,'Pet Lion OL AS3');ag(119025623,'Brickz','/images/games/brickz/brickz81x46.gif',110015873,1190943,'2f5eee1d-ac8e-436d-af27-c9a43657c7bf','false','/images/games/brickz/brickz16x16.gif',false,11323,'/images/games/brickz/brickz100x75.jpg','/images/games/brickz/brickz179x135.jpg','/images/games/brickz/brickz320x240.jpg','false','/images/games/thumbnails_med_2/brickz130x75.gif','','Feel like architect!','Build your own tower, the highest tower in the whole world, improving your skills with every next cube!','true',false,false,'Brickz OLT1 AS3');ag(119035737,'Amelia Earhart','/images/games/AmeliaEarhart/AmeliaEarhart81x46.gif',1100710,119104377,'','false','/images/games/AmeliaEarhart/AmeliaEarhart16x16.gif',false,11323,'/images/games/AmeliaEarhart/AmeliaEarhart100x75.jpg','/images/games/AmeliaEarhart/AmeliaEarhart179x135.jpg','/images/games/AmeliaEarhart/AmeliaEarhart320x240.jpg','false','/images/games/thumbnails_med_2/AmeliaEarhart130x75.gif','/exe/amelia_earhart-06422207-setup.exe?lc=en&ext=amelia_earhart-06422207-setup.exe','Solve the Famed Pilot&rsquo;s Disappearance!','Join the Unsolved Mystery Club and solve the famed pilot&rsquo;s disappearance!','false',false,false,'Amelia Earhart');ag(119039243,'Fishdom 2™','/images/games/Fishdom2TM/Fishdom2TM81x46.gif',1007,119108213,'','false','/images/games/Fishdom2TM/Fishdom2TM16x16.gif',false,11323,'/images/games/Fishdom2TM/Fishdom2TM100x75.jpg','/images/games/Fishdom2TM/Fishdom2TM179x135.jpg','/images/games/Fishdom2TM/Fishdom2TM320x240.jpg','false','/images/games/thumbnails_med_2/Fishdom2TM130x75.gif','/exe/fishdom_2_09785421-setup.exe?lc=en&ext=fishdom_2_09785421-setup.exe','Match-3 Sequel of Colorful Tiles!','Swap colorful tiles and create aquariums in this match-3 sequel!','false',false,false,'Fishdom 2 Standard');ag(119041943,'World Mosaics 3 Fairy Tales','/images/games/WorldMosaics3FairyTales/WorldMosaics3FairyTales81x46.gif',1007,119110640,'','false','/images/games/WorldMosaics3FairyTales/WorldMosaics3FairyTales16x16.gif',false,11323,'/images/games/WorldMosaics3FairyTales/WorldMosaics3FairyTales100x75.jpg','/images/games/WorldMosaics3FairyTales/WorldMosaics3FairyTales179x135.jpg','/images/games/WorldMosaics3FairyTales/WorldMosaics3FairyTales320x240.jpg','false','/images/games/thumbnails_med_2/WorldMosaics3FairyTales130x75.gif','/exe/world_mosaics_3_fairy_tales_09535211-setup.exe?lc=en&ext=world_mosaics_3_fairy_tales_09535211-setup.exe','Adventure Puzzles within Beloved Literature!','Journey through works of beloved literature to solve magical puzzles!','false',false,false,'World Mosaics 3 Fairy Tales');ag(119042797,'Janes Realty 2','/images/games/JanesRealty2/JanesRealty281x46.gif',110127790,119111417,'','false','/images/games/JanesRealty2/JanesRealty216x16.gif',false,11323,'/images/games/JanesRealty2/JanesRealty2100x75.jpg','/images/games/JanesRealty2/JanesRealty2179x135.jpg','/images/games/JanesRealty2/JanesRealty2320x240.jpg','false','/images/games/thumbnails_med_2/JanesRealty2130x75.gif','/exe/janes_realty_2_06410004-setup.exe?lc=en&ext=janes_realty_2_06410004-setup.exe','Create a Resort in Paradise!','Help Jane to rebuild and decorate an earthquake-ravaged resort!','false',false,false,'Janes Realty 2');ag(119045237,'Classic Adventures: The Great Gatsby','/images/games/GreatGatsby/GreatGatsby81x46.gif',1100710,119114930,'','false','/images/games/GreatGatsby/GreatGatsby16x16.gif',false,11323,'/images/games/GreatGatsby/GreatGatsby100x75.jpg','/images/games/GreatGatsby/GreatGatsby179x135.jpg','/images/games/GreatGatsby/GreatGatsby320x240.jpg','false','/images/games/thumbnails_med_2/GreatGatsby130x75.gif','/exe/the_great_gatsby_83472093-setup.exe?lc=en&ext=the_great_gatsby_83472093-setup.exe','Bring this legendary American novel to life!','Bring the legendary American novel to life!','false',false,false,'The Great Gatsby');ag(119046213,'Patchgirlz','/images/games/patchgirlz/patchgirlz81x46.gif',110083820,119115880,'cfc71a70-7e06-4dd5-b2b4-a221dc45b15c','false','/images/games/patchgirlz/patchgirlz16x16.gif',false,11323,'/images/games/patchgirlz/patchgirlz100x75.jpg','/images/games/patchgirlz/patchgirlz179x135.jpg','/images/games/patchgirlz/patchgirlz320x240.jpg','false','/images/games/thumbnails_med_2/patchgirlz130x75.gif','','Welcome to the world of girls&rsquo; dreams!','Meet a really catching mosaic learning game with 30 motley colorful patterns.','true',true,true,'Patchgirlz OLT1 AS3');ag(119047870,'War Of Winds','/images/games/WarOfWinds/WarOfWinds81x46.gif',110015873,119116547,'ae08cb52-628b-4107-b9f2-949bce6b5c5d','false','/images/games/WarOfWinds/WarOfWinds16x16.gif',false,11323,'/images/games/WarOfWinds/WarOfWinds100x75.jpg','/images/games/WarOfWinds/WarOfWinds179x135.jpg','/images/games/WarOfWinds/WarOfWinds320x240.jpg','false','/images/games/thumbnails_med_2/WarOfWinds130x75.gif','','Find the Differences!','Spot the differences in this exciting comic based adventure.','true',false,false,'War Of Winds OL AS3');ag(119048960,'Paradise Quest','/images/games/paradise_quest/paradise_quest81x46.gif',110083820,119117903,'a1c62367-2ffc-4cee-914c-d300ff56e760','false','/images/games/paradise_quest/paradise_quest16x16.gif',false,11323,'/images/games/paradise_quest/paradise_quest100x75.jpg','/images/games/paradise_quest/paradise_quest179x135.jpg','/images/games/paradise_quest/paradise_quest320x240.jpg','false','/images/games/thumbnails_med_2/paradise_quest130x75.gif','','A revolutionary match-3 puzzle with a twist!','A revolutionary match-3 puzzle adventure with an all NEW twist!','true',true,true,'Paradise Quest OLT1 AS3');ag(119049160,'Cake Mania: Lights, Camera, Action!','/images/games/CakeManiaLightsCameraAction/CakeManiaLightsCameraAction81x46.gif',110127790,119118853,'','false','/images/games/CakeManiaLightsCameraAction/CakeManiaLightsCameraAction16x16.gif',false,11323,'/images/games/CakeManiaLightsCameraAction/CakeManiaLightsCameraAction100x75.jpg','/images/games/CakeManiaLightsCameraAction/CakeManiaLightsCameraAction179x135.jpg','/images/games/CakeManiaLightsCameraAction/CakeManiaLightsCameraAction320x240.jpg','false','/images/games/thumbnails_med_2/CakeManiaLightsCameraAction130x75.gif','/exe/cake_mania_lights_camera_action_03564200-setup.exe?lc=en&ext=cake_mania_lights_camera_action_03564200-setup.exe','Hollywood Takes Over Bakersfield!','Hollywood takes over Bakersfield in the fifth installment of the beloved series!','false',false,false,'Cake Mania: Lights Camera Acti');ag(119050163,'Grounded','/images/games/Grounded/Grounded81x46.gif',110083820,119119860,'d50f0d09-6f48-4adb-952d-e7d2799f43a7','false','/images/games/Grounded/Grounded16x16.gif',false,11323,'/images/games/Grounded/Grounded100x75.jpg','/images/games/Grounded/Grounded179x135.jpg','/images/games/Grounded/Grounded320x240.jpg','false','/images/games/thumbnails_med_2/Grounded130x75.gif','','Break out and have fun!','You gotta break out and have some fun!','true',false,false,'Grounded OL');ag(119054690,'Midnight Mysteries: Salem Witch Trials','/images/games/MidnightMysteriesSalemWitchTri/MidnightMysteriesSalemWitchTri81x46.gif',1100710,119123347,'','false','/images/games/MidnightMysteriesSalemWitchTri/MidnightMysteriesSalemWitchTri16x16.gif',false,11323,'/images/games/MidnightMysteriesSalemWitchTri/MidnightMysteriesSalemWitchTri100x75.jpg','/images/games/MidnightMysteriesSalemWitchTri/MidnightMysteriesSalemWitchTri179x135.jpg','/images/games/MidnightMysteriesSalemWitchTri/MidnightMysteriesSalemWitchTri320x240.jpg','false','/images/games/thumbnails_med_2/MidnightMysteriesSalemWitchTri130x75.gif','/exe/midnight_mysteries_salem_witch_98751004-setup.exe?lc=en&ext=midnight_mysteries_salem_witch_98751004-setup.exe','Unravel the Secrets of Salem!','Unravel the secrets of Salem’s accused witches and Hawthorne’s mysterious death!','false',false,false,'Midnight Mysteries Salem Witch');ag(119060997,'Spooky Love','/images/games/SpookyLove/SpookyLove81x46.gif',110083820,119129633,'2aed21f9-ef31-4bb2-86a9-0651e8f6f43c','false','/images/games/SpookyLove/SpookyLove16x16.gif',false,11323,'/images/games/SpookyLove/SpookyLove100x75.jpg','/images/games/SpookyLove/SpookyLove179x135.jpg','/images/games/SpookyLove/SpookyLove320x240.jpg','false','/images/games/thumbnails_med_2/SpookyLove130x75.gif','','Spend Halloween with a scary date!','Nothing says Halloween better than a really, really scary date.','true',false,false,'Spooky Love OL');ag(119061730,'The Style Store','/images/games/TheStyleStore/TheStyleStore81x46.gif',110083820,119130427,'0ecaee05-4104-4210-9e37-8b7f3aa8ca16','false','/images/games/TheStyleStore/TheStyleStore16x16.gif',false,11323,'/images/games/TheStyleStore/TheStyleStore100x75.jpg','/images/games/TheStyleStore/TheStyleStore179x135.jpg','/images/games/TheStyleStore/TheStyleStore320x240.jpg','false','/images/games/thumbnails_med_2/TheStyleStore130x75.gif','','Bring out your passion for fashion!','Bring out your passion for fashion and earn some dough along the way!','true',false,false,'The Style Store OL');ag(119062670,'Agent Heart','/images/games/AgentHeart/AgentHeart81x46.gif',110083820,119131230,'64d37592-7afd-4b1e-a0eb-a065de30ea58','false','/images/games/AgentHeart/AgentHeart16x16.gif',false,11323,'/images/games/AgentHeart/AgentHeart100x75.jpg','/images/games/AgentHeart/AgentHeart179x135.jpg','/images/games/AgentHeart/AgentHeart320x240.jpg','false','/images/games/thumbnails_med_2/AgentHeart130x75.gif','','Drop dead gorgeous and dangerous!','Help Agent Heart catch Kelly’s cheating boyfriend in the act!','true',false,false,'Agent Heart OL');ag(119063353,'Cruise Holidays','/images/games/CruiseHolidays/CruiseHolidays81x46.gif',110083820,11913247,'65bb7c25-8dfb-43c6-bab5-dce34ea3cd52','false','/images/games/CruiseHolidays/CruiseHolidays16x16.gif',false,11323,'/images/games/CruiseHolidays/CruiseHolidays100x75.jpg','/images/games/CruiseHolidays/CruiseHolidays179x135.jpg','/images/games/CruiseHolidays/CruiseHolidays320x240.jpg','false','/images/games/thumbnails_med_2/CruiseHolidays130x75.gif','','The funniest cruise is in town!','Hop onto the funniest cruise in town and enjoy your Cruise Holidays!','true',false,false,'Cruise Holidays OL');ag(119064340,'Funny Ice Cream Parlor','/images/games/FunnyIceCreamParlor/FunnyIceCreamParlor81x46.gif',110083820,11913320,'feb68206-e9b0-4bbd-a80a-eac711babb20','false','/images/games/FunnyIceCreamParlor/FunnyIceCreamParlor16x16.gif',false,11323,'/images/games/FunnyIceCreamParlor/FunnyIceCreamParlor100x75.jpg','/images/games/FunnyIceCreamParlor/FunnyIceCreamParlor179x135.jpg','/images/games/FunnyIceCreamParlor/FunnyIceCreamParlor320x240.jpg','false','/images/games/thumbnails_med_2/FunnyIceCreamParlor130x75.gif','','Sundaes with a lot of laughs!','Your sundaes now come with laughs for toppings.','true',false,false,'Funny Ice Cream Parlor OL');ag(119071350,'Brunhilda and the Dark Crystal','/images/games/BrunhildandtheDarkCrystal/BrunhildandtheDarkCrystal81x46.gif',1100710,11914030,'','false','/images/games/BrunhildandtheDarkCrystal/BrunhildandtheDarkCrystal16x16.gif',false,11323,'/images/games/BrunhildandtheDarkCrystal/BrunhildandtheDarkCrystal100x75.jpg','/images/games/BrunhildandtheDarkCrystal/BrunhildandtheDarkCrystal179x135.jpg','/images/games/BrunhildandtheDarkCrystal/BrunhildandtheDarkCrystal320x240.jpg','false','/images/games/thumbnails_med_2/BrunhildandtheDarkCrystal130x75.gif','/exe/brunhild_and_the_Dark_Crystal_09836622-setup.exe?lc=en&ext=brunhild_and_the_Dark_Crystal_09836622-setup.exe','An Epic Quest of Magic and Humor!','Save the Magic Realm in Brunhilda’s epic, mystical quest!','false',false,false,'Brunhilda and the Dark Crystal');ag(119073360,'Mystery Cruise','/images/games/MysteryCruise/MysteryCruise81x46.gif',1100710,11914250,'','false','/images/games/MysteryCruise/MysteryCruise16x16.gif',false,11323,'/images/games/MysteryCruise/MysteryCruise100x75.jpg','/images/games/MysteryCruise/MysteryCruise179x135.jpg','/images/games/MysteryCruise/MysteryCruise320x240.jpg','false','/images/games/thumbnails_med_2/MysteryCruise130x75.gif','/exe/mystery_cruise_09889450-setup.exe?lc=en&ext=mystery_cruise_09889450-setup.exe','Supernatural Encounters on the High Seas!','Find objects and solve a supernatural mystery on the high seas!','false',false,false,'Mystery Cruise');ag(119074567,'Super Jigsaw Americana','/images/games/SuperJigsawAmericana/SuperJigsawAmericana81x46.gif',0,119143250,'','false','/images/games/SuperJigsawAmericana/SuperJigsawAmericana16x16.gif',false,11323,'/images/games/SuperJigsawAmericana/SuperJigsawAmericana100x75.jpg','/images/games/SuperJigsawAmericana/SuperJigsawAmericana179x135.jpg','/images/games/SuperJigsawAmericana/SuperJigsawAmericana320x240.jpg','false','/images/games/thumbnails_med_2/SuperJigsawAmericana130x75.gif','/exe/super_jigsaw_americana_97498104-setup.exe?lc=en&ext=super_jigsaw_americana_97498104-setup.exe','Jigsaw Puzzles Depicting America&rsquo;s Splendor!','A vast collection of jigsaw puzzles depicting America&rsquo;s iconic splendors!','false',false,false,'Super Jigsaw Americana');ag(119076363,'High School Makeover','/images/games/HighSchoolMakeover/HighSchoolMakeover81x46.gif',110083820,11914577,'f62ba408-7601-4d1f-bb30-e4d0a3f84708','false','/images/games/HighSchoolMakeover/HighSchoolMakeover16x16.gif',false,11323,'/images/games/HighSchoolMakeover/HighSchoolMakeover100x75.jpg','/images/games/HighSchoolMakeover/HighSchoolMakeover179x135.jpg','/images/games/HighSchoolMakeover/HighSchoolMakeover320x240.jpg','false','/images/games/thumbnails_med_2/HighSchoolMakeover130x75.gif','','Time to dress up your date!','Dress up your date for the evening!','true',false,false,'High School Makeover OL');ag(119077673,'Makeover Madness','/images/games/MakeoverMadness/MakeoverMadness81x46.gif',110083820,119146370,'a10247b8-20ac-4cb3-b1c0-812bb6ad65d9','false','/images/games/MakeoverMadness/MakeoverMadness16x16.gif',false,11323,'/images/games/MakeoverMadness/MakeoverMadness100x75.jpg','/images/games/MakeoverMadness/MakeoverMadness179x135.jpg','/images/games/MakeoverMadness/MakeoverMadness320x240.jpg','false','/images/games/thumbnails_med_2/MakeoverMadness130x75.gif','','Time to get gorgeous!','Change the way you look and go mad on Makeover Madness.','true',false,false,'Makeover Madness OL');ag(119078983,'Escape The Camp','/images/games/EscapeTheCamp/EscapeTheCamp81x46.gif',110083820,119147673,'218157dc-4303-49c9-ac30-582561ce0694','false','/images/games/EscapeTheCamp/EscapeTheCamp16x16.gif',false,11323,'/images/games/EscapeTheCamp/EscapeTheCamp100x75.jpg','/images/games/EscapeTheCamp/EscapeTheCamp179x135.jpg','/images/games/EscapeTheCamp/EscapeTheCamp320x240.jpg','false','/images/games/thumbnails_med_2/EscapeTheCamp130x75.gif','','Ditch the boring camp… for love!','Make your way out of this camp… for love!','true',false,false,'Escape The Camp OL');ag(119079570,'Dreamy Eyes','/images/games/DreamyEyes/DreamyEyes81x46.gif',110083820,119148260,'8c6cbc94-1a59-4fe5-a2d7-c28036e00e9e','false','/images/games/DreamyEyes/DreamyEyes16x16.gif',false,11323,'/images/games/DreamyEyes/DreamyEyes100x75.jpg','/images/games/DreamyEyes/DreamyEyes179x135.jpg','/images/games/DreamyEyes/DreamyEyes320x240.jpg','false','/images/games/thumbnails_med_2/DreamyEyes130x75.gif','','Fall in love with the Dreamy Eyes.','Look in those dreamy eyes and fall in love at first sight!','true',false,false,'Dreamy Eyes OL');ag(119080983,'Penguin Families','/images/games/PenguinFamilies/PenguinFamilies81x46.gif',110083820,119149657,'215751f8-eb16-433b-98e8-93b3c8fb2a21','false','/images/games/PenguinFamilies/PenguinFamilies16x16.gif',false,11323,'/images/games/PenguinFamilies/PenguinFamilies100x75.jpg','/images/games/PenguinFamilies/PenguinFamilies179x135.jpg','/images/games/PenguinFamilies/PenguinFamilies320x240.jpg','false','/images/games/thumbnails_med_2/PenguinFamilies130x75.gif','','Help the penguins cross the river!','Plan carefully to let all the penguins cross the river.','true',true,true,'Penguin Families OLT1 AS3');ag(119081790,'Treasure Seekers 3: Follow the Ghosts','/images/games/TreasureSeekers3/TreasureSeekers381x46.gif',1100710,119150440,'','false','/images/games/TreasureSeekers3/TreasureSeekers316x16.gif',false,11323,'/images/games/TreasureSeekers3/TreasureSeekers3100x75.jpg','/images/games/TreasureSeekers3/TreasureSeekers3179x135.jpg','/images/games/TreasureSeekers3/TreasureSeekers3320x240.jpg','false','/images/games/thumbnails_med_2/TreasureSeekers3130x75.gif','/exe/treasure_seekers_3_39483343-setup.exe?lc=en&ext=treasure_seekers_3_39483343-setup.exe','Free the Trapped Ghosts!','Free the unlucky ghosts trapped by an evil alchemist!','false',false,false,'Treasure Seekers 3');ag(119087100,'Collapse! Bundle - 2 in 1','/images/games/collapse_bundle/collapse_bundle81x46.gif',0,119156370,'','false','/images/games/collapse_bundle/collapse_bundle16x16.gif',false,11323,'/images/games/collapse_bundle/collapse_bundle100x75.jpg','/images/games/collapse_bundle/collapse_bundle179x135.jpg','/images/games/collapse_bundle/collapse_bundle320x240.jpg','false','/images/games/thumbnails_med_2/collapse_bundle130x75.gif','/exe/super_collapse_bundle_09875121-setup.exe?lc=en&ext=super_collapse_bundle_09875121-setup.exe','Hundreds of High-powered Puzzles!','Hundreds of high-powered puzzles - two games in one download!','false',false,false,'Super Collapse! Bundle');ag(119090217,'Dr Despicables Dastardly Deeds','/images/games/DrDespicablesDastardlyDeeds/DrDespicablesDastardlyDeeds81x46.gif',0,119159900,'','false','/images/games/DrDespicablesDastardlyDeeds/DrDespicablesDastardlyDeeds16x16.gif',false,11323,'/images/games/DrDespicablesDastardlyDeeds/DrDespicablesDastardlyDeeds100x75.jpg','/images/games/DrDespicablesDastardlyDeeds/DrDespicablesDastardlyDeeds179x135.jpg','/images/games/DrDespicablesDastardlyDeeds/DrDespicablesDastardlyDeeds320x240.jpg','false','/images/games/thumbnails_med_2/DrDespicablesDastardlyDeeds130x75.gif','/exe/dr_despicables_dastardly_deeds_90984773-setup.exe?lc=en&ext=dr_despicables_dastardly_deeds_90984773-setup.exe','Ridiculous Inventions of a Mad Scientist!','Gather and match items to create a mad scientist&rsquo;s ridiculous inventions!','false',false,false,'Dr Despicables Dastardly Deeds');ag(119095307,'Vault Cracker','/images/games/VaultCracker/VaultCracker81x46.gif',1100710,119164330,'','false','/images/games/VaultCracker/VaultCracker16x16.gif',false,11323,'/images/games/VaultCracker/VaultCracker100x75.jpg','/images/games/VaultCracker/VaultCracker179x135.jpg','/images/games/VaultCracker/VaultCracker320x240.jpg','false','/images/games/thumbnails_med_2/VaultCracker130x75.gif','/exe/vault_cracker_87912054-setup.exe?lc=en&ext=vault_cracker_87912054-setup.exe','Solve the Kidnapping of Melissa&rsquo;s Son!','Rescue the kidnapped son of an infamous, elusive ex-burglar!','false',false,false,'Vault Cracker');ag(119100527,'World Flags Quiz','/images/games/WorldFlagsQuiz/WorldFlagsQuiz81x46.gif',110083820,119169230,'d0923314-a094-4b06-aa3c-207500de3193','false','/images/games/WorldFlagsQuiz/WorldFlagsQuiz16x16.gif',false,11323,'/images/games/WorldFlagsQuiz/WorldFlagsQuiz100x75.jpg','/images/games/WorldFlagsQuiz/WorldFlagsQuiz179x135.jpg','/images/games/WorldFlagsQuiz/WorldFlagsQuiz320x240.jpg','false','/images/games/thumbnails_med_2/WorldFlagsQuiz130x75.gif','','Check up your knowledge of national flags!','Choose the country in conformity with its national flag!','true',true,true,'World Flags Quiz OLT1 AS3');ag(119101613,'Forty Thieves Solitaire','/images/games/FortyThievesSolitaire/FortyThievesSolitaire81x46.gif',110083820,119170297,'bcdc089e-733c-4903-8b76-11bc65f0ccb5','false','/images/games/FortyThievesSolitaire/FortyThievesSolitaire16x16.gif',false,11323,'/images/games/FortyThievesSolitaire/FortyThievesSolitaire100x75.jpg','/images/games/FortyThievesSolitaire/FortyThievesSolitaire179x135.jpg','/images/games/FortyThievesSolitaire/FortyThievesSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/FortyThievesSolitaire130x75.gif','','Try to make your best in this fascinating solitaire!','Move all the cards to the 8 foundation piles at the upper right corner.','true',true,true,'Forty Thieves Solitaire OLT1 A');ag(119106893,'Space Kidnappers','/images/games/SpaceKidnappers/SpaceKidnappers81x46.gif',110083820,119175603,'a9d143c4-ac98-41ae-a232-e6f1bf954f85','false','/images/games/SpaceKidnappers/SpaceKidnappers16x16.gif',false,11323,'/images/games/SpaceKidnappers/SpaceKidnappers100x75.jpg','/images/games/SpaceKidnappers/SpaceKidnappers179x135.jpg','/images/games/SpaceKidnappers/SpaceKidnappers320x240.jpg','false','/images/games/thumbnails_med_2/SpaceKidnappers130x75.gif','','UFO&rsquo;s and kidnap the citizens!','Shoot the UFO&rsquo;s and save the citizens!','true',true,true,'Space Kidnappers OLT1 AS3');ag(119108330,'Parking Mania','/images/games/ParkingMania/ParkingMania81x46.gif',110083820,11917713,'bd8d278f-3203-46b4-b85c-d7b0e7d14d5e','false','/images/games/ParkingMania/ParkingMania16x16.gif',false,11323,'/images/games/ParkingMania/ParkingMania100x75.jpg','/images/games/ParkingMania/ParkingMania179x135.jpg','/images/games/ParkingMania/ParkingMania320x240.jpg','false','/images/games/thumbnails_med_2/ParkingMania130x75.gif','','Park the car at the parking space!','Reveal your parking skills!','true',true,true,'Parking Mania OLT1 AS3');ag(119110673,'Age Of Japan 2','/images/games/AgeOfJapan2/AgeOfJapan281x46.gif',110083820,119179380,'9207ce01-6da2-4b98-86d1-36914f563324','false','/images/games/AgeOfJapan2/AgeOfJapan216x16.gif',false,11323,'/images/games/AgeOfJapan2/AgeOfJapan2100x75.jpg','/images/games/AgeOfJapan2/AgeOfJapan2179x135.jpg','/images/games/AgeOfJapan2/AgeOfJapan2320x240.jpg','false','/images/games/thumbnails_med_2/AgeOfJapan2130x75.gif','','Match-3 to Save Japan!','Match-3 to tutor a young emporer and save Japan!','true',false,false,'Age Of Japan 2 OL AS3');ag(119112600,'Alice In Wonderland','/images/games/AliceInWonderland/AliceInWonderland81x46.gif',1100710,119181233,'','false','/images/games/AliceInWonderland/AliceInWonderland16x16.gif',false,11323,'/images/games/AliceInWonderland/AliceInWonderland100x75.jpg','/images/games/AliceInWonderland/AliceInWonderland179x135.jpg','/images/games/AliceInWonderland/AliceInWonderland320x240.jpg','false','/images/games/thumbnails_med_2/AliceInWonderland130x75.gif','/exe/alice_in_wonderland_90834737-setup.exe?lc=en&ext=alice_in_wonderland_90834737-setup.exe','Save Alice from Wonderland!','Hunt for clues to free Alice and decide the fate of Wonderland!','false',false,false,'Alice In Wonderland');ag(119113917,'Beadz','/images/games/Beadz/Beadz81x46.gif',110083820,119182250,'98e4fd2d-c56f-4205-8a3f-9b882c3010f2','false','/images/games/Beadz/Beadz16x16.gif',false,11323,'/images/games/Beadz/Beadz100x75.jpg','/images/games/Beadz/Beadz179x135.jpg','/images/games/Beadz/Beadz320x240.jpg','false','/images/games/thumbnails_med_2/Beadz130x75.gif','','Enjoy the beads rolling down the lines.','The shine of multicolored beads always pleases eyes!','true',true,true,'Beadz OLT1 AS3');ag(119115167,'Escape The Dentist','/images/games/EscapeTheDentist/EscapeTheDentist81x46.gif',110083820,119184840,'db593156-6b80-486a-bc2c-3b53397a89c1','false','/images/games/EscapeTheDentist/EscapeTheDentist16x16.gif',false,11323,'/images/games/EscapeTheDentist/EscapeTheDentist100x75.jpg','/images/games/EscapeTheDentist/EscapeTheDentist179x135.jpg','/images/games/EscapeTheDentist/EscapeTheDentist320x240.jpg','false','/images/games/thumbnails_med_2/EscapeTheDentist130x75.gif','','Fool the dentist and run away!','Scary dentist won’t let you go? Learn ways to escape him!','true',false,false,'Escape The Dentist OL');ag(119116450,'Love In Venice','/images/games/LoveInVenice/LoveInVenice81x46.gif',110083820,119185540,'cc124c57-439a-4242-ba3d-80356d2a8c2f','false','/images/games/LoveInVenice/LoveInVenice16x16.gif',false,11323,'/images/games/LoveInVenice/LoveInVenice100x75.jpg','/images/games/LoveInVenice/LoveInVenice179x135.jpg','/images/games/LoveInVenice/LoveInVenice320x240.jpg','false','/images/games/thumbnails_med_2/LoveInVenice130x75.gif','','Hop on and fall in love.','Love is not in the air… it’s riding the gondola with you.','true',false,false,'Love In Venice OL');ag(119117753,'Build A Lot: The Elizabethan Era','/images/games/BuildalotElizabethanStandard/BuildalotElizabethanStandard81x46.gif',0,119186723,'','false','/images/games/BuildalotElizabethanStandard/BuildalotElizabethanStandard16x16.gif',false,11323,'/images/games/BuildalotElizabethanStandard/BuildalotElizabethanStandard100x75.jpg','/images/games/BuildalotElizabethanStandard/BuildalotElizabethanStandard179x135.jpg','/images/games/BuildalotElizabethanStandard/BuildalotElizabethanStandard320x240.jpg','false','/images/games/thumbnails_med_2/BuildalotElizabethanStandard130x75.gif','/exe/build_a_lot_the_elizabethan_era_06125432-setup.exe?lc=en&ext=build_a_lot_the_elizabethan_era_06125432-setup.exe','The Queen Requires Thy Building Skills!','Hear ye, lords and ladies, the Queen requires thy building skills!','false',false,false,'Build-a-lot 5 Sandard Edition');ag(119119250,'The Mystery of the Crystal Portal 2','/images/games/MysteryoftheCrystalPortal2/MysteryoftheCrystalPortal281x46.gif',1100710,119188880,'','false','/images/games/MysteryoftheCrystalPortal2/MysteryoftheCrystalPortal216x16.gif',false,11323,'/images/games/MysteryoftheCrystalPortal2/MysteryoftheCrystalPortal2100x75.jpg','/images/games/MysteryoftheCrystalPortal2/MysteryoftheCrystalPortal2179x135.jpg','/images/games/MysteryoftheCrystalPortal2/MysteryoftheCrystalPortal2320x240.jpg','false','/images/games/thumbnails_med_2/MysteryoftheCrystalPortal2130x75.gif','/exe/mystery_of_the_crystalportal_2_64239758-setup.exe?lc=en&ext=mystery_of_the_crystalportal_2_64239758-setup.exe','Help Nicole find her father!','Travel the world with Nicole in search of her missing father!','false',false,false,'Mystery Crystal Portal 2');ag(119120803,'Soccer Cup Solitaire','/images/games/SoccerCupSolitaire/SoccerCupSolitaire81x46.gif',110083820,119189723,'2effe689-376d-4a7e-a73e-245de570cf5f','false','/images/games/SoccerCupSolitaire/SoccerCupSolitaire16x16.gif',false,11323,'/images/games/SoccerCupSolitaire/SoccerCupSolitaire100x75.jpg','/images/games/SoccerCupSolitaire/SoccerCupSolitaire179x135.jpg','/images/games/SoccerCupSolitaire/SoccerCupSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/SoccerCupSolitaire130x75.gif','','Shoot to Score in Solitaire!','Play the world and shoot to score in Soccer Cup Solitaire!','true',false,false,'Soccer Cup Solitaire OL AS3');ag(119121260,'Little Mess','/images/games/LittleMess/LittleMess81x46.gif',110083820,119190850,'d83d3419-4282-462e-8bf6-7ea7c8d27353','false','/images/games/LittleMess/LittleMess16x16.gif',false,11323,'/images/games/LittleMess/LittleMess100x75.jpg','/images/games/LittleMess/LittleMess179x135.jpg','/images/games/LittleMess/LittleMess320x240.jpg','false','/images/games/thumbnails_med_2/LittleMess130x75.gif','','Clean up the mess!','Clean up the mess of dots and lines crossing each other!','true',true,true,'Little Mess OLT1 AS3');ag(119124503,'Super Dad','/images/games/SuperDad/SuperDad81x46.gif',110083820,119193217,'b7b3039f-5ee7-4b20-9559-0c99c327dc01','false','/images/games/SuperDad/SuperDad16x16.gif',false,11323,'/images/games/SuperDad/SuperDad100x75.jpg','/images/games/SuperDad/SuperDad179x135.jpg','/images/games/SuperDad/SuperDad320x240.jpg','false','/images/games/thumbnails_med_2/SuperDad130x75.gif','','Give Mommies a break.','Give your mom a break. Let Super Dad take care of the baby instead!','true',false,false,'Super Dad OL');ag(119125257,'Star Defender Bundle - 2 in 1','/images/games/StarDefenderBundle/StarDefenderBundle81x46.gif',0,119194960,'','false','/images/games/StarDefenderBundle/StarDefenderBundle16x16.gif',false,11323,'/images/games/StarDefenderBundle/StarDefenderBundle100x75.jpg','/images/games/StarDefenderBundle/StarDefenderBundle179x135.jpg','/images/games/StarDefenderBundle/StarDefenderBundle320x240.jpg','false','/images/games/thumbnails_med_2/StarDefenderBundle130x75.gif','/exe/star_defender_bundle_05461123-setup.exe?lc=en&ext=star_defender_bundle_05461123-setup.exe','Battle Hordes of Alien Beasts!','Battle hordes of merciless alien spacecrafts - two games in one download!','false',false,false,'Star Defender Bundle - 2 in 1');ag(119126540,'Rainbow Web Bundle - 2 in 1','/images/games/RainbowWebBundle/RainbowWebBundle81x46.gif',1007,119195200,'','false','/images/games/RainbowWebBundle/RainbowWebBundle16x16.gif',false,11323,'/images/games/RainbowWebBundle/RainbowWebBundle100x75.jpg','/images/games/RainbowWebBundle/RainbowWebBundle179x135.jpg','/images/games/RainbowWebBundle/RainbowWebBundle320x240.jpg','false','/images/games/thumbnails_med_2/RainbowWebBundle130x75.gif','/exe/rainbow_web_bundle_613207458-setup.exe?lc=en&ext=rainbow_web_bundle_613207458-setup.exe','Rainbow Web Bundle: two-piece casual epic!','2 full games in a bundle! 140+ levels and 26 locations of Rainbow Web epic!','false',false,false,'Rainbow Web Bundle - 2 in 1');ag(119127740,'Age Of Japan 2','/images/games/AgeOfJapan2/AgeOfJapan281x46.gif',1007,119196280,'','false','/images/games/AgeOfJapan2/AgeOfJapan216x16.gif',false,11323,'/images/games/AgeOfJapan2/AgeOfJapan2100x75.jpg','/images/games/AgeOfJapan2/AgeOfJapan2179x135.jpg','/images/games/AgeOfJapan2/AgeOfJapan2320x240.jpg','false','/images/games/thumbnails_med_2/AgeOfJapan2130x75.gif','/exe/age_of_japan_2_06521214-setup.exe?lc=en&ext=age_of_japan_2_06521214-setup.exe','Match-3 to Save Japan!','Match-3 to tutor a young emporer and save Japan!','false',false,false,'Age Of Japan 2');ag(119128130,'Secrets Of The Dragon Wheel','/images/games/SecretsOfTheDragonWheel/SecretsOfTheDragonWheel81x46.gif',1100710,119197767,'','false','/images/games/SecretsOfTheDragonWheel/SecretsOfTheDragonWheel16x16.gif',false,11323,'/images/games/SecretsOfTheDragonWheel/SecretsOfTheDragonWheel100x75.jpg','/images/games/SecretsOfTheDragonWheel/SecretsOfTheDragonWheel179x135.jpg','/images/games/SecretsOfTheDragonWheel/SecretsOfTheDragonWheel320x240.jpg','false','/images/games/thumbnails_med_2/SecretsOfTheDragonWheel130x75.gif','/exe/secrets_of_the_dragon_wheel_08754121-setup.exe?lc=en&ext=secrets_of_the_dragon_wheel_08754121-setup.exe','Murder and Mayhem Aboard the Majestic!','Help Epiphany O’day solve the murderous mayhem aboard the mysterious Majestic!','false',false,false,'Secrets Of The Dragon Wheel');ag(119129270,'Geek Magnet','/images/games/GeekMagnet/GeekMagnet81x46.gif',110083820,119198963,'4f4bea20-b4fa-4b4f-99d8-e62a8adba750','false','/images/games/GeekMagnet/GeekMagnet16x16.gif',false,11323,'/images/games/GeekMagnet/GeekMagnet100x75.jpg','/images/games/GeekMagnet/GeekMagnet179x135.jpg','/images/games/GeekMagnet/GeekMagnet320x240.jpg','false','/images/games/thumbnails_med_2/GeekMagnet130x75.gif','','Dodge the geeks. Kiss the hunks.','Icky geeks out to kiss you. Dodge them and kiss the hunks instead.','true',false,false,'Geek Magnet OL');ag(119131907,'Dress My Baby','/images/games/DressMyBaby/DressMyBaby81x46.gif',110083820,119200463,'d2b09834-1459-4852-b6aa-440512fb5dd9','false','/images/games/DressMyBaby/DressMyBaby16x16.gif',false,11323,'/images/games/DressMyBaby/DressMyBaby100x75.jpg','/images/games/DressMyBaby/DressMyBaby179x135.jpg','/images/games/DressMyBaby/DressMyBaby320x240.jpg','false','/images/games/thumbnails_med_2/DressMyBaby130x75.gif','','Style up the cute kiddo.','Dress up the cute baby to make it look more fashionable than ever.','true',false,false,'Dress My Baby OL');ag(119132280,'Midnight Gossip','/images/games/MidnightGossip/MidnightGossip81x46.gif',110083820,119201990,'9602fec3-75e6-48a7-8c39-fe78ae6f78ec','false','/images/games/MidnightGossip/MidnightGossip16x16.gif',false,11323,'/images/games/MidnightGossip/MidnightGossip100x75.jpg','/images/games/MidnightGossip/MidnightGossip179x135.jpg','/images/games/MidnightGossip/MidnightGossip320x240.jpg','false','/images/games/thumbnails_med_2/MidnightGossip130x75.gif','','Jabber on… all night long.','Spill the beans to your best pals over a session of Midnight Gossip.','true',false,false,'Midnight Gossip OL');ag(119149750,'Bricks Squasher 2','/images/games/BrickSquasher2/BrickSquasher281x46.gif',110083820,119218443,'bd34d364-9a43-4252-918e-3e8bf1e3b306','false','/images/games/BrickSquasher2/BrickSquasher216x16.gif',false,11323,'/images/games/BrickSquasher2/BrickSquasher2100x75.jpg','/images/games/BrickSquasher2/BrickSquasher2179x135.jpg','/images/games/BrickSquasher2/BrickSquasher2320x240.jpg','false','/images/games/thumbnails_med_2/BrickSquasher2130x75.gif','','Destroy the bricks!','Knock down the bricks with your trusty paddle and ball in this addictive arcade classic!','true',true,true,'Bricks Squasher 2 OLT1 AS3');ag(119150820,'Love Chemistry','/images/games/LoveChemistry/LoveChemistry81x46.gif',110083820,119219527,'c5810786-ea97-49ab-b8f6-3c488b45019e','false','/images/games/LoveChemistry/LoveChemistry16x16.gif',false,11323,'/images/games/LoveChemistry/LoveChemistry100x75.jpg','/images/games/LoveChemistry/LoveChemistry179x135.jpg','/images/games/LoveChemistry/LoveChemistry320x240.jpg','false','/images/games/thumbnails_med_2/LoveChemistry130x75.gif','','Stir up the potion of passion.','Work the right chemistry and make the couple fall in love.','true',false,false,'Love Chemistry OL');ag(119153807,'Fission Balls','/images/games/FissionBalls/FissionBalls81x46.gif',110083820,119222457,'70c373f0-da68-4a56-ae37-e2b352ad9207','false','/images/games/FissionBalls/FissionBalls16x16.gif',false,11323,'/images/games/FissionBalls/FissionBalls100x75.jpg','/images/games/FissionBalls/FissionBalls179x135.jpg','/images/games/FissionBalls/FissionBalls320x240.jpg','false','/images/games/thumbnails_med_2/FissionBalls130x75.gif','','Shoot the balls!','Shoot the balls to split them and keep at least one ball in the screen.','true',true,true,'Fission Balls OLT1 AS3');ag(119154157,'Plants vs Zombies: Game of The Year','/images/games/PlantsVsZombies/PlantsVsZombies81x46.gif',1003,119223107,'','false','/images/games/PlantsVsZombies/PlantsVsZombies16x16.gif',false,11323,'/images/games/PlantsVsZombies/PlantsVsZombies100x75.jpg','/images/games/PlantsVsZombies/PlantsVsZombies179x135.jpg','/images/games/PlantsVsZombies/PlantsVsZombies320x240.jpg','false','/images/games/thumbnails_med_2/PlantsVsZombies130x75.gif','/exe/plants_vs_zombies_GOTY-setup.exe?lc=en&ext=plants_vs_zombies_GOTY-setup.exe','Defend your Home with Zombie-Zapping Plants!','Defend your home from zombie attacks with strategic and speedy planting!','false',false,false,'Plants vs Zombies GOTY');ag(119155723,'Atlantis Double Pack – 2 in 1','/images/games/atlantis_double_pack/atlantis_double_pack81x46.gif',1007,119224323,'','false','/images/games/atlantis_double_pack/atlantis_double_pack16x16.gif',false,11323,'/images/games/atlantis_double_pack/atlantis_double_pack100x75.jpg','/images/games/atlantis_double_pack/atlantis_double_pack179x135.jpg','/images/games/atlantis_double_pack/atlantis_double_pack320x240.jpg','false','/images/games/thumbnails_med_2/atlantis_double_pack130x75.gif','/exe/atlantis_double_pack_09875111-setup.exe?lc=en&ext=atlantis_double_pack_09875111-setup.exe','Two Best-selling Match-3 Puzzlers!','Best-selling match-3 puzzlers - two epic adventures in one download!','false',false,false,'Atlantis Double Pack');ag(119165733,'The Fifth Gate','/images/games/TheFifthGate/TheFifthGate81x46.gif',1003,119234433,'','false','/images/games/TheFifthGate/TheFifthGate16x16.gif',false,11323,'/images/games/TheFifthGate/TheFifthGate100x75.jpg','/images/games/TheFifthGate/TheFifthGate179x135.jpg','/images/games/TheFifthGate/TheFifthGate320x240.jpg','false','/images/games/thumbnails_med_2/TheFifthGate130x75.gif','/exe/Fifth_Gate_37948736-setup.exe?lc=en&ext=Fifth_Gate_37948736-setup.exe','Enter Eden&rsquo;s Gardens of Magic and Potions!','Help Eden restore magical gardens amid plants, pests, and potions!','false',false,false,'The Fifth Gate');ag(119166760,'Oak Island','/images/games/oakIsland/oakIsland81x46.gif',110083820,119235370,'84ec9aec-109c-4c2f-8fbf-d18303f1d0c9','false','/images/games/oakIsland/oakIsland16x16.gif',false,11323,'/images/games/oakIsland/oakIsland100x75.jpg','/images/games/oakIsland/oakIsland179x135.jpg','/images/games/oakIsland/oakIsland320x240.jpg','false','/images/games/thumbnails_med_2/oakIsland130x75.gif','','Find the differences!','Spot the differences in this exciting comic based adventure.','true',false,false,'Oak Island OL AS3');ag(119167703,'Flubble Bubble','/images/games/flubblebubble/flubblebubble81x46.gif',110083820,119236170,'5efc0c20-93c4-4922-977b-50b2d41986b7','false','/images/games/flubblebubble/flubblebubble16x16.gif',false,11323,'/images/games/flubblebubble/flubblebubble100x75.jpg','/images/games/flubblebubble/flubblebubble179x135.jpg','/images/games/flubblebubble/flubblebubble320x240.jpg','false','/images/games/thumbnails_med_2/flubblebubble130x75.gif','','Help Flubbles catch the apples!','Help Flubbles catch the apples, but watch out for the bombs!','true',false,false,'Flubble Bubble OL AS3');ag(119168697,'Boudicca','/images/games/boudicca/boudicca81x46.gif',110015873,119237390,'f6806d91-d331-4641-9431-c55bf1e64be3','false','/images/games/boudicca/boudicca16x16.gif',false,11323,'/images/games/boudicca/boudicca100x75.jpg','/images/games/boudicca/boudicca179x135.jpg','/images/games/boudicca/boudicca320x240.jpg','false','/images/games/thumbnails_med_2/boudicca130x75.gif','','Find the differences!','Spot the differences in this exciting comic based adventure.','true',false,false,'Boudicca OL AS3');ag(119170403,'Miriel’s Magic Bundle – 2 in 1','/images/games/miriels_magic_bundle/miriels_magic_bundle81x46.gif',0,119239110,'','false','/images/games/miriels_magic_bundle/miriels_magic_bundle16x16.gif',false,11323,'/images/games/miriels_magic_bundle/miriels_magic_bundle100x75.jpg','/images/games/miriels_magic_bundle/miriels_magic_bundle179x135.jpg','/images/games/miriels_magic_bundle/miriels_magic_bundle320x240.jpg','false','/images/games/thumbnails_med_2/miriels_magic_bundle130x75.gif','/exe/miriels_magic_bundle_08621120-setup.exe?lc=en&ext=miriels_magic_bundle_08621120-setup.exe','Manage Two Mystical Shops in One Download!','Mystical time management and hidden object wizardry – two games in one download!','false',false,false,'Mirielâ€™s Magic Bundle');ag(119173817,'Dream Chronicles The Book of Air Standard Edition','/images/games/DreamChroniclesTheBookofAirSTD/DreamChroniclesTheBookofAirSTD81x46.gif',1100710,119242520,'','false','/images/games/DreamChroniclesTheBookofAirSTD/DreamChroniclesTheBookofAirSTD16x16.gif',false,11323,'/images/games/DreamChroniclesTheBookofAirSTD/DreamChroniclesTheBookofAirSTD100x75.jpg','/images/games/DreamChroniclesTheBookofAirSTD/DreamChroniclesTheBookofAirSTD179x135.jpg','/images/games/DreamChroniclesTheBookofAirSTD/DreamChroniclesTheBookofAirSTD320x240.jpg','false','/images/games/thumbnails_med_2/DreamChroniclesTheBookofAirSTD130x75.gif','/exe/dream_chronicles_book_of_air_05405644-setup.exe?lc=en&ext=dream_chronicles_book_of_air_05405644-setup.exe','Help Lyra Realize her Magical Destiny!','Help Lyra unlock magical powers and realize her destiny!','false',false,false,'Dream Chronicles The Book STD');ag(119175350,'Haunted Manor Lord of Mirrors','/images/games/HauntedManorLordofMirrors/HauntedManorLordofMirrors81x46.gif',1100710,11924457,'','false','/images/games/HauntedManorLordofMirrors/HauntedManorLordofMirrors16x16.gif',false,11323,'/images/games/HauntedManorLordofMirrors/HauntedManorLordofMirrors100x75.jpg','/images/games/HauntedManorLordofMirrors/HauntedManorLordofMirrors179x135.jpg','/images/games/HauntedManorLordofMirrors/HauntedManorLordofMirrors320x240.jpg','false','/images/games/thumbnails_med_2/HauntedManorLordofMirrors130x75.gif','/exe/haunted_manor_lord_of_mirrors_83044965-setup.exe?lc=en&ext=haunted_manor_lord_of_mirrors_83044965-setup.exe','Help Stan Escape Haunted Manor!','Help Stan escape Haunted Manor and the evil Lord of Mirrors!','false',false,false,'Haunted Manor Lord of Mirrors');ag(119178430,'Snooker Skool','/images/games/snookerskool/snookerskool81x46.gif',110083820,119247117,'0b90c8b0-99fe-4795-9980-54ca6d9581e4','false','/images/games/snookerskool/snookerskool16x16.gif',false,11323,'/images/games/snookerskool/snookerskool100x75.jpg','/images/games/snookerskool/snookerskool179x135.jpg','/images/games/snookerskool/snookerskool320x240.jpg','false','/images/games/thumbnails_med_2/snookerskool130x75.gif','','Play snooker and improve your game!','Learn the rules, tips and tricks to snooker through a series of challenges!','true',false,false,'Snooker Skool OL AS3');ag(119179610,'Galaxoball','/images/games/galaxoball/galaxoball81x46.gif',110083820,119248323,'35949fa0-f5a8-4cbf-8c42-f942b93b24c8','false','/images/games/galaxoball/galaxoball16x16.gif',false,11323,'/images/games/galaxoball/galaxoball100x75.jpg','/images/games/galaxoball/galaxoball179x135.jpg','/images/games/galaxoball/galaxoball320x240.jpg','false','/images/games/thumbnails_med_2/galaxoball130x75.gif','','Galaxoball - deep space marble racing game.','Master 5 differet circuits in deep space in this cool marble racing game!','true',false,false,'Galaxoball OL AS3');ag(119180883,'Count of Monte Cristo','/images/games/CountofMonteCristo/CountofMonteCristo81x46.gif',1100710,119249590,'','false','/images/games/CountofMonteCristo/CountofMonteCristo16x16.gif',false,11323,'/images/games/CountofMonteCristo/CountofMonteCristo100x75.jpg','/images/games/CountofMonteCristo/CountofMonteCristo179x135.jpg','/images/games/CountofMonteCristo/CountofMonteCristo320x240.jpg','false','/images/games/thumbnails_med_2/CountofMonteCristo130x75.gif','/exe/count_of_monte_cristo_06526822-setup.exe?lc=en&ext=count_of_monte_cristo_06526822-setup.exe','Help Edmond Escape Wrongful Imprisonment!','Help Edmond escape wrongful imprisonment and exact his vengeance!','false',false,false,'Count of Monte Cristo');ag(119181357,'Nine Ball','/images/games/nineball/nineball81x46.gif',110083820,11925063,'7e8d96fe-7e9c-4ad4-8af2-f9beceea3b9d','false','/images/games/nineball/nineball16x16.gif',false,11323,'/images/games/nineball/nineball100x75.jpg','/images/games/nineball/nineball179x135.jpg','/images/games/nineball/nineball320x240.jpg','false','/images/games/thumbnails_med_2/nineball130x75.gif','','Nine ball billiards game.','Choose your player and take on eight different opponents in a game of nine ball billiards!','true',false,false,'Nine Ball OL AS3');ag(119182587,'Supper Stacker','/images/games/supperstacker/supperstacker81x46.gif',110083820,119251300,'89c9e458-16cc-46ff-b4ed-7a7b1e3359e8','false','/images/games/supperstacker/supperstacker16x16.gif',false,11323,'/images/games/supperstacker/supperstacker100x75.jpg','/images/games/supperstacker/supperstacker179x135.jpg','/images/games/supperstacker/supperstacker320x240.jpg','false','/images/games/thumbnails_med_2/supperstacker130x75.gif','','Fun and challengeing physics game.','Stack your pile of food as high as you can!','true',false,false,'Supper Stacker OL AS3');ag(119183603,'Nightfall Mysteries Curse Opera','/images/games/NightfallMysteriesCurseOpera/NightfallMysteriesCurseOpera81x46.gif',1100710,119252117,'','false','/images/games/NightfallMysteriesCurseOpera/NightfallMysteriesCurseOpera16x16.gif',false,11323,'/images/games/NightfallMysteriesCurseOpera/NightfallMysteriesCurseOpera100x75.jpg','/images/games/NightfallMysteriesCurseOpera/NightfallMysteriesCurseOpera179x135.jpg','/images/games/NightfallMysteriesCurseOpera/NightfallMysteriesCurseOpera320x240.jpg','false','/images/games/thumbnails_med_2/NightfallMysteriesCurseOpera130x75.gif','/exe/nightfall_mysteries_curse_opera_89761074-setup.exe?lc=en&ext=nightfall_mysteries_curse_opera_89761074-setup.exe','Solve an Opera Company&rsquo;s Deadly Mystery!','Help a lowly stagehand solve an opera company&rsquo;s deadly mystery!','false',false,false,'Nightfall Mysteries Curse Oper');ag(119194263,'Lost in the City','/images/games/LostintheCity/LostintheCity81x46.gif',0,119263970,'','false','/images/games/LostintheCity/LostintheCity16x16.gif',false,11323,'/images/games/LostintheCity/LostintheCity100x75.jpg','/images/games/LostintheCity/LostintheCity179x135.jpg','/images/games/LostintheCity/LostintheCity320x240.jpg','false','/images/games/thumbnails_med_2/LostintheCity130x75.gif','/exe/lost_in_the_city_06451280-setup.exe?lc=en&ext=lost_in_the_city_06451280-setup.exe','Navigate a Mysterious, Abandoned City!','Navigate a mysterious, abandoned city by finding objects and solving puzzles!','false',false,false,'Lost in the City');ag(119195927,'Green Archer 3','/images/games/GreenArcher3/GreenArcher381x46.gif',110083820,119264570,'33a6ea94-03a4-441a-ad19-8bc53b0c6fbe','false','/images/games/GreenArcher3/GreenArcher316x16.gif',false,11323,'/images/games/GreenArcher3/GreenArcher3100x75.jpg','/images/games/GreenArcher3/GreenArcher3179x135.jpg','/images/games/GreenArcher3/GreenArcher3320x240.jpg','false','/images/games/thumbnails_med_2/GreenArcher3130x75.gif','','Bow shooting game.','Stop the chicken invasion!','true',false,false,'Green Archer 3 OL');ag(119197927,'Cindy’s Travels: Flooded Kingdom','/images/games/CindysTravelFloodedKingdom/CindysTravelFloodedKingdom81x46.gif',1007,119266563,'','false','/images/games/CindysTravelFloodedKingdom/CindysTravelFloodedKingdom16x16.gif',false,11323,'/images/games/CindysTravelFloodedKingdom/CindysTravelFloodedKingdom100x75.jpg','/images/games/CindysTravelFloodedKingdom/CindysTravelFloodedKingdom179x135.jpg','/images/games/CindysTravelFloodedKingdom/CindysTravelFloodedKingdom320x240.jpg','false','/images/games/thumbnails_med_2/CindysTravelFloodedKingdom130x75.gif','/exe/cindys_travel_flooded_kingdom_64905445-setup.exe?lc=en&ext=cindys_travel_flooded_kingdom_64905445-setup.exe','Save the Flooded Kingdom!','Save Cindy’s magical kingdom from a massive flood of junk!','false',false,false,'Cindys Travel Flooded Kingdom');ag(119201540,'Millenium Secrets: Emerald Curse','/images/games/MilleniumSecretsEmeraldCurse/MilleniumSecretsEmeraldCurse81x46.gif',1100710,119270237,'','false','/images/games/MilleniumSecretsEmeraldCurse/MilleniumSecretsEmeraldCurse16x16.gif',false,11323,'/images/games/MilleniumSecretsEmeraldCurse/MilleniumSecretsEmeraldCurse100x75.jpg','/images/games/MilleniumSecretsEmeraldCurse/MilleniumSecretsEmeraldCurse179x135.jpg','/images/games/MilleniumSecretsEmeraldCurse/MilleniumSecretsEmeraldCurse320x240.jpg','false','/images/games/thumbnails_med_2/MilleniumSecretsEmeraldCurse130x75.gif','/exe/millenium_secrets_emerald_curse_06458810-setup.exe?lc=en&ext=millenium_secrets_emerald_curse_06458810-setup.exe','Travel the World to Save Kate&rsquo;s Friend!','Travel the world to save Kate&rsquo;s friend and find a mysterious briefcase!','false',false,false,'Millenium Secrets Emerald Curs');ag(119202860,'Fishdom Double Pack - 2 in 1','/images/games/fishdom_double_pack/fishdom_double_pack81x46.gif',1007,119271773,'','false','/images/games/fishdom_double_pack/fishdom_double_pack16x16.gif',false,11323,'/images/games/fishdom_double_pack/fishdom_double_pack100x75.jpg','/images/games/fishdom_double_pack/fishdom_double_pack179x135.jpg','/images/games/fishdom_double_pack/fishdom_double_pack320x240.jpg','false','/images/games/thumbnails_med_2/fishdom_double_pack130x75.gif','/exe/fishdom_double_pack_83732299-setup.exe?lc=en&ext=fishdom_double_pack_83732299-setup.exe','Marine Match-3 and Deep Sea Hidden Object – 2-in-1!','A marine match-3 and deep sea hidden object – two games in one download!','false',false,false,'Fishdom Double Pack - 2 in 1');ag(119203790,'Golden Trails: The New Western Rush','/images/games/GoldenTrailsTheNewWesternRush/GoldenTrailsTheNewWesternRush81x46.gif',1100710,119272140,'','false','/images/games/GoldenTrailsTheNewWesternRush/GoldenTrailsTheNewWesternRush16x16.gif',false,11323,'/images/games/GoldenTrailsTheNewWesternRush/GoldenTrailsTheNewWesternRush100x75.jpg','/images/games/GoldenTrailsTheNewWesternRush/GoldenTrailsTheNewWesternRush179x135.jpg','/images/games/GoldenTrailsTheNewWesternRush/GoldenTrailsTheNewWesternRush320x240.jpg','false','/images/games/thumbnails_med_2/GoldenTrailsTheNewWesternRush130x75.gif','/exe/golden_trails_new_western_rush_08454710-setup.exe?lc=en&ext=golden_trails_new_western_rush_08454710-setup.exe','Solve a Wild West Bank Robbery!','Investigate a wild west bank robbery as witty and wise Sheriff Jack!','false',false,false,'Golden Trails New Western Rush');ag(119205603,'Farm Frenzy 3: Madagascar','/images/games/FarmFrenzy3Madagascar/FarmFrenzy3Madagascar81x46.gif',110127790,119274680,'','false','/images/games/FarmFrenzy3Madagascar/FarmFrenzy3Madagascar16x16.gif',false,11323,'/images/games/FarmFrenzy3Madagascar/FarmFrenzy3Madagascar100x75.jpg','/images/games/FarmFrenzy3Madagascar/FarmFrenzy3Madagascar179x135.jpg','/images/games/FarmFrenzy3Madagascar/FarmFrenzy3Madagascar320x240.jpg','false','/images/games/thumbnails_med_2/FarmFrenzy3Madagascar130x75.gif','/exe/farm_frenzy_3_madagascar_04513574-setup.exe?lc=en&ext=farm_frenzy_3_madagascar_04513574-setup.exe','Save Animals on an Exotic Reservation!','Save mysteriously ill animals on the exotic African island of Madagascar!','false',false,false,'Farm Frenzy 3 Madagascar');ag(119207353,'Rhianna Ford: The Da Vinci Letter','/images/games/RhiannaFordDaVinciLetter/RhiannaFordDaVinciLetter81x46.gif',1000,11927627,'','false','/images/games/RhiannaFordDaVinciLetter/RhiannaFordDaVinciLetter16x16.gif',false,11323,'/images/games/RhiannaFordDaVinciLetter/RhiannaFordDaVinciLetter100x75.jpg','/images/games/RhiannaFordDaVinciLetter/RhiannaFordDaVinciLetter179x135.jpg','/images/games/RhiannaFordDaVinciLetter/RhiannaFordDaVinciLetter320x240.jpg','false','/images/games/thumbnails_med_2/RhiannaFordDaVinciLetter130x75.gif','/exe/rhianna_ford_da_vinci_letter_45405614-setup.exe?lc=en&ext=rhianna_ford_da_vinci_letter_45405614-setup.exe','Travel to Rome with Rhianna!','Travel to Rome with Rhianna for a hidden object mystery!','false',false,false,'Rhianna Ford Da Vinci Letter');ag(119208307,'Life Quest','/images/games/LifeQuest/LifeQuest81x46.gif',0,11927753,'','false','/images/games/LifeQuest/LifeQuest16x16.gif',false,11323,'/images/games/LifeQuest/LifeQuest100x75.jpg','/images/games/LifeQuest/LifeQuest179x135.jpg','/images/games/LifeQuest/LifeQuest320x240.jpg','false','/images/games/thumbnails_med_2/LifeQuest130x75.gif','/exe/life_quest_61064121-setup.exe?lc=en&ext=life_quest_61064121-setup.exe','Quirky Life Simulation Meets Time Management!','Live life in a quirky world where simulation meets time management!','false',false,false,'Life Quest');ag(119212960,'Veronica Rivers: Portals to the Unknown','/images/games/VeronicaRiversPortals/VeronicaRiversPortals81x46.gif',1100710,119281423,'','false','/images/games/VeronicaRiversPortals/VeronicaRiversPortals16x16.gif',false,11323,'/images/games/VeronicaRiversPortals/VeronicaRiversPortals100x75.jpg','/images/games/VeronicaRiversPortals/VeronicaRiversPortals179x135.jpg','/images/games/VeronicaRiversPortals/VeronicaRiversPortals320x240.jpg','false','/images/games/thumbnails_med_2/VeronicaRiversPortals130x75.gif','/exe/veronica_rivers_portals_96842301-setup.exe?lc=en&ext=veronica_rivers_portals_96842301-setup.exe','Unlock the Portals&rsquo; Secret Powers!','Find objects to unlock the secret power of the portals!','false',false,false,'Veronica Rivers Portals');ag(119213993,'Mystery Age: Imperial Staff','/images/games/MysteryAgeImperialStaff/MysteryAgeImperialStaff81x46.gif',1100710,119282623,'','false','/images/games/MysteryAgeImperialStaff/MysteryAgeImperialStaff16x16.gif',false,11323,'/images/games/MysteryAgeImperialStaff/MysteryAgeImperialStaff100x75.jpg','/images/games/MysteryAgeImperialStaff/MysteryAgeImperialStaff179x135.jpg','/images/games/MysteryAgeImperialStaff/MysteryAgeImperialStaff320x240.jpg','false','/images/games/thumbnails_med_2/MysteryAgeImperialStaff130x75.gif','/exe/mystery_age_imperial_staff_54311044-setup.exe?lc=en&ext=mystery_age_imperial_staff_54311044-setup.exe','Assemble the Ancient Imperial Staff!','Save your village from an evil storm by assembling the Imperial Staff!','false',false,false,'Mystery Age Imperial Staff');ag(119214893,'Blue Archer','/images/games/BlueArcher/BlueArcher81x46.gif',110083820,119283590,'2f1009fd-df3c-48fe-a1e9-b69499f789a6','false','/images/games/BlueArcher/BlueArcher16x16.gif',false,11323,'/images/games/BlueArcher/BlueArcher100x75.jpg','/images/games/BlueArcher/BlueArcher179x135.jpg','/images/games/BlueArcher/BlueArcher320x240.jpg','false','/images/games/thumbnails_med_2/BlueArcher130x75.gif','','Bow shooting game.','Short bow shooting game.','true',false,false,'Blue Archer OL');ag(119215590,'Jokey Archer','/images/games/Jokey_Archer/Jokey_Archer81x46.gif',110083820,119284303,'f7360efe-9f4c-4baf-beb3-33fd88777db6','false','/images/games/Jokey_Archer/Jokey_Archer16x16.gif',false,11323,'/images/games/Jokey_Archer/Jokey_Archer100x75.jpg','/images/games/Jokey_Archer/Jokey_Archer179x135.jpg','/images/games/Jokey_Archer/Jokey_Archer320x240.jpg','false','/images/games/thumbnails_med_2/Jokey_Archer130x75.gif','','Great bow shooting adventure!','Enjoy the great bow shooting adventure!','true',false,false,'Jokey Archer OL');ag(119216957,'Hopi','/images/games/Hopi/Hopi81x46.gif',110083820,119285660,'6639fba6-cad4-4967-b4cd-c7f2bc1aa2c8','false','/images/games/Hopi/Hopi16x16.gif',false,11323,'/images/games/Hopi/Hopi100x75.jpg','/images/games/Hopi/Hopi179x135.jpg','/images/games/Hopi/Hopi320x240.jpg','false','/images/games/thumbnails_med_2/Hopi130x75.gif','','Hopi - the jumping rabbit!','Jump with Hopi to the stars!','true',false,false,'Hopi OL');ag(119217500,'Pink Archer','/images/games/PinkArcher/PinkArcher81x46.gif',110083820,119286273,'b2ce1ffa-4e62-411d-9c08-ca215e96491f','false','/images/games/PinkArcher/PinkArcher16x16.gif',false,11323,'/images/games/PinkArcher/PinkArcher100x75.jpg','/images/games/PinkArcher/PinkArcher179x135.jpg','/images/games/PinkArcher/PinkArcher320x240.jpg','false','/images/games/thumbnails_med_2/PinkArcher130x75.gif','','Bow shooting game.','Great bow shooting game!','true',false,false,'Pink Archer OL');ag(119218943,'Curse of the Pharaoh: Tears of Sekhmet','/images/games/CurseofthePharaoh3/CurseofthePharaoh381x46.gif',1100710,119287643,'','false','/images/games/CurseofthePharaoh3/CurseofthePharaoh316x16.gif',false,11323,'/images/games/CurseofthePharaoh3/CurseofthePharaoh3100x75.jpg','/images/games/CurseofthePharaoh3/CurseofthePharaoh3179x135.jpg','/images/games/CurseofthePharaoh3/CurseofthePharaoh3320x240.jpg','false','/images/games/thumbnails_med_2/CurseofthePharaoh3130x75.gif','/exe/curse_of_the_pharaoh_3_63212100-setup.exe?lc=en&ext=curse_of_the_pharaoh_3_63212100-setup.exe','Break Nefertiti&rsquo;s Mysterious Curse!','Track down the seven Tears of Sekhmet to break Nefertiti&rsquo;s curse!','false',false,false,'Curse of the Pharaoh 3');ag(119219280,'Veronica Rivers: The Order of Conspiracy','/images/games/VeronicaRivers2/VeronicaRivers281x46.gif',1100710,119288990,'','false','/images/games/VeronicaRivers2/VeronicaRivers216x16.gif',false,11323,'/images/games/VeronicaRivers2/VeronicaRivers2100x75.jpg','/images/games/VeronicaRivers2/VeronicaRivers2179x135.jpg','/images/games/VeronicaRivers2/VeronicaRivers2320x240.jpg','false','/images/games/thumbnails_med_2/VeronicaRivers2130x75.gif','/exe/veronica_rivers_2_84650564-setup.exe?lc=en&ext=veronica_rivers_2_84650564-setup.exe','Locate the Gates of Destiny!','Travel Europe and find objects to locate the Gates of Destiny!','false',false,false,'Veronica Rivers 2');ag(119227753,'My Kingdom for the Princess II','/images/games/MyKingdomforthePrincess2/MyKingdomforthePrincess281x46.gif',110127790,119296367,'','false','/images/games/MyKingdomforthePrincess2/MyKingdomforthePrincess216x16.gif',false,11323,'/images/games/MyKingdomforthePrincess2/MyKingdomforthePrincess2100x75.jpg','/images/games/MyKingdomforthePrincess2/MyKingdomforthePrincess2179x135.jpg','/images/games/MyKingdomforthePrincess2/MyKingdomforthePrincess2320x240.jpg','false','/images/games/thumbnails_med_2/MyKingdomforthePrincess2130x75.gif','/exe/my_kingdom_for_the_princess_2_38473345-setup.exe?lc=en&ext=my_kingdom_for_the_princess_2_38473345-setup.exe','The adventures of Arthur and Princess Helen continue!','The long awaited sequel to the addictive, award-winning strategy, time management, simulation game.','false',false,false,'My Kingdom for the Princess 2');ag(119231330,'Masquerade Mysteries: Case of the Copycat Curator','/images/games/MasqueradeMysteries/MasqueradeMysteries81x46.gif',1100710,119300947,'','false','/images/games/MasqueradeMysteries/MasqueradeMysteries16x16.gif',false,11323,'/images/games/MasqueradeMysteries/MasqueradeMysteries100x75.jpg','/images/games/MasqueradeMysteries/MasqueradeMysteries179x135.jpg','/images/games/MasqueradeMysteries/MasqueradeMysteries320x240.jpg','false','/images/games/thumbnails_med_2/MasqueradeMysteries130x75.gif','/exe/masquerade_mysteries_13548975-setup.exe?lc=en&ext=masquerade_mysteries_13548975-setup.exe','P.I. Black Must Rescue her Father!','P.I. Black catches a corrupt curator and rescues her father!','false',false,false,'Masquerade Mysteries');ag(119232270,'The Lost Kingdom Prophecy','/images/games/TheLostKingdomProphecy/TheLostKingdomProphecy81x46.gif',1007,119301960,'','false','/images/games/TheLostKingdomProphecy/TheLostKingdomProphecy16x16.gif',false,11323,'/images/games/TheLostKingdomProphecy/TheLostKingdomProphecy100x75.jpg','/images/games/TheLostKingdomProphecy/TheLostKingdomProphecy179x135.jpg','/images/games/TheLostKingdomProphecy/TheLostKingdomProphecy320x240.jpg','false','/images/games/thumbnails_med_2/TheLostKingdomProphecy130x75.gif','/exe/the_lost_kingdom_prophecy_43569752-setup.exe?lc=en&ext=the_lost_kingdom_prophecy_43569752-setup.exe','Join Serena in Saving Rosefall!','Help Serena save the Elementals and the Kingdom of Rosefall!','false',false,false,'The Lost Kingdom Prophecy');ag(119233113,'Immortal Lovers','/images/games/ImmortalLovers/ImmortalLovers81x46.gif',1100710,119302820,'','false','/images/games/ImmortalLovers/ImmortalLovers16x16.gif',false,11323,'/images/games/ImmortalLovers/ImmortalLovers100x75.jpg','/images/games/ImmortalLovers/ImmortalLovers179x135.jpg','/images/games/ImmortalLovers/ImmortalLovers320x240.jpg','false','/images/games/thumbnails_med_2/ImmortalLovers130x75.gif','/exe/immortal_lovers_46579812-setup.exe?lc=en&ext=immortal_lovers_46579812-setup.exe','A Thrilling, Supernatural Love Story!','A supernatural hidden object adventure filled with love, fear, and betrayal!','false',false,false,'Immortal Lovers');ag(119237170,'Lost Lagoon The Trail of Destiny','/images/games/LostLagoonTheTrailOfDestiny/LostLagoonTheTrailOfDestiny81x46.gif',1100710,119306760,'','false','/images/games/LostLagoonTheTrailOfDestiny/LostLagoonTheTrailOfDestiny16x16.gif',false,11323,'/images/games/LostLagoonTheTrailOfDestiny/LostLagoonTheTrailOfDestiny100x75.jpg','/images/games/LostLagoonTheTrailOfDestiny/LostLagoonTheTrailOfDestiny179x135.jpg','/images/games/LostLagoonTheTrailOfDestiny/LostLagoonTheTrailOfDestiny320x240.jpg','false','/images/games/thumbnails_med_2/LostLagoonTheTrailOfDestiny130x75.gif','/exe/lost_lagoon_trail_of_destiny_39483320-setup.exe?lc=en&ext=lost_lagoon_trail_of_destiny_39483320-setup.exe','Deserted Island of Objects and Puzzles!','Awake on a mysterious, deserted island of ancient puzzles and hidden objects!','false',false,false,'Lost Lagoon The Trail of Desti');ag(119239417,'Deep Blue Sea 2: The Amulet of Light','/images/games/DeepBlueSea2/DeepBlueSea281x46.gif',1007,119308130,'','false','/images/games/DeepBlueSea2/DeepBlueSea216x16.gif',false,11323,'/images/games/DeepBlueSea2/DeepBlueSea2100x75.jpg','/images/games/DeepBlueSea2/DeepBlueSea2179x135.jpg','/images/games/DeepBlueSea2/DeepBlueSea2320x240.jpg','false','/images/games/thumbnails_med_2/DeepBlueSea2130x75.gif','/exe/deep_blue_sea_2_12192382-setup.exe?lc=en&ext=deep_blue_sea_2_12192382-setup.exe','Match-3 with a Hidden Object Twist!','Revolutionary match-3 blended with hidden object gaming in an underwater quest!','false',false,false,'Deep Blue Sea 2');ag(119240843,'Wedding Dash® 4-Ever','/images/games/WeddingDash4Ever/WeddingDash4Ever81x46.gif',110127790,119309483,'','false','/images/games/WeddingDash4Ever/WeddingDash4Ever16x16.gif',false,11323,'/images/games/WeddingDash4Ever/WeddingDash4Ever100x75.jpg','/images/games/WeddingDash4Ever/WeddingDash4Ever179x135.jpg','/images/games/WeddingDash4Ever/WeddingDash4Ever320x240.jpg','false','/images/games/thumbnails_med_2/WeddingDash4Ever130x75.gif','/exe/wedding_dash_forever_91283329-setup.exe?lc=en&ext=wedding_dash_forever_91283329-setup.exe','Manage Even More Wedding Mania!','Help Quinn tackle new tasks and manage even more wedding mania!','false',false,false,'Wedding Dash 4-ever');ag(119241170,'Diner Dash® 5: BOOM!','/images/games/DinerDash5BoomSTD/DinerDash5BoomSTD81x46.gif',110127790,119310873,'','false','/images/games/DinerDash5BoomSTD/DinerDash5BoomSTD16x16.gif',false,11323,'/images/games/DinerDash5BoomSTD/DinerDash5BoomSTD100x75.jpg','/images/games/DinerDash5BoomSTD/DinerDash5BoomSTD179x135.jpg','/images/games/DinerDash5BoomSTD/DinerDash5BoomSTD320x240.jpg','false','/images/games/thumbnails_med_2/DinerDash5BoomSTD130x75.gif','/exe/diner_dash_5_boom_93842292-setup.exe?lc=en&ext=diner_dash_5_boom_93842292-setup.exe','Rebuild Flo’s Destroyed Diner!','Rebuild Flo’s diner while battling natural disasters and serving customers in unusual locations!','false',false,false,'Diner Dash 5 BOOM network');ag(119243790,'Shopping Blocks','/images/games/ShoppingBlocks/ShoppingBlocks81x46.gif',0,119312470,'','false','/images/games/ShoppingBlocks/ShoppingBlocks16x16.gif',false,11323,'/images/games/ShoppingBlocks/ShoppingBlocks100x75.jpg','/images/games/ShoppingBlocks/ShoppingBlocks179x135.jpg','/images/games/ShoppingBlocks/ShoppingBlocks320x240.jpg','false','/images/games/thumbnails_med_2/ShoppingBlocks130x75.gif','/exe/shopping_blocks_92832328-setup.exe?lc=en&ext=shopping_blocks_92832328-setup.exe','Build and Manage Dream Boutiques!','Create and manage your dream boutiques in this original shopping simulation!','false',false,false,'Shopping Blocks');ag(119244597,'Banana Bugs','/images/games/BananaBugs/BananaBugs81x46.gif',1003,119313357,'','false','/images/games/BananaBugs/BananaBugs16x16.gif',false,11323,'/images/games/BananaBugs/BananaBugs100x75.jpg','/images/games/BananaBugs/BananaBugs179x135.jpg','/images/games/BananaBugs/BananaBugs320x240.jpg','false','/images/games/thumbnails_med_2/BananaBugs130x75.gif','/exe/banana_bugs_28937192-setup.exe?lc=en&ext=banana_bugs_28937192-setup.exe','Zap Hordes of Banana-hungry Bugs!','Zap hordes of banana-hungry bugs to save Monkeytown&rsquo;s food supply!','false',false,false,'Banana Bugs');ag(119245497,'Burger Bustle','/images/games/BurgerBustle/BurgerBustle81x46.gif',110127790,119314197,'','false','/images/games/BurgerBustle/BurgerBustle16x16.gif',false,11323,'/images/games/BurgerBustle/BurgerBustle100x75.jpg','/images/games/BurgerBustle/BurgerBustle179x135.jpg','/images/games/BurgerBustle/BurgerBustle320x240.jpg','false','/images/games/thumbnails_med_2/BurgerBustle130x75.gif','/exe/burger_bustle_11982721-setup.exe?lc=en&ext=burger_bustle_11982721-setup.exe','Build a Booming Restaurant Chain!','Build a booming restaurant chain strategically selling burgers, ice cream, and more!','false',false,false,'Burger Bustle');ag(119246793,'Samantha Swift Bundle - 3 in 1','/images/games/samantha_swift_bundle/samantha_swift_bundle81x46.gif',1100710,119315473,'','false','/images/games/samantha_swift_bundle/samantha_swift_bundle16x16.gif',false,11323,'/images/games/samantha_swift_bundle/samantha_swift_bundle100x75.jpg','/images/games/samantha_swift_bundle/samantha_swift_bundle179x135.jpg','/images/games/samantha_swift_bundle/samantha_swift_bundle320x240.jpg','false','/images/games/thumbnails_med_2/samantha_swift_bundle130x75.gif','/exe/samantha_swift_bundle_3in1_27287392-setup.exe?lc=en&ext=samantha_swift_bundle_3in1_27287392-setup.exe','Epic Mystery Adventures – Three in One!','Three of Samantha’s epic adventures in one download!','false',false,false,'Samantha Swift Bundle 3 in 1');ag(119248823,'Build-a-lot Bundle - 4 in 1','/images/games/build_a_lot_bundle/build_a_lot_bundle81x46.gif',1003,119317523,'','false','/images/games/build_a_lot_bundle/build_a_lot_bundle16x16.gif',false,11323,'/images/games/build_a_lot_bundle/build_a_lot_bundle100x75.jpg','/images/games/build_a_lot_bundle/build_a_lot_bundle179x135.jpg','/images/games/build_a_lot_bundle/build_a_lot_bundle320x240.jpg','false','/images/games/thumbnails_med_2/build_a_lot_bundle130x75.gif','/exe/build_a_lot_bundle_3in1_23278322-setup.exe?lc=en&ext=build_a_lot_bundle_3in1_23278322-setup.exe','Rule the World of Real Estate – Four in One!','Rule the world of real estate! Four Build-a-lot games in one download!','false',false,false,'Build-a-lot Bundle - 4 in 1');ag(119249343,'Xmas Love','/images/games/XmasLove/XmasLove81x46.gif',110083820,11931810,'b60c63dd-3994-4337-8f9a-67df8ca70250','false','/images/games/XmasLove/XmasLove16x16.gif',false,11323,'/images/games/XmasLove/XmasLove100x75.jpg','/images/games/XmasLove/XmasLove179x135.jpg','/images/games/XmasLove/XmasLove320x240.jpg','false','/images/games/thumbnails_med_2/XmasLove130x75.gif','','Pucker up under the mistletoe.','Get under the mistletoe and celebrate Christmas puckering up.','true',false,false,'Xmas Love OL');ag(119250800,'Seven Wonders Of The World','/images/games/SevenWondersOfTheWorld/SevenWondersOfTheWorld81x46.gif',110083820,119319507,'9f4d983f-b51e-4438-b81c-a94c20ff027f','false','/images/games/SevenWondersOfTheWorld/SevenWondersOfTheWorld16x16.gif',false,11323,'/images/games/SevenWondersOfTheWorld/SevenWondersOfTheWorld100x75.jpg','/images/games/SevenWondersOfTheWorld/SevenWondersOfTheWorld179x135.jpg','/images/games/SevenWondersOfTheWorld/SevenWondersOfTheWorld320x240.jpg','false','/images/games/thumbnails_med_2/SevenWondersOfTheWorld130x75.gif','','Piece these monuments. Solve the puzzle.','Visit these magnificent monuments and piece their pieces together.','true',false,false,'Seven Wonders Of The World OL');ag(119251343,'Funny Salon','/images/games/FunnySalon/FunnySalon81x46.gif',110083820,11932063,'ea2912c6-efa3-478d-8681-3a0bcd462195','false','/images/games/FunnySalon/FunnySalon16x16.gif',false,11323,'/images/games/FunnySalon/FunnySalon100x75.jpg','/images/games/FunnySalon/FunnySalon179x135.jpg','/images/games/FunnySalon/FunnySalon320x240.jpg','false','/images/games/thumbnails_med_2/FunnySalon130x75.gif','','Mess around and have fun!','Don’t mind your own business, just ruin your rival’s in Funny Salon.','true',false,false,'Funny Salon OL');ag(119252703,'Pizza Passion','/images/games/PizzaPassion/PizzaPassion81x46.gif',110083820,119321430,'f7c7048d-d2f3-47da-ae86-a94b2a625549','false','/images/games/PizzaPassion/PizzaPassion16x16.gif',false,11323,'/images/games/PizzaPassion/PizzaPassion100x75.jpg','/images/games/PizzaPassion/PizzaPassion179x135.jpg','/images/games/PizzaPassion/PizzaPassion320x240.jpg','false','/images/games/thumbnails_med_2/PizzaPassion130x75.gif','','Toss and twirl your pizzas.','Toss up your pizzas as high as you can.','true',false,false,'Pizza Passion OL');ag(119253727,'Party Freak','/images/games/PartyFreak/PartyFreak81x46.gif',110083820,119322430,'029ef6ca-b24e-4e1b-8c1f-d9720a8405b1','false','/images/games/PartyFreak/PartyFreak16x16.gif',false,11323,'/images/games/PartyFreak/PartyFreak100x75.jpg','/images/games/PartyFreak/PartyFreak179x135.jpg','/images/games/PartyFreak/PartyFreak320x240.jpg','false','/images/games/thumbnails_med_2/PartyFreak130x75.gif','','Throw ‘em and enjoy ‘em.','Throw the best parties in town… with Natalie.','true',false,false,'Party Freak OL AS3');ag(119265467,'Sallys Studio','/images/games/SallysStudio/SallysStudio81x46.gif',110127790,11933467,'','false','/images/games/SallysStudio/SallysStudio16x16.gif',false,11323,'/images/games/SallysStudio/SallysStudio100x75.jpg','/images/games/SallysStudio/SallysStudio179x135.jpg','/images/games/SallysStudio/SallysStudio320x240.jpg','false','/images/games/thumbnails_med_2/SallysStudio130x75.gif','/exe/sallys_studio_84372432-setup.exe?lc=en&ext=sallys_studio_84372432-setup.exe','Sally&rsquo;s Helping the World Unwind!','Sally travels the world to help people feel their best!','false',false,false,'Sallys Studio');ag(119270713,'Good Morning Kiss','/images/games/GoodMorningKiss/GoodMorningKiss81x46.gif',110083820,119339913,'6f66d628-c17b-4516-a684-b0b2f8ad9e59','false','/images/games/GoodMorningKiss/GoodMorningKiss16x16.gif',false,11323,'/images/games/GoodMorningKiss/GoodMorningKiss100x75.jpg','/images/games/GoodMorningKiss/GoodMorningKiss179x135.jpg','/images/games/GoodMorningKiss/GoodMorningKiss320x240.jpg','false','/images/games/thumbnails_med_2/GoodMorningKiss130x75.gif','','Get to her… across the road.','A kiss to start your day goes a long way!','true',false,false,'Good Morning Kiss OL');ag(119272573,'Hair Style Wonders','/images/games/HAIRSTYLEWONDERS/HAIRSTYLEWONDERS81x46.gif',110083820,119341287,'892b193e-0468-489f-99a4-12dc7112223b','false','/images/games/HAIRSTYLEWONDERS/HAIRSTYLEWONDERS16x16.gif',false,11323,'/images/games/HAIRSTYLEWONDERS/HAIRSTYLEWONDERS100x75.jpg','/images/games/HAIRSTYLEWONDERS/HAIRSTYLEWONDERS179x135.jpg','/images/games/HAIRSTYLEWONDERS/HAIRSTYLEWONDERS320x240.jpg','false','/images/games/thumbnails_med_2/HAIRSTYLEWONDERS130x75.gif','','Do wonders to your hairdos!','Get funky tresses and feel beautiful.','true',false,false,'Hair Style Wonders OL');ag(119273790,'Sneak Out','/images/games/SneakOut/SneakOut81x46.gif',110083820,119342510,'e848a637-b9dd-4330-8312-3d03fb4b68c2','false','/images/games/SneakOut/SneakOut16x16.gif',false,11323,'/images/games/SneakOut/SneakOut100x75.jpg','/images/games/SneakOut/SneakOut179x135.jpg','/images/games/SneakOut/SneakOut320x240.jpg','false','/images/games/thumbnails_med_2/SneakOut130x75.gif','','Escape from your own house.','Reclaim your freedom. Sneak out of your house.','true',false,false,'Sneak Out OL');ag(119274353,'Break Em Up Again','/images/games/BreakEmUpAgain/BreakEmUpAgain81x46.gif',110083820,119343160,'bdb312ed-fcc6-4b34-8ae4-f179c2cd2d08','false','/images/games/BreakEmUpAgain/BreakEmUpAgain16x16.gif',false,11323,'/images/games/BreakEmUpAgain/BreakEmUpAgain100x75.jpg','/images/games/BreakEmUpAgain/BreakEmUpAgain179x135.jpg','/images/games/BreakEmUpAgain/BreakEmUpAgain320x240.jpg','false','/images/games/thumbnails_med_2/BreakEmUpAgain130x75.gif','','Time to break ‘em up again!','Don’t flirt to win the girls. Steal them from others instead.','true',false,false,'Break Em Up Again OL');ag(119275897,'Flirty Waitress','/images/games/FlirtyWaitress/FlirtyWaitress81x46.gif',110083820,119344610,'1815385c-312e-4bd8-a9b9-1a8ceac5aa36','false','/images/games/FlirtyWaitress/FlirtyWaitress16x16.gif',false,11323,'/images/games/FlirtyWaitress/FlirtyWaitress100x75.jpg','/images/games/FlirtyWaitress/FlirtyWaitress179x135.jpg','/images/games/FlirtyWaitress/FlirtyWaitress320x240.jpg','false','/images/games/thumbnails_med_2/FlirtyWaitress130x75.gif','','Help Jessica flirt for tips.','Turn on your charm and help Jessica earn tips.','true',false,false,'Flirty Waitress OL');ag(119277697,'SIMtastic Stories Bundle - 2 in 1','/images/games/simtastic_stories_bundle/simtastic_stories_bundle81x46.gif',1007,119346500,'','false','/images/games/simtastic_stories_bundle/simtastic_stories_bundle16x16.gif',false,11323,'/images/games/simtastic_stories_bundle/simtastic_stories_bundle100x75.jpg','/images/games/simtastic_stories_bundle/simtastic_stories_bundle179x135.jpg','/images/games/simtastic_stories_bundle/simtastic_stories_bundle320x240.jpg','false','/images/games/thumbnails_med_2/simtastic_stories_bundle130x75.gif','/exe/simtastic_stories_bundle_54184100-setup.exe?lc=en&ext=simtastic_stories_bundle_54184100-setup.exe','Two Superior Simulation Time Managements!','Direct artists and archaeologists in two superior simulation time managements!','false',false,false,'SIMtastic Stories Bundle');ag(119278320,'Haunted Hidden Object Bundle - 2 in 1','/images/games/haunted_hidden_object_bundle/haunted_hidden_object_bundle81x46.gif',1100710,11934720,'','false','/images/games/haunted_hidden_object_bundle/haunted_hidden_object_bundle16x16.gif',false,11323,'/images/games/haunted_hidden_object_bundle/haunted_hidden_object_bundle100x75.jpg','/images/games/haunted_hidden_object_bundle/haunted_hidden_object_bundle179x135.jpg','/images/games/haunted_hidden_object_bundle/haunted_hidden_object_bundle320x240.jpg','false','/images/games/thumbnails_med_2/haunted_hidden_object_bundle130x75.gif','/exe/haunted_hidden_object_bundle_23135400-setup.exe?lc=en&ext=haunted_hidden_object_bundle_23135400-setup.exe','Chilling Blends of Puzzles and Hidden Objects!','Chilling blends of puzzles and hidden objects - two games in one download!','false',false,false,'Haunted Hidden Object Bundle');ag(119283810,'Samantha Swift: Fountains of Fate','/images/games/SamanthaSwiftFountainsofFate/SamanthaSwiftFountainsofFate81x46.gif',1100710,119352403,'','false','/images/games/SamanthaSwiftFountainsofFate/SamanthaSwiftFountainsofFate16x16.gif',false,11323,'/images/games/SamanthaSwiftFountainsofFate/SamanthaSwiftFountainsofFate100x75.jpg','/images/games/SamanthaSwiftFountainsofFate/SamanthaSwiftFountainsofFate179x135.jpg','/images/games/SamanthaSwiftFountainsofFate/SamanthaSwiftFountainsofFate320x240.jpg','false','/images/games/thumbnails_med_2/SamanthaSwiftFountainsofFate130x75.gif','/exe/SamanthaSwift4_26739872-setup.exe?lc=en&ext=SamanthaSwift4_26739872-setup.exe','Covet the Fountain of Youth!','Reclaim the Emerald of Judgment and search for the Fountain of Youth!','false',false,false,'Samantha Swift 4');ag(119284590,'The Heritage','/images/games/TheHeritage/TheHeritage81x46.gif',1100710,119353300,'','false','/images/games/TheHeritage/TheHeritage16x16.gif',false,11323,'/images/games/TheHeritage/TheHeritage100x75.jpg','/images/games/TheHeritage/TheHeritage179x135.jpg','/images/games/TheHeritage/TheHeritage320x240.jpg','false','/images/games/thumbnails_med_2/TheHeritage130x75.gif','/exe/the_heritage_289063647-setup.exe?lc=en&ext=the_heritage_289063647-setup.exe','Escape War and Protect Your Daughter!','Search grandfather&rsquo;s haunted mansion to escape the war and protect your daughter!','false',false,false,'The Heritage');ag(119285220,'Mystery P.I.™ - Stolen in San Francisco','/images/games/MysteryPIStolenInSanFracisco/MysteryPIStolenInSanFracisco81x46.gif',1100710,119354920,'','false','/images/games/MysteryPIStolenInSanFracisco/MysteryPIStolenInSanFracisco16x16.gif',false,11323,'/images/games/MysteryPIStolenInSanFracisco/MysteryPIStolenInSanFracisco100x75.jpg','/images/games/MysteryPIStolenInSanFracisco/MysteryPIStolenInSanFracisco179x135.jpg','/images/games/MysteryPIStolenInSanFracisco/MysteryPIStolenInSanFracisco320x240.jpg','false','/images/games/thumbnails_med_2/MysteryPIStolenInSanFracisco130x75.gif','/exe/mystery_pi_san_francisco_29328371-setup.exe?lc=en&ext=mystery_pi_san_francisco_29328371-setup.exe','Search for the Stolen Gold!','Search San Francisco for $250 million in stolen gold!','false',false,false,'Mystery PI San Francisco');ag(119289423,'Dream Day Wedding Getaways Bundle - 3 in 1','/images/games/dream_day_wedding_getaways_bundle/dream_day_wedding_getaways_bundle81x46.gif',1100710,119358887,'','false','/images/games/dream_day_wedding_getaways_bundle/dream_day_wedding_getaways_bundle16x16.gif',false,11323,'/images/games/dream_day_wedding_getaways_bundle/dream_day_wedding_getaways_bundle100x75.jpg','/images/games/dream_day_wedding_getaways_bundle/dream_day_wedding_getaways_bundle179x135.jpg','/images/games/dream_day_wedding_getaways_bundle/dream_day_wedding_getaways_bundle320x240.jpg','false','/images/games/thumbnails_med_2/dream_day_wedding_getaways_bundle130x75.gif','/exe/ddw_getaways_bundle_08735074-setup.exe?lc=en&ext=ddw_getaways_bundle_08735074-setup.exe','Jet Set and Wed!','Jet set and wed - three destination Dream Day Wedding games in one!','false',false,false,'Dream Day Wedding Getaways Bun');ag(119292470,'World Riddles: Seven Wonders','/images/games/WorldRiddlesSevenWonders/WorldRiddlesSevenWonders81x46.gif',1007,119361140,'','false','/images/games/WorldRiddlesSevenWonders/WorldRiddlesSevenWonders16x16.gif',false,11323,'/images/games/WorldRiddlesSevenWonders/WorldRiddlesSevenWonders100x75.jpg','/images/games/WorldRiddlesSevenWonders/WorldRiddlesSevenWonders179x135.jpg','/images/games/WorldRiddlesSevenWonders/WorldRiddlesSevenWonders320x240.jpg','false','/images/games/thumbnails_med_2/WorldRiddlesSevenWonders130x75.gif','/exe/world_riddles_seven_wonders_56231800-setup.exe?lc=en&ext=world_riddles_seven_wonders_56231800-setup.exe','Journey Across Ancient Civilizations!','Journey across ancient civilizations using strategic grid-clicking maneuvers!','false',false,false,'World Riddles Seven Wonders');ag(119293203,'The Great Pharaoh','/images/games/TheGreatPharaoh/TheGreatPharaoh81x46.gif',1007,119362910,'','false','/images/games/TheGreatPharaoh/TheGreatPharaoh16x16.gif',false,11323,'/images/games/TheGreatPharaoh/TheGreatPharaoh100x75.jpg','/images/games/TheGreatPharaoh/TheGreatPharaoh179x135.jpg','/images/games/TheGreatPharaoh/TheGreatPharaoh320x240.jpg','false','/images/games/thumbnails_med_2/TheGreatPharaoh130x75.gif','/exe/the_great_pharaoh_06531274-setup.exe?lc=en&ext=the_great_pharaoh_06531274-setup.exe','Meet Mummies, Get the Gold!','Meet Egyptian mummies and match-3 to get the gold!','false',false,false,'The Great Pharaoh');ag(119300887,'Grace’s Quest: To Catch An Art Thief','/images/games/GracesQuestToCatchAnArtThief/GracesQuestToCatchAnArtThief81x46.gif',1100710,119369283,'','false','/images/games/GracesQuestToCatchAnArtThief/GracesQuestToCatchAnArtThief16x16.gif',false,11323,'/images/games/GracesQuestToCatchAnArtThief/GracesQuestToCatchAnArtThief100x75.jpg','/images/games/GracesQuestToCatchAnArtThief/GracesQuestToCatchAnArtThief179x135.jpg','/images/games/GracesQuestToCatchAnArtThief/GracesQuestToCatchAnArtThief320x240.jpg','false','/images/games/thumbnails_med_2/GracesQuestToCatchAnArtThief130x75.gif','/exe/graces_quest_to_catch_an_art_thief_54121811-setup.exe?lc=en&ext=graces_quest_to_catch_an_art_thief_54121811-setup.exe','Recover Priceless Stolen Art!','Jet across Europe to recover priceless stolen art and rescue Chloe!','false',false,false,'Graces Quest To Catch An Art T');ag(119302503,'Hidden Magic','/images/games/HiddenMagic/HiddenMagic81x46.gif',1100710,119371950,'','false','/images/games/HiddenMagic/HiddenMagic16x16.gif',false,11323,'/images/games/HiddenMagic/HiddenMagic100x75.jpg','/images/games/HiddenMagic/HiddenMagic179x135.jpg','/images/games/HiddenMagic/HiddenMagic320x240.jpg','false','/images/games/thumbnails_med_2/HiddenMagic130x75.gif','/exe/hidden_magic_89432074-setup.exe?lc=en&ext=hidden_magic_89432074-setup.exe','Hidden Object with Battle Mechanics!','A mystical hidden object with adventure, puzzles, and battle mechanics!','false',false,false,'Hidden Magic');ag(119303207,'Women’s Murder Club: Little Black Lies','/images/games/WMC4/WMC481x46.gif',1100710,119372820,'','false','/images/games/WMC4/WMC416x16.gif',false,11323,'/images/games/WMC4/WMC4100x75.jpg','/images/games/WMC4/WMC4179x135.jpg','/images/games/WMC4/WMC4320x240.jpg','false','/images/games/thumbnails_med_2/WMC4130x75.gif','/exe/womens_murder_club_43874232-setup.exe?lc=en&ext=womens_murder_club_43874232-setup.exe','A cold case heats up!','A cold case heats up when a true-crime author is put on ice.','false',false,false,'Womens Murder Club 4 STD');ag(119305147,'Rare Treasures: Dinnerware Trading Company','/images/games/RareTreasuresDinnerwareTrading/RareTreasuresDinnerwareTrading81x46.gif',0,119374857,'','false','/images/games/RareTreasuresDinnerwareTrading/RareTreasuresDinnerwareTrading16x16.gif',false,11323,'/images/games/RareTreasuresDinnerwareTrading/RareTreasuresDinnerwareTrading100x75.jpg','/images/games/RareTreasuresDinnerwareTrading/RareTreasuresDinnerwareTrading179x135.jpg','/images/games/RareTreasuresDinnerwareTrading/RareTreasuresDinnerwareTrading320x240.jpg','false','/images/games/thumbnails_med_2/RareTreasuresDinnerwareTrading130x75.gif','/exe/rare_treasures_45108420-setup.exe?lc=en&ext=rare_treasures_45108420-setup.exe','Build a Porcelain Empire!','Inherit the Cavendish china company and restore a porcelain empire!','false',false,false,'Rare Treasures Dinnerware Trad');ag(119308277,'Robo Pogo','/images/games/RoboPogo/RoboPogo81x46.gif',110083820,119377983,'55a02da7-a12d-40ce-81ac-d230ac3972dd','false','/images/games/RoboPogo/RoboPogo16x16.gif',false,11323,'/images/games/RoboPogo/RoboPogo100x75.jpg','/images/games/RoboPogo/RoboPogo179x135.jpg','/images/games/RoboPogo/RoboPogo320x240.jpg','false','/images/games/thumbnails_med_2/RoboPogo130x75.gif','','Guide robo pogo!','Guide robo pogo down a road using the mouse.','true',false,false,'Robo Pogo OL');ag(119309383,'Heroes Of Kalevala','/images/games/HeroesOfKalevala/HeroesOfKalevala81x46.gif',1007,119378710,'','false','/images/games/HeroesOfKalevala/HeroesOfKalevala16x16.gif',false,11323,'/images/games/HeroesOfKalevala/HeroesOfKalevala100x75.jpg','/images/games/HeroesOfKalevala/HeroesOfKalevala179x135.jpg','/images/games/HeroesOfKalevala/HeroesOfKalevala320x240.jpg','false','/images/games/thumbnails_med_2/HeroesOfKalevala130x75.gif','/exe/heroes_of_kalevala_61046124-setup.exe?lc=en&ext=heroes_of_kalevala_61046124-setup.exe','Epic Match-3 Across the Lands of Kalevala!','Set off on a match-3 construction crusade across the lands of Kalevala!','false',false,false,'Heroes Of Kalevala');ag(119313297,'Robin’s Quest: A Legend Born','/images/games/RobinsQuestALegendBorn/RobinsQuestALegendBorn81x46.gif',1100710,119382873,'','false','/images/games/RobinsQuestALegendBorn/RobinsQuestALegendBorn16x16.gif',false,11323,'/images/games/RobinsQuestALegendBorn/RobinsQuestALegendBorn100x75.jpg','/images/games/RobinsQuestALegendBorn/RobinsQuestALegendBorn179x135.jpg','/images/games/RobinsQuestALegendBorn/RobinsQuestALegendBorn320x240.jpg','false','/images/games/thumbnails_med_2/RobinsQuestALegendBorn130x75.gif','/exe/robins_quest_06412047-setup.exe?lc=en&ext=robins_quest_06412047-setup.exe','Be the Hero of the People!','Be the hero who steals from the rich and gives to the poor!','false',false,false,'Robins Quest A Legend Born');ag(119314100,'Rachel&rsquo;s Retreat','/images/games/RachelsRetreat/RachelsRetreat81x46.gif',110127790,119383703,'','false','/images/games/RachelsRetreat/RachelsRetreat16x16.gif',false,11323,'/images/games/RachelsRetreat/RachelsRetreat100x75.jpg','/images/games/RachelsRetreat/RachelsRetreat179x135.jpg','/images/games/RachelsRetreat/RachelsRetreat320x240.jpg','false','/images/games/thumbnails_med_2/RachelsRetreat130x75.gif','/exe/rachels_retreat_89420452-setup.exe?lc=en&ext=rachels_retreat_89420452-setup.exe','Create a Tropical Spa Getaway!','Help Rachel create the perfect spa getaway in a tropical paradise!','false',false,false,'Rachels Retreat');ag(119315680,'Cake Jam','/images/games/Cakejam/Cakejam81x46.gif',110083820,119384367,'98c960d5-9b8f-47f7-8958-eb12ca17592f','false','/images/games/Cakejam/Cakejam16x16.gif',false,11323,'/images/games/Cakejam/Cakejam100x75.jpg','/images/games/Cakejam/Cakejam179x135.jpg','/images/games/Cakejam/Cakejam320x240.jpg','false','/images/games/thumbnails_med_2/Cakejam130x75.gif','','Cake making game.','Cake making game. Make the customers their cakes as fast as you can!','true',false,false,'Cake Jam OL');ag(119320727,'Fishdom: Seasons Under The Sea','/images/games/FishdomSeasonsUnderTheSea/FishdomSeasonsUnderTheSea81x46.gif',1007,119389397,'','false','/images/games/FishdomSeasonsUnderTheSea/FishdomSeasonsUnderTheSea16x16.gif',false,11323,'/images/games/FishdomSeasonsUnderTheSea/FishdomSeasonsUnderTheSea100x75.jpg','/images/games/FishdomSeasonsUnderTheSea/FishdomSeasonsUnderTheSea179x135.jpg','/images/games/FishdomSeasonsUnderTheSea/FishdomSeasonsUnderTheSea320x240.jpg','false','/images/games/thumbnails_med_2/FishdomSeasonsUnderTheSea130x75.gif','/exe/fishdom_seasons_54120485-setup.exe?lc=en&ext=fishdom_seasons_54120485-setup.exe','Festive, Addictive Tile-Swapping Fun!','Celebrate the holidays with addictive tile-swapping and create your own festive aquariums!','false',false,false,'Fishdom Seasons Under The Sea');ag(119321807,'The Institute: A Becky Brogan Adventure','/images/games/TheInstituteBeckyBrogan2/TheInstituteBeckyBrogan281x46.gif',1100710,119390470,'','false','/images/games/TheInstituteBeckyBrogan2/TheInstituteBeckyBrogan216x16.gif',false,11323,'/images/games/TheInstituteBeckyBrogan2/TheInstituteBeckyBrogan2100x75.jpg','/images/games/TheInstituteBeckyBrogan2/TheInstituteBeckyBrogan2179x135.jpg','/images/games/TheInstituteBeckyBrogan2/TheInstituteBeckyBrogan2320x240.jpg','false','/images/games/thumbnails_med_2/TheInstituteBeckyBrogan2130x75.gif','/exe/the_institute_becky_brogan_2_56414541-setup.exe?lc=en&ext=the_institute_becky_brogan_2_56414541-setup.exe','Mysterious Disappearance from a Psychological Institute!','Becky takes on a seek-and-find mystery after a nurse disappears from a mental institute!','false',false,false,'The Institute Becky Brogan 2');ag(119323333,'Burger Jam','/images/games/burgerjam/burgerjam81x46.gif',110083820,11939240,'50e92fc3-14d2-44fc-b173-5f20d39c8f06','false','/images/games/burgerjam/burgerjam16x16.gif',false,11323,'/images/games/burgerjam/burgerjam100x75.jpg','/images/games/burgerjam/burgerjam179x135.jpg','/images/games/burgerjam/burgerjam320x240.jpg','false','/images/games/thumbnails_med_2/burgerjam130x75.gif','','Run your burger business!','Your burger business may be booming, but can you satisfy all the customer orders and serve them quickly?','true',false,false,'Burger Jam OL');ag(119324760,'Vampire Brides: Love Over Death','/images/games/VampireBridesLoveOverDeath/VampireBridesLoveOverDeath81x46.gif',1100710,119393353,'','false','/images/games/VampireBridesLoveOverDeath/VampireBridesLoveOverDeath16x16.gif',false,11323,'/images/games/VampireBridesLoveOverDeath/VampireBridesLoveOverDeath100x75.jpg','/images/games/VampireBridesLoveOverDeath/VampireBridesLoveOverDeath179x135.jpg','/images/games/VampireBridesLoveOverDeath/VampireBridesLoveOverDeath320x240.jpg','false','/images/games/thumbnails_med_2/VampireBridesLoveOverDeath130x75.gif','/exe/vampire_brides_love_over_death_96423180-setup.exe?lc=en&ext=vampire_brides_love_over_death_96423180-setup.exe','Marry an Immortal to Save Your Father!','Marry an immortal to save your father&rsquo;s life in this supernatural seek-and-find!','false',false,false,'Vampire Brides Love Over Death');ag(119325720,'The Bubble King','/images/games/TheBubbleKing/TheBubbleKing81x46.gif',110083820,119394177,'4532948f-345a-473f-ac64-48054039bcd9','false','/images/games/TheBubbleKing/TheBubbleKing16x16.gif',false,11323,'/images/games/TheBubbleKing/TheBubbleKing100x75.jpg','/images/games/TheBubbleKing/TheBubbleKing179x135.jpg','/images/games/TheBubbleKing/TheBubbleKing320x240.jpg','false','/images/games/thumbnails_med_2/TheBubbleKing130x75.gif','','Help the bubble king!','Help the bubble king blow the largest bubble gum bubbles on his bouncing hopper.','true',false,false,'The Bubble King OL');ag(119326377,'Panda Sniper 2','/images/games/PandaSniper2/PandaSniper281x46.gif',110083820,1193950,'4f2513ee-1ea6-4f26-89b8-c11a930b7496','false','/images/games/PandaSniper2/PandaSniper216x16.gif',false,11323,'/images/games/PandaSniper2/PandaSniper2100x75.jpg','/images/games/PandaSniper2/PandaSniper2179x135.jpg','/images/games/PandaSniper2/PandaSniper2320x240.jpg','false','/images/games/thumbnails_med_2/PandaSniper2130x75.gif','','Rescue Panda!','Rescue Panda when he gets in trouble.','true',false,false,'Panda Sniper 2 OL');ag(119327787,'Panda Sniper 1','/images/games/pandasniper1/pandasniper181x46.gif',110083820,119396263,'fee7e54c-f1f0-4158-8925-dd22b3709387','false','/images/games/pandasniper1/pandasniper116x16.gif',false,11323,'/images/games/pandasniper1/pandasniper1100x75.jpg','/images/games/pandasniper1/pandasniper1179x135.jpg','/images/games/pandasniper1/pandasniper1320x240.jpg','false','/images/games/thumbnails_med_2/pandasniper1130x75.gif','','Rescue Panda!','Rescue Panda when he gets in trouble.','true',false,false,'Panda Sniper 1 OL');ag(119333493,'Roads of Rome','/images/games/RoadsOfRome/RoadsOfRome81x46.gif',110127790,119402103,'','false','/images/games/RoadsOfRome/RoadsOfRome16x16.gif',false,11323,'/images/games/RoadsOfRome/RoadsOfRome100x75.jpg','/images/games/RoadsOfRome/RoadsOfRome179x135.jpg','/images/games/RoadsOfRome/RoadsOfRome320x240.jpg','false','/images/games/thumbnails_med_2/RoadsOfRome130x75.gif','/exe/roads_of_rome_86421241-setup.exe?lc=en&ext=roads_of_rome_86421241-setup.exe','Lead Victorius Through Caeesar’s Daunting Tasks!','Lead Victorius to his bride in Rome by completing Caesar’s daunting tasks!','false',false,false,'Roads Of Rome');ag(119334537,'Finding Hope','/images/games/FindingHope/FindingHope81x46.gif',1100710,11940330,'','false','/images/games/FindingHope/FindingHope16x16.gif',false,11323,'/images/games/FindingHope/FindingHope100x75.jpg','/images/games/FindingHope/FindingHope179x135.jpg','/images/games/FindingHope/FindingHope320x240.jpg','false','/images/games/thumbnails_med_2/FindingHope130x75.gif','/exe/finding_hope_41042562-setup.exe?lc=en&ext=finding_hope_41042562-setup.exe','Restore Hope&rsquo;s Beautiful Family Farmhouse!','Restore Hope&rsquo;s farmhouse and follow her family through good times and hardship!','false',false,false,'Finding Hope');ag(119341293,'Escape from Frankenstein’s Castle','/images/games/EscapeFromFrankensteinsCastle/EscapeFromFrankensteinsCastle81x46.gif',1100710,119410747,'','false','/images/games/EscapeFromFrankensteinsCastle/EscapeFromFrankensteinsCastle16x16.gif',false,11323,'/images/games/EscapeFromFrankensteinsCastle/EscapeFromFrankensteinsCastle100x75.jpg','/images/games/EscapeFromFrankensteinsCastle/EscapeFromFrankensteinsCastle179x135.jpg','/images/games/EscapeFromFrankensteinsCastle/EscapeFromFrankensteinsCastle320x240.jpg','false','/images/games/thumbnails_med_2/EscapeFromFrankensteinsCastle130x75.gif','/exe/escape_from_frankensteins_cast_35123001-setup.exe?lc=en&ext=escape_from_frankensteins_cast_35123001-setup.exe','Dark, Thrilling Hidden Object Adventure!','Plot Hannah&rsquo;s escape and find her fiance in this thrilling hidden object adventure!','false',false,false,'Escape From Frankensteins Cast');ag(119342140,'Exorcist','/images/games/Exorcist/Exorcist81x46.gif',1100710,119411577,'','false','/images/games/Exorcist/Exorcist16x16.gif',false,11323,'/images/games/Exorcist/Exorcist100x75.jpg','/images/games/Exorcist/Exorcist179x135.jpg','/images/games/Exorcist/Exorcist320x240.jpg','false','/images/games/thumbnails_med_2/Exorcist130x75.gif','/exe/exorcist_62035702-setup.exe?lc=en&ext=exorcist_62035702-setup.exe','Eliminate a European Town&rsquo;s Evil Spirits!','Eliminate the evil spirits of Mephisto in an eastern European town!','false',false,false,'Exorcist');ag(119344420,'King&rsquo;s Smith 2','/images/games/KingsSmith2/KingsSmith281x46.gif',110127790,119413560,'','false','/images/games/KingsSmith2/KingsSmith216x16.gif',false,11323,'/images/games/KingsSmith2/KingsSmith2100x75.jpg','/images/games/KingsSmith2/KingsSmith2179x135.jpg','/images/games/KingsSmith2/KingsSmith2320x240.jpg','false','/images/games/thumbnails_med_2/KingsSmith2130x75.gif','/exe/kings_smith_2_52124510-setup.exe?lc=en&ext=kings_smith_2_52124510-setup.exe','Save Your Kingdom and Reclaim Your Honor!','Save your kingdom and bring a betrayer to justice!','false',false,false,'Kings Smith 2');ag(119351190,'GabCab','/images/games/GabCab/GabCab81x46.gif',0,119420653,'','false','/images/games/GabCab/GabCab16x16.gif',false,11323,'/images/games/GabCab/GabCab100x75.jpg','/images/games/GabCab/GabCab179x135.jpg','/images/games/GabCab/GabCab320x240.jpg','false','/images/games/thumbnails_med_2/GabCab130x75.gif','/exe/gabcab_45786834-setup.exe?lc=en&ext=gabcab_45786834-setup.exe','Hot Wheels and Fast Fun!','Rev your engines for hot wheels and full fares with time management fun!','false',false,false,'GabCab');ag(119352260,'Cookie Domination','/images/games/CookieDomination/CookieDomination81x46.gif',0,119421853,'','false','/images/games/CookieDomination/CookieDomination16x16.gif',false,11323,'/images/games/CookieDomination/CookieDomination100x75.jpg','/images/games/CookieDomination/CookieDomination179x135.jpg','/images/games/CookieDomination/CookieDomination320x240.jpg','false','/images/games/thumbnails_med_2/CookieDomination130x75.gif','/exe/cookie_domination_64513247-setup.exe?lc=en&ext=cookie_domination_64513247-setup.exe','Cookie Selling Strategic Adventure!','Conquer the cookie nation with sugar, spice, and a competitive price!','false',false,false,'Cookie Domination');ag(119353333,'Paradise Beach 2: Around the World','/images/games/ParadiseBeach2/ParadiseBeach281x46.gif',0,119422570,'','false','/images/games/ParadiseBeach2/ParadiseBeach216x16.gif',false,11323,'/images/games/ParadiseBeach2/ParadiseBeach2100x75.jpg','/images/games/ParadiseBeach2/ParadiseBeach2179x135.jpg','/images/games/ParadiseBeach2/ParadiseBeach2320x240.jpg','false','/images/games/thumbnails_med_2/ParadiseBeach2130x75.gif','/exe/paradise_beach_2_51231210-setup.exe?lc=en&ext=paradise_beach_2_51231210-setup.exe','Construct a Global Network of Resorts!','Design, build, and manage a global network of beach resorts!','false',false,false,'Paradise Beach 2');ag(119354450,'Governor of Poker 2','/images/games/GovernorofPoker2SE/GovernorofPoker2SE81x46.gif',1004,119423890,'','false','/images/games/GovernorofPoker2SE/GovernorofPoker2SE16x16.gif',false,11323,'/images/games/GovernorofPoker2SE/GovernorofPoker2SE100x75.jpg','/images/games/GovernorofPoker2SE/GovernorofPoker2SE179x135.jpg','/images/games/GovernorofPoker2SE/GovernorofPoker2SE320x240.jpg','false','/images/games/thumbnails_med_2/GovernorofPoker2SE130x75.gif','/exe/governor_of_poker_2_45432145-setup.exe?lc=en&ext=governor_of_poker_2_45432145-setup.exe','More Cities and Tournaments to Conquer!','Head to the wild west for more tournaments, enemies, and cities to conquer!','false',false,false,'Governor of Poker 2');ag(119355880,'Treasures of Mystery Island 2','/images/games/TheTreasuresOfMysteryIsland2/TheTreasuresOfMysteryIsland281x46.gif',1100710,119424587,'','false','/images/games/TheTreasuresOfMysteryIsland2/TheTreasuresOfMysteryIsland216x16.gif',false,11323,'/images/games/TheTreasuresOfMysteryIsland2/TheTreasuresOfMysteryIsland2100x75.jpg','/images/games/TheTreasuresOfMysteryIsland2/TheTreasuresOfMysteryIsland2179x135.jpg','/images/games/TheTreasuresOfMysteryIsland2/TheTreasuresOfMysteryIsland2320x240.jpg','false','/images/games/thumbnails_med_2/TheTreasuresOfMysteryIsland2130x75.gif','/exe/treasures_of_mystery_iIsland_2_56454301-setup.exe?lc=en&ext=treasures_of_mystery_iIsland_2_56454301-setup.exe','Reach the Future Before the Volcano Spews!','Travel from past to present before a rumbling volcano erupts!','false',false,false,'Treasures Of Mystery Island 2');ag(119362873,'Ski Resort Mogul','/images/games/SkiResortMogul/SkiResortMogul81x46.gif',110127790,119431363,'','false','/images/games/SkiResortMogul/SkiResortMogul16x16.gif',false,11323,'/images/games/SkiResortMogul/SkiResortMogul100x75.jpg','/images/games/SkiResortMogul/SkiResortMogul179x135.jpg','/images/games/SkiResortMogul/SkiResortMogul320x240.jpg','false','/images/games/thumbnails_med_2/SkiResortMogul130x75.gif','/exe/ski_resort_mogul_56423044-setup.exe?lc=en&ext=ski_resort_mogul_56423044-setup.exe','Save a Struggling Ski Resort!','Save your aunt&rsquo;s struggling ski resort by building hotels, shops, and restaurants!','false',false,false,'Ski Resort Mogul');ag(119363483,'Bee Garden: The Lost Queen','/images/games/BeeGarden/BeeGarden81x46.gif',110127790,119432153,'','false','/images/games/BeeGarden/BeeGarden16x16.gif',false,11323,'/images/games/BeeGarden/BeeGarden100x75.jpg','/images/games/BeeGarden/BeeGarden179x135.jpg','/images/games/BeeGarden/BeeGarden320x240.jpg','false','/images/games/thumbnails_med_2/BeeGarden130x75.gif','/exe/bee_garden_54410482-setup.exe?lc=en&ext=bee_garden_54410482-setup.exe','Regrow the Garden and Find the Queen!','Grow flowers, make honey, and find the lost bee queen!','false',false,false,'Bee Garden');ag(119366390,'Aerie - Spirit of the Forest','/images/games/AerieSpiritOfTheForest/AerieSpiritOfTheForest81x46.gif',110127790,11943513,'','false','/images/games/AerieSpiritOfTheForest/AerieSpiritOfTheForest16x16.gif',false,11323,'/images/games/AerieSpiritOfTheForest/AerieSpiritOfTheForest100x75.jpg','/images/games/AerieSpiritOfTheForest/AerieSpiritOfTheForest179x135.jpg','/images/games/AerieSpiritOfTheForest/AerieSpiritOfTheForest320x240.jpg','false','/images/games/thumbnails_med_2/AerieSpiritOfTheForest130x75.gif','/exe/aerie_spirit_of_the_forest_51044544-setup.exe?lc=en&ext=aerie_spirit_of_the_forest_51044544-setup.exe','Help Aerie Heal Nature’s Wounds!','Help Aerie heal nature’s wounds in a time and resource management game!','false',false,false,'Aerie Spirit of the Forest');ag(119367427,'The Matchmaker','/images/games/TheMatchmaker/TheMatchmaker81x46.gif',110083820,119436893,'0ef52396-c647-4994-bb3b-bea4bb0ebfe8','false','/images/games/TheMatchmaker/TheMatchmaker16x16.gif',false,11323,'/images/games/TheMatchmaker/TheMatchmaker100x75.jpg','/images/games/TheMatchmaker/TheMatchmaker179x135.jpg','/images/games/TheMatchmaker/TheMatchmaker320x240.jpg','false','/images/games/thumbnails_med_2/TheMatchmaker130x75.gif','','Make them fall in love!','Play Cupid and make couples fall head over heels in love.','true',false,false,'The Matchmaker OL AS3');ag(119368983,'Hairstyle Wonders 2','/images/games/HairstyleWonders2/HairstyleWonders281x46.gif',110083820,119437507,'8bbeac98-e8f0-464e-b4c3-bbb38bdaf131','false','/images/games/HairstyleWonders2/HairstyleWonders216x16.gif',false,11323,'/images/games/HairstyleWonders2/HairstyleWonders2100x75.jpg','/images/games/HairstyleWonders2/HairstyleWonders2179x135.jpg','/images/games/HairstyleWonders2/HairstyleWonders2320x240.jpg','false','/images/games/thumbnails_med_2/HairstyleWonders2130x75.gif','','Hotter hairstyles for a hotter you!','Ramp up your look with hotter hairstyles and get gorgeous.','true',false,false,'Hairstyle Wonders 2 OL');ag(119371843,'PuppetShow: Mystery of Joyville','/images/games/puppetshow/puppetshow81x46.gif',1000,119440493,'','false','/images/games/puppetshow/puppetshow16x16.gif',false,11323,'/images/games/puppetshow/puppetshow100x75.jpg','/images/games/puppetshow/puppetshow179x135.jpg','/images/games/puppetshow/puppetshow320x240.jpg','false','/images/games/thumbnails_med_2/puppetshow130x75.gif','/exe/puppet_show_54154510-setup.exe?lc=en&ext=puppet_show_54154510-setup.exe','Solve Puzzles and Uncover Dark Secrets!','Uncover dark secrets, find hidden clues, and solve sinister puzzles!','false',false,false,'Puppet Show');ag(119372183,'Trinklit Supreme','/images/games/TrinklitSupreme/TrinklitSupreme81x46.gif',1007,119441877,'','false','/images/games/TrinklitSupreme/TrinklitSupreme16x16.gif',false,11323,'/images/games/TrinklitSupreme/TrinklitSupreme100x75.jpg','/images/games/TrinklitSupreme/TrinklitSupreme179x135.jpg','/images/games/TrinklitSupreme/TrinklitSupreme320x240.jpg','false','/images/games/thumbnails_med_2/TrinklitSupreme130x75.gif','/exe/trinklit_supreme_40542024-setup.exe?lc=en&ext=trinklit_supreme_40542024-setup.exe','Unique and Addictive Matching Puzzle Game!','Master unique and addictive matching puzzles to build thousands of levels!','false',false,false,'Trinklit Supreme');ag(119374887,'Love Ahoy!','/images/games/LoveAhoy/LoveAhoy81x46.gif',1007,119443203,'','false','/images/games/LoveAhoy/LoveAhoy16x16.gif',false,11323,'/images/games/LoveAhoy/LoveAhoy100x75.jpg','/images/games/LoveAhoy/LoveAhoy179x135.jpg','/images/games/LoveAhoy/LoveAhoy320x240.jpg','false','/images/games/thumbnails_med_2/LoveAhoy130x75.gif','/exe/love_ahoy_56304232-setup.exe?lc=en&ext=love_ahoy_56304232-setup.exe','Matchmaking Mayhem on the High Seas!','Match passengers and create romances on your own cruise line!','false',false,false,'Love Ahoy');ag(119377877,'Doll House','/images/games/DollHouse/DollHouse81x46.gif',110083820,119446557,'1fba4ba7-f04c-413c-a0e3-b742d8df9192','false','/images/games/DollHouse/DollHouse16x16.gif',false,11323,'/images/games/DollHouse/DollHouse100x75.jpg','/images/games/DollHouse/DollHouse179x135.jpg','/images/games/DollHouse/DollHouse320x240.jpg','false','/images/games/thumbnails_med_2/DollHouse130x75.gif','','Your dolls deserve a house.','Don’t let your dolls out cold. Build them a house of their own.','true',false,false,'Doll House OL');ag(119384187,'Lamp Of Aladdin','/images/games/LampOfAladdin/LampOfAladdin81x46.gif',1007,119453407,'','false','/images/games/LampOfAladdin/LampOfAladdin16x16.gif',false,11323,'/images/games/LampOfAladdin/LampOfAladdin100x75.jpg','/images/games/LampOfAladdin/LampOfAladdin179x135.jpg','/images/games/LampOfAladdin/LampOfAladdin320x240.jpg','false','/images/games/thumbnails_med_2/LampOfAladdin130x75.gif','/exe/lamp_of_aladdin_01312452-setup.exe?lc=en&ext=lamp_of_aladdin_01312452-setup.exe','The World Where Dreams Come True!','Journey to a unique match-3 world where dreams come true!','false',false,false,'Lamp Of Aladdin');ag(119385203,'Farm Frenzy: Gone Fishing!','/images/games/FarmFrenzyGoneFishing/FarmFrenzyGoneFishing81x46.gif',110127790,119454653,'','false','/images/games/FarmFrenzyGoneFishing/FarmFrenzyGoneFishing16x16.gif',false,11323,'/images/games/FarmFrenzyGoneFishing/FarmFrenzyGoneFishing100x75.jpg','/images/games/FarmFrenzyGoneFishing/FarmFrenzyGoneFishing179x135.jpg','/images/games/FarmFrenzyGoneFishing/FarmFrenzyGoneFishing320x240.jpg','false','/images/games/thumbnails_med_2/FarmFrenzyGoneFishing130x75.gif','/exe/farm_frenzy_gone_fishing_53115374-setup.exe?lc=en&ext=farm_frenzy_gone_fishing_53115374-setup.exe','Raise a Variety of Exotic Fish!','Raise a variety of exotic fish and manufacture never-before-seen products!','false',false,false,'Farm Frenzy Gone Fishing');ag(119387420,'Nightfall Mysteries 2: Asylum Conspiracy','/images/games/NightfallMysteries2/NightfallMysteries281x46.gif',1100710,119456123,'','false','/images/games/NightfallMysteries2/NightfallMysteries216x16.gif',false,11323,'/images/games/NightfallMysteries2/NightfallMysteries2100x75.jpg','/images/games/NightfallMysteries2/NightfallMysteries2179x135.jpg','/images/games/NightfallMysteries2/NightfallMysteries2320x240.jpg','false','/images/games/thumbnails_med_2/NightfallMysteries2130x75.gif','/exe/nightfall_mysteries_2_13456897-setup.exe?lc=en&ext=nightfall_mysteries_2_13456897-setup.exe','Explore Spooky Ashburg Asylum!','Explore the spooky Ashburg Asylum and find Christine&rsquo;s missing grandfather!','false',false,false,'Nightfall Mysteries 2');ag(119388550,'Royal Trouble','/images/games/RoyalTrouble/RoyalTrouble81x46.gif',1007,119457153,'','false','/images/games/RoyalTrouble/RoyalTrouble16x16.gif',false,11323,'/images/games/RoyalTrouble/RoyalTrouble100x75.jpg','/images/games/RoyalTrouble/RoyalTrouble179x135.jpg','/images/games/RoyalTrouble/RoyalTrouble320x240.jpg','false','/images/games/thumbnails_med_2/RoyalTrouble130x75.gif','/exe/royal_trouble_05045420-setup.exe?lc=en&ext=royal_trouble_05045420-setup.exe','Escape Kidnappers on a Secluded Island!','Help two royal heirs escape kidnappers on a secluded island!','false',false,false,'Royal Trouble');ag(119391177,'Ice Cream Dash','/images/games/IceCreamDash/IceCreamDash81x46.gif',110083820,119460873,'e51f7713-ff0b-4d35-8383-c09c9f7fbaff','false','/images/games/IceCreamDash/IceCreamDash16x16.gif',false,11323,'/images/games/IceCreamDash/IceCreamDash100x75.jpg','/images/games/IceCreamDash/IceCreamDash179x135.jpg','/images/games/IceCreamDash/IceCreamDash320x240.jpg','false','/images/games/thumbnails_med_2/IceCreamDash130x75.gif','','Delicious treats up for sale.','Put on your apron and sell some ice cream.','true',false,false,'Ice Cream Dash OL');ag(119392940,'Sound Of Love','/images/games/SoundOfLove/SoundOfLove81x46.gif',110083820,119461640,'c07dec49-dac0-41f2-a80a-831f48f11db9','false','/images/games/SoundOfLove/SoundOfLove16x16.gif',false,11323,'/images/games/SoundOfLove/SoundOfLove100x75.jpg','/images/games/SoundOfLove/SoundOfLove179x135.jpg','/images/games/SoundOfLove/SoundOfLove320x240.jpg','false','/images/games/thumbnails_med_2/SoundOfLove130x75.gif','','Serenade the girl of your dreams.','Make the girl of your dreams fall in love with you.','true',false,false,'Sound Of Love OL');ag(119394193,'Puppet Show 2: The Souls of the Innocent','/images/games/PuppetShow2/PuppetShow281x46.gif',1100710,119463323,'','false','/images/games/PuppetShow2/PuppetShow216x16.gif',false,11323,'/images/games/PuppetShow2/PuppetShow2100x75.jpg','/images/games/PuppetShow2/PuppetShow2179x135.jpg','/images/games/PuppetShow2/PuppetShow2320x240.jpg','false','/images/games/thumbnails_med_2/PuppetShow2130x75.gif','/exe/puppet_show_2_53425420-setup.exe?lc=en&ext=puppet_show_2_53425420-setup.exe','Return to the PuppetShow!','Solve new mysteries and uncover dark secrets in PuppetShow&rsquo;s spooky sequel!','false',false,false,'Puppet Show 2');ag(119395777,'Play Time','/images/games/PlayTime/PlayTime81x46.gif',110083820,119464183,'53cdd4d9-46de-45b5-b109-70ac9191ba56','false','/images/games/PlayTime/PlayTime16x16.gif',false,11323,'/images/games/PlayTime/PlayTime100x75.jpg','/images/games/PlayTime/PlayTime179x135.jpg','/images/games/PlayTime/PlayTime320x240.jpg','false','/images/games/thumbnails_med_2/PlayTime130x75.gif','','Direct a drama. Win the game.','It’s time to win the inter-school drama competition.','true',false,false,'Play Time OL');ag(119396807,'Water Park','/images/games/WaterPark/WaterPark81x46.gif',110083820,11946590,'9ade59cc-3661-4511-b6ff-e7a4fbf4fb9d','false','/images/games/WaterPark/WaterPark16x16.gif',false,11323,'/images/games/WaterPark/WaterPark100x75.jpg','/images/games/WaterPark/WaterPark179x135.jpg','/images/games/WaterPark/WaterPark320x240.jpg','false','/images/games/thumbnails_med_2/WaterPark130x75.gif','','Put on your wet suit and get organized.','Help the children get totally drenched by guiding them to the right rides.','true',false,false,'Water Park OL');ag(119404747,'Youda Survivor','/images/games/YoudaSurvivor/YoudaSurvivor81x46.gif',110127790,119473437,'','false','/images/games/YoudaSurvivor/YoudaSurvivor16x16.gif',false,11323,'/images/games/YoudaSurvivor/YoudaSurvivor100x75.jpg','/images/games/YoudaSurvivor/YoudaSurvivor179x135.jpg','/images/games/YoudaSurvivor/YoudaSurvivor320x240.jpg','false','/images/games/thumbnails_med_2/YoudaSurvivor130x75.gif','/exe/youda_survivor_56465420-setup.exe?lc=en&ext=youda_survivor_56465420-setup.exe','Battle Pirates and Protect Your Tribe!','Battle pirates, protect your tribe, and escape an isolated island!','false',false,false,'Youda Survivor');ag(119407160,'King Arthur and Knights','/images/games/KingArthurandKnights/KingArthurandKnights81x46.gif',1100710,119476817,'','false','/images/games/KingArthurandKnights/KingArthurandKnights16x16.gif',false,11323,'/images/games/KingArthurandKnights/KingArthurandKnights100x75.jpg','/images/games/KingArthurandKnights/KingArthurandKnights179x135.jpg','/images/games/KingArthurandKnights/KingArthurandKnights320x240.jpg','false','/images/games/thumbnails_med_2/KingArthurandKnights130x75.gif','/exe/king_arthur_and_knights_31605410-setup.exe?lc=en&ext=king_arthur_and_knights_31605410-setup.exe','Hidden Object Game of Medieval Majesty!','Follow Arthur&rsquo;s reign from childhood to King of England!','false',false,false,'King Arthur and Knights');ag(119410927,'Arevan: The Bitter Truth','/images/games/ArevanTheBitterTruth/ArevanTheBitterTruth81x46.gif',0,119479640,'','false','/images/games/ArevanTheBitterTruth/ArevanTheBitterTruth16x16.gif',false,11323,'/images/games/ArevanTheBitterTruth/ArevanTheBitterTruth100x75.jpg','/images/games/ArevanTheBitterTruth/ArevanTheBitterTruth179x135.jpg','/images/games/ArevanTheBitterTruth/ArevanTheBitterTruth320x240.jpg','false','/images/games/thumbnails_med_2/ArevanTheBitterTruth130x75.gif','/exe/arevan_the_bitter_truth_86424124-setup.exe?lc=en&ext=arevan_the_bitter_truth_86424124-setup.exe','A Murderous Role-playing Adventure!','Solve mysterious murders across mystical kingdoms in this role-playing adventure!','false',false,false,'Arevan The Bitter Truth');ag(119411720,'Laby','/images/games/Laby/Laby81x46.gif',1007,119480420,'','false','/images/games/Laby/Laby16x16.gif',false,11323,'/images/games/Laby/Laby100x75.jpg','/images/games/Laby/Laby179x135.jpg','/images/games/Laby/Laby320x240.jpg','false','/images/games/thumbnails_med_2/Laby130x75.gif','/exe/laby_78544785-setup.exe?lc=en&ext=laby_78544785-setup.exe','Solve the Greatest Mystery of Alchemy!','Visit a magic laboratory to solve the mystery of the Philosophers Stone!','false',false,false,'Laby');ag(119418883,'Master Wu And The Glory Of The Ten Powers','/images/games/masterwu/masterwu81x46.gif',1100710,119487567,'','false','/images/games/masterwu/masterwu16x16.gif',false,11323,'/images/games/masterwu/masterwu100x75.jpg','/images/games/masterwu/masterwu179x135.jpg','/images/games/masterwu/masterwu320x240.jpg','false','/images/games/thumbnails_med_2/masterwu130x75.gif','/exe/master_wu_56435210-setup.exe?lc=en&ext=master_wu_56435210-setup.exe','A Chinese Quest for a Mystical Sword!','Journey through ancient China in search of the Sword of the Ten Powers!','false',false,false,'Master Wu');ag(119420110,'Noahs Ark','/images/games/NoahsArk/NoahsArk81x46.gif',110083820,119489810,'08762950-e509-4be7-aa92-d66d78fc269d','false','/images/games/NoahsArk/NoahsArk16x16.gif',false,11323,'/images/games/NoahsArk/NoahsArk100x75.jpg','/images/games/NoahsArk/NoahsArk179x135.jpg','/images/games/NoahsArk/NoahsArk320x240.jpg','false','/images/games/thumbnails_med_2/NoahsArk130x75.gif','','Hidden Objects in Noahs Ark.','Find Hidden Objects in Noahs Ark!','true',false,false,'Noahs Ark OL AS3');ag(119421887,'The Stylist','/images/games/TheStylist/TheStylist81x46.gif',110083820,119490580,'6923beaa-4bdd-41a1-a753-a01e3507036d','false','/images/games/TheStylist/TheStylist16x16.gif',false,11323,'/images/games/TheStylist/TheStylist100x75.jpg','/images/games/TheStylist/TheStylist179x135.jpg','/images/games/TheStylist/TheStylist320x240.jpg','false','/images/games/thumbnails_med_2/TheStylist130x75.gif','','Bring out your passion for fashion!','Address your inner diva and style your clients to look their best.','true',false,false,'The Stylist OL');ag(119424153,'QuizTime','/images/games/QuizTime/QuizTime81x46.gif',0,119493587,'','false','/images/games/QuizTime/QuizTime16x16.gif',false,11323,'/images/games/QuizTime/QuizTime100x75.jpg','/images/games/QuizTime/QuizTime179x135.jpg','/images/games/QuizTime/QuizTime320x240.jpg','false','/images/games/thumbnails_med_2/QuizTime130x75.gif','/exe/quiz_time_55120154-setup.exe?lc=en&ext=quiz_time_55120154-setup.exe','Test Your Trivia Talents!','Test your trivia talents by battling it out solo or with friends!','false',false,false,'Quiz Time');ag(119426177,'Puzzling Paws','/images/games/PuzzlingPaws/PuzzlingPaws81x46.gif',1007,119495873,'','false','/images/games/PuzzlingPaws/PuzzlingPaws16x16.gif',false,11323,'/images/games/PuzzlingPaws/PuzzlingPaws100x75.jpg','/images/games/PuzzlingPaws/PuzzlingPaws179x135.jpg','/images/games/PuzzlingPaws/PuzzlingPaws320x240.jpg','false','/images/games/thumbnails_med_2/PuzzlingPaws130x75.gif','/exe/puzzling_paws_48524100-setup.exe?lc=en&ext=puzzling_paws_48524100-setup.exe','A 3D Block-pushing Puzzle Game!','3D block-pushing puzzles with hours of devilishly tricky gameplay!','false',false,false,'Puzzling Paws');ag(119427107,'Wedding Planner','/images/games/WeddingPlanner/WeddingPlanner81x46.gif',110083820,119496783,'212b24b5-58c7-4bb6-994a-957b511e2e4c','false','/images/games/WeddingPlanner/WeddingPlanner16x16.gif',false,11323,'/images/games/WeddingPlanner/WeddingPlanner100x75.jpg','/images/games/WeddingPlanner/WeddingPlanner179x135.jpg','/images/games/WeddingPlanner/WeddingPlanner320x240.jpg','false','/images/games/thumbnails_med_2/WeddingPlanner130x75.gif','','A dream wedding awaits.','Plan a wedding for your clients. A special day they won’t forget.','true',false,false,'Wedding Planner OL');ag(119429693,'Amelie&rsquo;s Cafe: Halloween','/images/games/AmeliesCafeHalloween/AmeliesCafeHalloween81x46.gif',110127790,119498313,'','false','/images/games/AmeliesCafeHalloween/AmeliesCafeHalloween16x16.gif',false,11323,'/images/games/AmeliesCafeHalloween/AmeliesCafeHalloween100x75.jpg','/images/games/AmeliesCafeHalloween/AmeliesCafeHalloween179x135.jpg','/images/games/AmeliesCafeHalloween/AmeliesCafeHalloween320x240.jpg','false','/images/games/thumbnails_med_2/AmeliesCafeHalloween130x75.gif','/exe/amelies_cafe_halloween_56451054-setup.exe?lc=en&ext=amelies_cafe_halloween_56451054-setup.exe','Cater to Ghosts, Goblins, and Vampires!','Cater to ghosts, goblins, and vampires with brain pie and witch&rsquo;s brew!','false',false,false,'Amelies Cafe Halloween');ag(119431947,'Unlikely Suspects','/images/games/UnlikelySuspects/UnlikelySuspects81x46.gif',1100710,119500627,'','false','/images/games/UnlikelySuspects/UnlikelySuspects16x16.gif',false,11323,'/images/games/UnlikelySuspects/UnlikelySuspects100x75.jpg','/images/games/UnlikelySuspects/UnlikelySuspects179x135.jpg','/images/games/UnlikelySuspects/UnlikelySuspects320x240.jpg','false','/images/games/thumbnails_med_2/UnlikelySuspects130x75.gif','/exe/unlikely_suspects_54553404-setup.exe?lc=en&ext=unlikely_suspects_54553404-setup.exe','Track Criminals in a Hidden Object Whodunit!','Track 16 criminals across the globe in this hidden object whodunit!','false',false,false,'Unlikely Suspects');ag(119433690,'3 Days: Amulet Secret','/images/games/3DaysAmuletSecret/3DaysAmuletSecret81x46.gif',1100710,119502187,'','false','/images/games/3DaysAmuletSecret/3DaysAmuletSecret16x16.gif',false,11323,'/images/games/3DaysAmuletSecret/3DaysAmuletSecret100x75.jpg','/images/games/3DaysAmuletSecret/3DaysAmuletSecret179x135.jpg','/images/games/3DaysAmuletSecret/3DaysAmuletSecret320x240.jpg','false','/images/games/thumbnails_med_2/3DaysAmuletSecret130x75.gif','/exe/3_days_amulet_secret_30145641-setup.exe?lc=en&ext=3_days_amulet_secret_30145641-setup.exe','Solve the Riddle to Find the Amulet!','Travel the world with Anna to solve the riddle and find the amulet!','false',false,false,'3 Days Amulet Secret');ag(119434330,'Connys Cards','/images/games/ConnysCards/ConnysCards81x46.gif',110083820,119503937,'40b6a804-30b6-40b9-b824-6917bea857be','false','/images/games/ConnysCards/ConnysCards16x16.gif',false,11323,'/images/games/ConnysCards/ConnysCards100x75.jpg','/images/games/ConnysCards/ConnysCards179x135.jpg','/images/games/ConnysCards/ConnysCards320x240.jpg','false','/images/games/thumbnails_med_2/ConnysCards130x75.gif','','Place cards on the table!','Place the cards with matching colors on the playing field.','true',true,true,'Connys Cards OLT1 AS3');ag(119435540,'Great Migrations','/images/games/GreatMigrations/GreatMigrations81x46.gif',0,119504510,'','false','/images/games/GreatMigrations/GreatMigrations16x16.gif',false,11323,'/images/games/GreatMigrations/GreatMigrations100x75.jpg','/images/games/GreatMigrations/GreatMigrations179x135.jpg','/images/games/GreatMigrations/GreatMigrations320x240.jpg','false','/images/games/thumbnails_med_2/GreatMigrations130x75.gif','/exe/great_migrations_56452108-setup.exe?lc=en&ext=great_migrations_56452108-setup.exe','Lead Migrating Animals to Safety!','Lead migrating animals to safety to earn points and prestige!','false',false,false,'Great Migrations network');ag(119436510,'Coffee Rush 2','/images/games/CoffeeRush2/CoffeeRush281x46.gif',110127790,1195053,'','false','/images/games/CoffeeRush2/CoffeeRush216x16.gif',false,11323,'/images/games/CoffeeRush2/CoffeeRush2100x75.jpg','/images/games/CoffeeRush2/CoffeeRush2179x135.jpg','/images/games/CoffeeRush2/CoffeeRush2320x240.jpg','false','/images/games/thumbnails_med_2/CoffeeRush2130x75.gif','/exe/coffee_rush_2_5454212-setup.exe?lc=en&ext=coffee_rush_2_5454212-setup.exe','Wake Up and Sell the Coffee!','Wake up and sell the coffee amid match-3 and time management!','false',false,false,'Coffee Rush 2');ag(119437317,'Letters From Nowhere','/images/games/LettersFromNowhere/LettersFromNowhere81x46.gif',1100710,1195067,'','false','/images/games/LettersFromNowhere/LettersFromNowhere16x16.gif',false,11323,'/images/games/LettersFromNowhere/LettersFromNowhere100x75.jpg','/images/games/LettersFromNowhere/LettersFromNowhere179x135.jpg','/images/games/LettersFromNowhere/LettersFromNowhere320x240.jpg','false','/images/games/thumbnails_med_2/LettersFromNowhere130x75.gif','/exe/letters_from_nowhere_51015246-setup.exe?lc=en&ext=letters_from_nowhere_51015246-setup.exe','Investigate the Disappearance of Audrey&rsquo;s Husband!','Investigate the disappearance of Audrey&rsquo;s husband by following the mysterious Letters from Nowhere!','false',false,false,'Letters From Nowhere');ag(119438363,'Downtown Secrets','/images/games/DowntownSecrets/DowntownSecrets81x46.gif',1100710,11950757,'','false','/images/games/DowntownSecrets/DowntownSecrets16x16.gif',false,11323,'/images/games/DowntownSecrets/DowntownSecrets100x75.jpg','/images/games/DowntownSecrets/DowntownSecrets179x135.jpg','/images/games/DowntownSecrets/DowntownSecrets320x240.jpg','false','/images/games/thumbnails_med_2/DowntownSecrets130x75.gif','/exe/downtown_secrets_45241254-setup.exe?lc=en&ext=downtown_secrets_45241254-setup.exe','Investigate an underworld of deceit.','Investigate the seedy streets of an underworld teeming with deceit.','false',false,false,'Downtown Secrets');ag(119447777,'Ancient Spirits: Columbus&rsquo; Legacy','/images/games/AncientSpiritsColumbusLegacy/AncientSpiritsColumbusLegacy81x46.gif',1100710,119516103,'','false','/images/games/AncientSpiritsColumbusLegacy/AncientSpiritsColumbusLegacy16x16.gif',false,11323,'/images/games/AncientSpiritsColumbusLegacy/AncientSpiritsColumbusLegacy100x75.jpg','/images/games/AncientSpiritsColumbusLegacy/AncientSpiritsColumbusLegacy179x135.jpg','/images/games/AncientSpiritsColumbusLegacy/AncientSpiritsColumbusLegacy320x240.jpg','false','/images/games/thumbnails_med_2/AncientSpiritsColumbusLegacy130x75.gif','/exe/ancient_spirits_columbus_legacy_5431450-setup.exe?lc=en&ext=ancient_spirits_columbus_legacy_5431450-setup.exe','Unravel the Secrets of Columbus&rsquo; Lost Ship!','Join a famed archaeologist in unraveling the secrets of Columbus&rsquo; lost flagship!','false',false,false,'Ancient Spirits Columbus Legac');ag(119448860,'Elixir of Immortality','/images/games/ElixirofImmortality/ElixirofImmortality81x46.gif',1100710,119517180,'','false','/images/games/ElixirofImmortality/ElixirofImmortality16x16.gif',false,11323,'/images/games/ElixirofImmortality/ElixirofImmortality100x75.jpg','/images/games/ElixirofImmortality/ElixirofImmortality179x135.jpg','/images/games/ElixirofImmortality/ElixirofImmortality320x240.jpg','false','/images/games/thumbnails_med_2/ElixirofImmortality130x75.gif','/exe/elixir_of_immortality_56454210-setup.exe?lc=en&ext=elixir_of_immortality_56454210-setup.exe','Hunt Down a Murderous Criminal!','Gather evidence and hunt down a murderous criminal before he strikes again!','false',false,false,'Elixir of Immortality');ag(119449327,'Aliens In The Garden','/images/games/AliensInTheGarden/AliensInTheGarden81x46.gif',110083820,11951820,'cfbceff6-8cf3-451d-8cfa-b4b69b088ac6','false','/images/games/AliensInTheGarden/AliensInTheGarden16x16.gif',false,11323,'/images/games/AliensInTheGarden/AliensInTheGarden100x75.jpg','/images/games/AliensInTheGarden/AliensInTheGarden179x135.jpg','/images/games/AliensInTheGarden/AliensInTheGarden320x240.jpg','false','/images/games/thumbnails_med_2/AliensInTheGarden130x75.gif','','The battle of bug&rsquo;s army and aliens.','Aliens have landed on your backyard lawn, hoping to wipe out human beings and occupy the earth!','true',false,false,'Aliens In The Garden OL AS3');ag(119452357,'Marooned 2 - Secrets of the Akoni','/images/games/Marooned2SecretsoftheAkoni/Marooned2SecretsoftheAkoni81x46.gif',1100710,119521440,'','false','/images/games/Marooned2SecretsoftheAkoni/Marooned2SecretsoftheAkoni16x16.gif',false,11323,'/images/games/Marooned2SecretsoftheAkoni/Marooned2SecretsoftheAkoni100x75.jpg','/images/games/Marooned2SecretsoftheAkoni/Marooned2SecretsoftheAkoni179x135.jpg','/images/games/Marooned2SecretsoftheAkoni/Marooned2SecretsoftheAkoni320x240.jpg','false','/images/games/thumbnails_med_2/Marooned2SecretsoftheAkoni130x75.gif','/exe/marooned_2_45345201-setup.exe?lc=en&ext=marooned_2_45345201-setup.exe','Prevent the Leak of a Deadly Secret!','Uncover a new, mysterious layer of the ancient Akoni people!','false',false,false,'Marooned 2 Secrets of the Akon');ag(119460670,'Snark Busters: Welcome to the Club','/images/games/SnarkBustersWelcometotheClub/SnarkBustersWelcometotheClub81x46.gif',1100710,119529937,'','false','/images/games/SnarkBustersWelcometotheClub/SnarkBustersWelcometotheClub16x16.gif',false,11323,'/images/games/SnarkBustersWelcometotheClub/SnarkBustersWelcometotheClub100x75.jpg','/images/games/SnarkBustersWelcometotheClub/SnarkBustersWelcometotheClub179x135.jpg','/images/games/SnarkBustersWelcometotheClub/SnarkBustersWelcometotheClub320x240.jpg','false','/images/games/thumbnails_med_2/SnarkBustersWelcometotheClub130x75.gif','/exe/snark_busters_welcome_to_the_club_86454310-setup.exe?lc=en&ext=snark_busters_welcome_to_the_club_86454310-setup.exe','Find the Elusive Snark!','Join Kira Robertson as she sets out to find the Snark!','false',false,false,'Snark Busters Welcome');ag(119461220,'Frutti Freak for Newbies 2','/images/games/FruttiforNewbies2/FruttiforNewbies281x46.gif',0,119530827,'','false','/images/games/FruttiforNewbies2/FruttiforNewbies216x16.gif',false,11323,'/images/games/FruttiforNewbies2/FruttiforNewbies2100x75.jpg','/images/games/FruttiforNewbies2/FruttiforNewbies2179x135.jpg','/images/games/FruttiforNewbies2/FruttiforNewbies2320x240.jpg','false','/images/games/thumbnails_med_2/FruttiforNewbies2130x75.gif','/exe/frutti_for_newbies_2_56454201-setup.exe?lc=en&ext=frutti_for_newbies_2_56454201-setup.exe','Hunt Down Crazy Dr. Genarius!','Hunt down crazy Dr. Genarius amid classic platform fun!','false',false,false,'Frutti for Newbies 2');ag(119466473,'Robin Hood Twisted Fairytale','/images/games/RobinHoodTwistedFairytale/RobinHoodTwistedFairytale81x46.gif',110083820,119535163,'d648d2d0-5d6f-40cc-82d7-ca0658828b99','false','/images/games/RobinHoodTwistedFairytale/RobinHoodTwistedFairytale16x16.gif',false,11323,'/images/games/RobinHoodTwistedFairytale/RobinHoodTwistedFairytale100x75.jpg','/images/games/RobinHoodTwistedFairytale/RobinHoodTwistedFairytale179x135.jpg','/images/games/RobinHoodTwistedFairytale/RobinHoodTwistedFairytale320x240.jpg','false','/images/games/thumbnails_med_2/RobinHoodTwistedFairytale130x75.gif','','Spot the Difference.','Follow Robin Hood & the gang through this twisted version of the classic story.','true',false,false,'Robin Hood Twisted Fairytale O');ag(119470747,'Museum Of Thieves','/images/games/MuseumOfThieves/MuseumOfThieves81x46.gif',110083820,119539450,'7410de78-635c-41a9-8705-c3c42c6868d8','false','/images/games/MuseumOfThieves/MuseumOfThieves16x16.gif',false,11323,'/images/games/MuseumOfThieves/MuseumOfThieves100x75.jpg','/images/games/MuseumOfThieves/MuseumOfThieves179x135.jpg','/images/games/MuseumOfThieves/MuseumOfThieves320x240.jpg','false','/images/games/thumbnails_med_2/MuseumOfThieves130x75.gif','','Spot the Differences.','This is a museum unlike any other – mysterious and wild. Can you find your way through?','true',false,false,'Museum Of Thieves OL AS3');ag(119471490,'Sherlock Holmes Differences','/images/games/sherlock_holmes_differences/sherlock_holmes_differences81x46.gif',110015873,119540200,'9341742d-6b59-4e8a-aef2-120b53d25110','false','/images/games/sherlock_holmes_differences/sherlock_holmes_differences16x16.gif',false,11323,'/images/games/sherlock_holmes_differences/sherlock_holmes_differences100x75.jpg','/images/games/sherlock_holmes_differences/sherlock_holmes_differences179x135.jpg','/images/games/sherlock_holmes_differences/sherlock_holmes_differences320x240.jpg','false','/images/games/thumbnails_med_2/sherlock_holmes_differences130x75.gif','','Spot the Difference.','Spot the differences in this fun adventure game.','true',false,false,'Sherlock Holmes Differences OL');ag(119474900,'Antiques Roadshow','/images/games/AntiquesRoadshow/AntiquesRoadshow81x46.gif',1100710,119543570,'','false','/images/games/AntiquesRoadshow/AntiquesRoadshow16x16.gif',false,11323,'/images/games/AntiquesRoadshow/AntiquesRoadshow100x75.jpg','/images/games/AntiquesRoadshow/AntiquesRoadshow179x135.jpg','/images/games/AntiquesRoadshow/AntiquesRoadshow320x240.jpg','false','/images/games/thumbnails_med_2/AntiquesRoadshow130x75.gif','/exe/antiques_roadshow_54543210-setup.exe?lc=en&ext=antiques_roadshow_54543210-setup.exe','Find and Appraise Prized Antiques!','Trek across the country with Julia to find and appraise prized antiques!','false',false,false,'Antiques Roadshow');ag(119475617,'L. Frank Baum’s The Wonderful Wizard of Oz','/images/games/TheWonderfulWizardofOz/TheWonderfulWizardofOz81x46.gif',1007,119544303,'','false','/images/games/TheWonderfulWizardofOz/TheWonderfulWizardofOz16x16.gif',false,11323,'/images/games/TheWonderfulWizardofOz/TheWonderfulWizardofOz100x75.jpg','/images/games/TheWonderfulWizardofOz/TheWonderfulWizardofOz179x135.jpg','/images/games/TheWonderfulWizardofOz/TheWonderfulWizardofOz320x240.jpg','false','/images/games/thumbnails_med_2/TheWonderfulWizardofOz130x75.gif','/exe/the_wonderful_wizard_of_oz_54542004-setup.exe?lc=en&ext=the_wonderful_wizard_of_oz_54542004-setup.exe','Lead Dorothy to the Emerald City!','Join Dorothy and her friends on their fantasy journey through Oz!','false',false,false,'The Wonderful Wizard of Oz');ag(119477983,'Heart&rsquo;s Medicine - Season One','/images/games/HeartsMedicineSeasonOne/HeartsMedicineSeasonOne81x46.gif',110127790,119546433,'','false','/images/games/HeartsMedicineSeasonOne/HeartsMedicineSeasonOne16x16.gif',false,11323,'/images/games/HeartsMedicineSeasonOne/HeartsMedicineSeasonOne100x75.jpg','/images/games/HeartsMedicineSeasonOne/HeartsMedicineSeasonOne179x135.jpg','/images/games/HeartsMedicineSeasonOne/HeartsMedicineSeasonOne320x240.jpg','false','/images/games/thumbnails_med_2/HeartsMedicineSeasonOne130x75.gif','/exe/hearts_medicine_season_one_56452004-setup.exe?lc=en&ext=hearts_medicine_season_one_56452004-setup.exe','Follow a Hospital&rsquo;s Trauma and Drama!','Follow the ups and downs of a hospital&rsquo;s young resident doctor!','false',false,false,'Hearts Medicine Season One');ag(119478647,'Eternity','/images/games/Eternity/Eternity81x46.gif',1100710,119547870,'','false','/images/games/Eternity/Eternity16x16.gif',false,11323,'/images/games/Eternity/Eternity100x75.jpg','/images/games/Eternity/Eternity179x135.jpg','/images/games/Eternity/Eternity320x240.jpg','false','/images/games/thumbnails_med_2/Eternity130x75.gif','/exe/eternity_87495980-setup.exe?lc=en&ext=eternity_87495980-setup.exe','Save Your Grandfather Lost in Time!','Travel through time by solving puzzles to find your missing grandfather!','false',false,false,'Eternity');ag(119480550,'Prefect Frenzy','/images/games/PrefectFrenzy/PrefectFrenzy81x46.gif',110083820,119549240,'dc6f68ac-f5b5-4ff1-908d-ac5d700181cd','false','/images/games/PrefectFrenzy/PrefectFrenzy16x16.gif',false,11323,'/images/games/PrefectFrenzy/PrefectFrenzy100x75.jpg','/images/games/PrefectFrenzy/PrefectFrenzy179x135.jpg','/images/games/PrefectFrenzy/PrefectFrenzy320x240.jpg','false','/images/games/thumbnails_med_2/PrefectFrenzy130x75.gif','','Be the best prefect in school!','Play prefect of your high school and show those kids who’s the boss!','true',false,false,'Prefect Frenzy OL');ag(119484633,'Burger Battle','/images/games/BurgerBattle01/BurgerBattle0181x46.gif',1007,119553283,'','false','/images/games/BurgerBattle01/BurgerBattle0116x16.gif',false,11323,'/images/games/BurgerBattle01/BurgerBattle01100x75.jpg','/images/games/BurgerBattle01/BurgerBattle01179x135.jpg','/images/games/BurgerBattle01/BurgerBattle01320x240.jpg','false','/images/games/thumbnails_med_2/BurgerBattle01130x75.gif','/exe/burger_battle_45137471-setup.exe?lc=en&ext=burger_battle_45137471-setup.exe','A Juicy and Rare Match-puzzle Battle!','A juicy, match-puzzle battle! Overfeed your opponent to save the princess!','false',false,false,'Burger Battle');ag(119486713,'Twisted Lands: Shadow Town','/images/games/TwistedLandsShadowTown/TwistedLandsShadowTown81x46.gif',1100710,119555690,'','false','/images/games/TwistedLandsShadowTown/TwistedLandsShadowTown16x16.gif',false,11323,'/images/games/TwistedLandsShadowTown/TwistedLandsShadowTown100x75.jpg','/images/games/TwistedLandsShadowTown/TwistedLandsShadowTown179x135.jpg','/images/games/TwistedLandsShadowTown/TwistedLandsShadowTown320x240.jpg','false','/images/games/thumbnails_med_2/TwistedLandsShadowTown130x75.gif','/exe/twisted_lands_shadow_52185440-setup.exe?lc=en&ext=twisted_lands_shadow_52185440-setup.exe','Horrific Mysteries on a Deserted Island!','Solve horrific mysteries by finding items on a deserted island!','false',false,false,'Twisted Lands Shadow');ag(119487853,'A Gypsy’s Tale – The Tower of Secrets','/images/games/aGypsysTaleTheTowerofSecrets/aGypsysTaleTheTowerofSecrets81x46.gif',1100710,119556597,'','false','/images/games/aGypsysTaleTheTowerofSecrets/aGypsysTaleTheTowerofSecrets16x16.gif',false,11323,'/images/games/aGypsysTaleTheTowerofSecrets/aGypsysTaleTheTowerofSecrets100x75.jpg','/images/games/aGypsysTaleTheTowerofSecrets/aGypsysTaleTheTowerofSecrets179x135.jpg','/images/games/aGypsysTaleTheTowerofSecrets/aGypsysTaleTheTowerofSecrets320x240.jpg','false','/images/games/thumbnails_med_2/aGypsysTaleTheTowerofSecrets130x75.gif','/exe/gypsys_tale_54455101-setup.exe?lc=en&ext=gypsys_tale_54455101-setup.exe','End an Ancient Tower&rsquo;s Dangerous Curse!','Break a dangerous curse that is engulfing an ancient tower!','false',false,false,'Gypsys Tale The Tower of Secre');ag(119488917,'Cooking Dash® 3: Thrills & Spills','/images/games/CookingDash3STD/CookingDash3STD81x46.gif',110127790,119557870,'','false','/images/games/CookingDash3STD/CookingDash3STD16x16.gif',false,11323,'/images/games/CookingDash3STD/CookingDash3STD100x75.jpg','/images/games/CookingDash3STD/CookingDash3STD179x135.jpg','/images/games/CookingDash3STD/CookingDash3STD320x240.jpg','false','/images/games/thumbnails_med_2/CookingDash3STD130x75.gif','/exe/cooking_dash_3_CE_84651852-setup.exe?lc=en&ext=cooking_dash_3_CE_84651852-setup.exe','DinerTown Theme Park Throwback!','Join Flo and the other DinerTeens in Mr. Big’s theme park!','false',false,false,'Cooking Dash 3 stnd');ag(119491183,'Jane&rsquo;s Hotel Mania','/images/games/JanesHotelMania/JanesHotelMania81x46.gif',110127790,119560770,'','false','/images/games/JanesHotelMania/JanesHotelMania16x16.gif',false,11323,'/images/games/JanesHotelMania/JanesHotelMania100x75.jpg','/images/games/JanesHotelMania/JanesHotelMania179x135.jpg','/images/games/JanesHotelMania/JanesHotelMania320x240.jpg','false','/images/games/thumbnails_med_2/JanesHotelMania130x75.gif','/exe/janes_hotel_mania_45314247-setup.exe?lc=en&ext=janes_hotel_mania_45314247-setup.exe','Become a World Traveling Hotel Magnate!','Help Jane&rsquo;s niece Jenny master time management and become a hotel magnate!','false',false,false,'Janes Hotel Mania');ag(119492740,'Echoes of the Past 2: The Castle of Shadows','/images/games/EchoesofthePast2/EchoesofthePast281x46.gif',1100710,119561427,'','false','/images/games/EchoesofthePast2/EchoesofthePast216x16.gif',false,11323,'/images/games/EchoesofthePast2/EchoesofthePast2100x75.jpg','/images/games/EchoesofthePast2/EchoesofthePast2179x135.jpg','/images/games/EchoesofthePast2/EchoesofthePast2320x240.jpg','false','/images/games/thumbnails_med_2/EchoesofthePast2130x75.gif','/exe/echoes_of_the_past_56435841-setup.exe?lc=en&ext=echoes_of_the_past_56435841-setup.exe','Restore the Royal Amulet!','Restore the royal amulet to break an ancient curse!','false',false,false,'Echoes of the Past 2');ag(119493863,'Country Harvest','/images/games/CountryHarvest/CountryHarvest81x46.gif',110127790,119562193,'','false','/images/games/CountryHarvest/CountryHarvest16x16.gif',false,11323,'/images/games/CountryHarvest/CountryHarvest100x75.jpg','/images/games/CountryHarvest/CountryHarvest179x135.jpg','/images/games/CountryHarvest/CountryHarvest320x240.jpg','false','/images/games/thumbnails_med_2/CountryHarvest130x75.gif','/exe/country_harvest_65454107-setup.exe?lc=en&ext=country_harvest_65454107-setup.exe','Grow Crops and Build a Farm!','Grow crops, construct buildings, and expand your bustling farm!','false',false,false,'Country Harvest');ag(119494970,'Flux Family Secrets 2: The Rabbit Hole','/images/games/FluxFamilySecrets2/FluxFamilySecrets281x46.gif',1100710,119563657,'','false','/images/games/FluxFamilySecrets2/FluxFamilySecrets216x16.gif',false,11323,'/images/games/FluxFamilySecrets2/FluxFamilySecrets2100x75.jpg','/images/games/FluxFamilySecrets2/FluxFamilySecrets2179x135.jpg','/images/games/FluxFamilySecrets2/FluxFamilySecrets2320x240.jpg','false','/images/games/thumbnails_med_2/FluxFamilySecrets2130x75.gif','/exe/flux_family_secrets_2_64524124-setup.exe?lc=en&ext=flux_family_secrets_2_64524124-setup.exe','Travel Back in Time with Jesse!','Travel 30 years back in time to help Jesse at the Flux mansion!','false',false,false,'Flux Family Secrets 2');ag(119522623,'Forgotten Places - Lost Circus','/images/games/ForgottenPlacesLostCircus/ForgottenPlacesLostCircus81x46.gif',0,119591150,'','false','/images/games/ForgottenPlacesLostCircus/ForgottenPlacesLostCircus16x16.gif',false,11323,'/images/games/ForgottenPlacesLostCircus/ForgottenPlacesLostCircus100x75.jpg','/images/games/ForgottenPlacesLostCircus/ForgottenPlacesLostCircus179x135.jpg','/images/games/ForgottenPlacesLostCircus/ForgottenPlacesLostCircus320x240.jpg','false','/images/games/thumbnails_med_2/ForgottenPlacesLostCircus130x75.gif','/exe/forgotten_places_lost_circus_8645474-setup.exe?lc=en&ext=forgotten_places_lost_circus_8645474-setup.exe','Follow Visions to a Mysterious Circus!','Follow Joy&rsquo;s visions to a mysterious circus in an unsettling search for answers!','false',false,false,'Forgotten Places Lost Circus');ag(119525623,'Dream Day True Love','/images/games/DDW7/DDW781x46.gif',1100710,11959473,'','false','/images/games/DDW7/DDW716x16.gif',false,11323,'/images/games/DDW7/DDW7100x75.jpg','/images/games/DDW7/DDW7179x135.jpg','/images/games/DDW7/DDW7320x240.jpg','false','/images/games/thumbnails_med_2/DDW7130x75.gif','/exe/dream_day_true_love_51576066-setup.exe?lc=en&ext=dream_day_true_love_51576066-setup.exe','Celebrate 70 years of real romance!','Discover one couple’s real-life romance spanning 70 years!','false',false,false,'Dream Day True Love');ag(119530220,'Playground Edition','/images/games/PlaygroundEdition/PlaygroundEdition81x46.gif',110083820,119599910,'ac4ea36e-0aa6-4247-b457-adc0ca0a8a4b','false','/images/games/PlaygroundEdition/PlaygroundEdition16x16.gif',false,11323,'/images/games/PlaygroundEdition/PlaygroundEdition100x75.jpg','/images/games/PlaygroundEdition/PlaygroundEdition179x135.jpg','/images/games/PlaygroundEdition/PlaygroundEdition320x240.jpg','false','/images/games/thumbnails_med_2/PlaygroundEdition130x75.gif','','Hidden objects in a Playground.','Hidden Objects game based around finding objects in a Playground.','true',false,false,'Playground Edition OL AS3');ag(119532647,'Knightfall: Death and Taxes','/images/games/KnightfallDeathAndTaxes/KnightfallDeathAndTaxes81x46.gif',1007,119601253,'','false','/images/games/KnightfallDeathAndTaxes/KnightfallDeathAndTaxes16x16.gif',false,11323,'/images/games/KnightfallDeathAndTaxes/KnightfallDeathAndTaxes100x75.jpg','/images/games/KnightfallDeathAndTaxes/KnightfallDeathAndTaxes179x135.jpg','/images/games/KnightfallDeathAndTaxes/KnightfallDeathAndTaxes320x240.jpg','false','/images/games/thumbnails_med_2/KnightfallDeathAndTaxes130x75.gif','/exe/knightfall_death_and_taxes_56413201-setup.exe?lc=en&ext=knightfall_death_and_taxes_56413201-setup.exe','Puzzling Adventure of Monsters, Marriage, and Taxes!','Drill your way through a puzzling adventure of monsters, marriage, and taxes!','false',false,false,'Knightfall Death And Taxes');ag(119534760,'Fishdom 2™','/images/games/Fishdom2TM/Fishdom2TM81x46.gif',110015873,119603737,'','false','/images/games/Fishdom2TM/Fishdom2TM16x16.gif',false,11323,'/images/games/Fishdom2TM/Fishdom2TM100x75.jpg','/images/games/Fishdom2TM/Fishdom2TM179x135.jpg','/images/games/Fishdom2TM/Fishdom2TM320x240.jpg','false','/images/games/thumbnails_med_2/Fishdom2TM130x75.gif','','Match-3 Sequel of Colorful Tiles!','Swap colorful tiles and create aquariums in this match-3 sequel!','true',false,true,'Fishdom 2 TM OLT1');ag(119535613,'Fishdom 2™','/images/games/fishdom2PremiumEdition/fishdom2PremiumEdition81x46.gif',110015873,119604570,'','false','/images/games/fishdom2PremiumEdition/fishdom2PremiumEdition16x16.gif',false,11323,'/images/games/fishdom2PremiumEdition/fishdom2PremiumEdition100x75.jpg','/images/games/fishdom2PremiumEdition/fishdom2PremiumEdition179x135.jpg','/images/games/fishdom2PremiumEdition/fishdom2PremiumEdition320x240.jpg','false','/images/games/thumbnails_med_2/fishdom2PremiumEdition130x75.gif','','Match-3 Sequel of Colorful Tiles!','Swap colorful tiles and create aquariums in this match-3 sequel!','true',false,true,'Fishdom 2 TM Premium Edition O');ag(119536357,'Shire Edition','/images/games/ShireEdition/ShireEdition81x46.gif',110015873,11960563,'40ea9ec7-7ba5-471e-b778-8a7afa38b3da','false','/images/games/ShireEdition/ShireEdition16x16.gif',false,11323,'/images/games/ShireEdition/ShireEdition100x75.jpg','/images/games/ShireEdition/ShireEdition179x135.jpg','/images/games/ShireEdition/ShireEdition320x240.jpg','false','/images/games/thumbnails_med_2/ShireEdition130x75.gif','','Find objects in Shire Hut.','HiddenObjects game based around finding objects in a Shire Hut.','true',false,false,'Shire Edition OL AS3');ag(119537980,'Shoppers Edition','/images/games/ShoppersEdition/ShoppersEdition81x46.gif',110015873,119606653,'bb5075fb-8c96-4cb6-8474-c7e277e23eca','false','/images/games/ShoppersEdition/ShoppersEdition16x16.gif',false,11323,'/images/games/ShoppersEdition/ShoppersEdition100x75.jpg','/images/games/ShoppersEdition/ShoppersEdition179x135.jpg','/images/games/ShoppersEdition/ShoppersEdition320x240.jpg','false','/images/games/thumbnails_med_2/ShoppersEdition130x75.gif','','Hidden Objects black friday shopping.','Hidden Objects game based around black friday shopping.','true',false,false,'Shoppers Edition OL AS3');ag(119538140,'University Edition','/images/games/UniversityEdition/UniversityEdition81x46.gif',110083820,119607823,'d6066ddc-672e-4304-a402-6887728bedb3','false','/images/games/UniversityEdition/UniversityEdition16x16.gif',false,11323,'/images/games/UniversityEdition/UniversityEdition100x75.jpg','/images/games/UniversityEdition/UniversityEdition179x135.jpg','/images/games/UniversityEdition/UniversityEdition320x240.jpg','false','/images/games/thumbnails_med_2/UniversityEdition130x75.gif','','Find objects in a University.','Hidden Objects game based around finding objects in a University.','true',false,false,'University Edition OL AS3');ag(119546950,'Venus: The Case of the Grandslam Queen','/images/games/VenusTheGrandSlamQueen/VenusTheGrandSlamQueen81x46.gif',1100710,119615473,'','false','/images/games/VenusTheGrandSlamQueen/VenusTheGrandSlamQueen16x16.gif',false,11323,'/images/games/VenusTheGrandSlamQueen/VenusTheGrandSlamQueen100x75.jpg','/images/games/VenusTheGrandSlamQueen/VenusTheGrandSlamQueen179x135.jpg','/images/games/VenusTheGrandSlamQueen/VenusTheGrandSlamQueen320x240.jpg','false','/images/games/thumbnails_med_2/VenusTheGrandSlamQueen130x75.gif','/exe/venus_the_grand_slam_queen_54542101-setup.exe?lc=en&ext=venus_the_grand_slam_queen_54542101-setup.exe','Win for Venus - Game, Set, Match!','Step into the shoes of a tennis superstar - game, set, match!','false',false,false,'Venus The Grand Slam Queen');ag(119547710,'Dancing Craze','/images/games/DancingCraze/DancingCraze81x46.gif',110127790,119616377,'','false','/images/games/DancingCraze/DancingCraze16x16.gif',false,11323,'/images/games/DancingCraze/DancingCraze100x75.jpg','/images/games/DancingCraze/DancingCraze179x135.jpg','/images/games/DancingCraze/DancingCraze320x240.jpg','false','/images/games/thumbnails_med_2/DancingCraze130x75.gif','/exe/dancing_craze_45481204-setup.exe?lc=en&ext=dancing_craze_45481204-setup.exe','Open Your Own Dance Studio!','Open a dance studio and teach your clients the hottest moves!','false',false,false,'Dancing Craze');ag(119551583,'Secret Diaries: Florence Ashford','/images/games/SecretDiariesFlorenceAshford/SecretDiariesFlorenceAshford81x46.gif',0,119620263,'','false','/images/games/SecretDiariesFlorenceAshford/SecretDiariesFlorenceAshford16x16.gif',false,11323,'/images/games/SecretDiariesFlorenceAshford/SecretDiariesFlorenceAshford100x75.jpg','/images/games/SecretDiariesFlorenceAshford/SecretDiariesFlorenceAshford179x135.jpg','/images/games/SecretDiariesFlorenceAshford/SecretDiariesFlorenceAshford320x240.jpg','false','/images/games/thumbnails_med_2/SecretDiariesFlorenceAshford130x75.gif','/exe/secret_diaries_florence_ashford_56442147-setup.exe?lc=en&ext=secret_diaries_florence_ashford_56442147-setup.exe','Fight for True Love!','Reveal the secrets of Bucklebury Manor and fight for true love!','false',false,false,'Secret Diaries Florence Ashfor');ag(119554323,'Museum Edition','/images/games/MuseumEdition/MuseumEdition81x46.gif',110083820,119623977,'baf38d88-806e-4da4-b716-e1f59382cac6','false','/images/games/MuseumEdition/MuseumEdition16x16.gif',false,11323,'/images/games/MuseumEdition/MuseumEdition100x75.jpg','/images/games/MuseumEdition/MuseumEdition179x135.jpg','/images/games/MuseumEdition/MuseumEdition320x240.jpg','false','/images/games/thumbnails_med_2/MuseumEdition130x75.gif','','Find objects in a Museum.','Hidden Objects game based around finding objects in a Museum.','true',false,false,'Museum Edition OL AS3');ag(119560597,'Murfy Maths','/images/games/MurfyMaths/MurfyMaths81x46.gif',1007,119629123,'','false','/images/games/MurfyMaths/MurfyMaths16x16.gif',false,11323,'/images/games/MurfyMaths/MurfyMaths100x75.jpg','/images/games/MurfyMaths/MurfyMaths179x135.jpg','/images/games/MurfyMaths/MurfyMaths320x240.jpg','false','/images/games/thumbnails_med_2/MurfyMaths130x75.gif','/exe/murfy_maths_86454874-setup.exe?lc=en&ext=murfy_maths_86454874-setup.exe','Use Symbols to Crack Math Puzzles!','Use numbers and symbols to crack action-packed math puzzles!','false',false,false,'Murfy Maths');ag(119561410,'Connect 4','/images/games/Connect4/Connect481x46.gif',110083820,119630970,'5a70ef2e-73e9-47ea-891b-02c312fb0ec6','false','/images/games/Connect4/Connect416x16.gif',false,11323,'/images/games/Connect4/Connect4100x75.jpg','/images/games/Connect4/Connect4179x135.jpg','/images/games/Connect4/Connect4320x240.jpg','false','/images/games/thumbnails_med_2/Connect4130x75.gif','','Use your mind and skill to defeat the game!','Connect Four is like vertical tic-tac-toe, use your mind and skill to defeat the game!','true',false,false,'Connect 4 OL');ag(119562290,'Black Jack','/images/games/BlackJackManiac/BlackJackManiac81x46.gif',110083820,119631977,'6e84811b-81ef-46c4-82ab-4f9173a54054','false','/images/games/BlackJackManiac/BlackJackManiac16x16.gif',false,11323,'/images/games/BlackJackManiac/BlackJackManiac100x75.jpg','/images/games/BlackJackManiac/BlackJackManiac179x135.jpg','/images/games/BlackJackManiac/BlackJackManiac320x240.jpg','false','/images/games/thumbnails_med_2/BlackJackManiac130x75.gif','','Earn much money you can with our Black Jack!','Enter into Casino and earn much money you can with our Black Jack!','true',false,false,'Black Jack OL');ag(119563840,'Murfy Maths','/images/games/MurfyMaths/MurfyMaths81x46.gif',110083820,119632773,'460b687f-62d0-4454-ad4e-a29170f1c466','false','/images/games/MurfyMaths/MurfyMaths16x16.gif',false,11323,'/images/games/MurfyMaths/MurfyMaths100x75.jpg','/images/games/MurfyMaths/MurfyMaths179x135.jpg','/images/games/MurfyMaths/MurfyMaths320x240.jpg','false','/images/games/thumbnails_med_2/MurfyMaths130x75.gif','','Use Symbols to Crack Math Puzzles!','Use numbers and symbols to crack action-packed math puzzles!','true',false,false,'Murfy Maths OL AS3');ag(119564730,'Screen Kiss','/images/games/ScreenKiss/ScreenKiss81x46.gif',110083820,119633410,'95eac9d7-6319-48e0-b9d9-d908210926e3','false','/images/games/ScreenKiss/ScreenKiss16x16.gif',false,11323,'/images/games/ScreenKiss/ScreenKiss100x75.jpg','/images/games/ScreenKiss/ScreenKiss179x135.jpg','/images/games/ScreenKiss/ScreenKiss320x240.jpg','false','/images/games/thumbnails_med_2/ScreenKiss130x75.gif','','Get kissed and win the game.','It is your turn on reality TV. Go ahead and try to win a kiss from the hottie!','true',false,false,'Screen Kiss OL');ag(119565183,'2 Tasty','/images/games/2Tasty/2Tasty81x46.gif',1100710,11963460,'','false','/images/games/2Tasty/2Tasty16x16.gif',false,11323,'/images/games/2Tasty/2Tasty100x75.jpg','/images/games/2Tasty/2Tasty179x135.jpg','/images/games/2Tasty/2Tasty320x240.jpg','false','/images/games/thumbnails_med_2/2Tasty130x75.gif','/exe/2_tasty_45645204-setup.exe?lc=en&ext=2_tasty_45645204-setup.exe','Cook Up a Romantic Time Management!','Find hidden ingredients to whip up dishes in a romantic time management!','false',false,false,'2 Tasty');ag(119572100,'The Great Indian Magician','/images/games/TheGreatIndianMagician/TheGreatIndianMagician81x46.gif',110083820,119641770,'4023cb88-2d2c-4534-b734-d356405d68e2','false','/images/games/TheGreatIndianMagician/TheGreatIndianMagician16x16.gif',false,11323,'/images/games/TheGreatIndianMagician/TheGreatIndianMagician100x75.jpg','/images/games/TheGreatIndianMagician/TheGreatIndianMagician179x135.jpg','/images/games/TheGreatIndianMagician/TheGreatIndianMagician320x240.jpg','false','/images/games/thumbnails_med_2/TheGreatIndianMagician130x75.gif','','Unleash the magician within!','Entertain the crowds with your mystical powers by putting on a magical show that no one will ever forget!','true',false,false,'The Great Indian Magician OL');ag(119573623,'The Great Indian Honeymoon','/images/games/TheGreatIndianHoneymoon/TheGreatIndianHoneymoon81x46.gif',110083820,119642303,'57770bcc-3818-4bd5-bd8b-e7a412d831bd','false','/images/games/TheGreatIndianHoneymoon/TheGreatIndianHoneymoon16x16.gif',false,11323,'/images/games/TheGreatIndianHoneymoon/TheGreatIndianHoneymoon100x75.jpg','/images/games/TheGreatIndianHoneymoon/TheGreatIndianHoneymoon179x135.jpg','/images/games/TheGreatIndianHoneymoon/TheGreatIndianHoneymoon320x240.jpg','false','/images/games/thumbnails_med_2/TheGreatIndianHoneymoon130x75.gif','','It is time to celebrate that marriage!','Celebrate your marriage by flying to your dreamland!','true',false,false,'The Great Indian Honeymoon OL');ag(119574920,'Dress My Pet','/images/games/DressMyPet/DressMyPet81x46.gif',110083820,119643597,'6eb6d6ae-6ebb-44bc-89a4-26de9b1980b9','false','/images/games/DressMyPet/DressMyPet16x16.gif',false,11323,'/images/games/DressMyPet/DressMyPet100x75.jpg','/images/games/DressMyPet/DressMyPet179x135.jpg','/images/games/DressMyPet/DressMyPet320x240.jpg','false','/images/games/thumbnails_med_2/DressMyPet130x75.gif','','Pets just got cuter!','Dress up your pets and go awww over them.','true',false,false,'Dress My Pet OL');ag(119575617,'Nightmare Adventures: The Witch&rsquo;s Prison','/images/games/NightmareAdventures/NightmareAdventures81x46.gif',1100710,119644253,'','false','/images/games/NightmareAdventures/NightmareAdventures16x16.gif',false,11323,'/images/games/NightmareAdventures/NightmareAdventures100x75.jpg','/images/games/NightmareAdventures/NightmareAdventures179x135.jpg','/images/games/NightmareAdventures/NightmareAdventures320x240.jpg','false','/images/games/thumbnails_med_2/NightmareAdventures130x75.gif','/exe/nightmare_adventures_84341681-setup.exe?lc=en&ext=nightmare_adventures_84341681-setup.exe','Explore the History of Blackwater Asylum!','Help Kiera Vale discover her ancestors&rsquo; history at Blackwater Asylum!','false',false,false,'Nightmare Adventures');ag(119577657,'Reincarnations: Uncover the Past','/images/games/Reincarnations2/Reincarnations281x46.gif',1100710,119646300,'','false','/images/games/Reincarnations2/Reincarnations216x16.gif',false,11323,'/images/games/Reincarnations2/Reincarnations2100x75.jpg','/images/games/Reincarnations2/Reincarnations2179x135.jpg','/images/games/Reincarnations2/Reincarnations2320x240.jpg','false','/images/games/thumbnails_med_2/Reincarnations2130x75.gif','/exe/reincarnations_2_87347223-setup.exe?lc=en&ext=reincarnations_2_87347223-setup.exe','Help Jane explore past lives!','Help Jane explore past lives as she tries to save her own life!','false',false,false,'Reincarnations 2');ag(119587323,'Kaptain Brawe - A Brawe New World (Episode 2)','/images/games/KaptainBraweEpisode2/KaptainBraweEpisode281x46.gif',0,11965617,'','false','/images/games/KaptainBraweEpisode2/KaptainBraweEpisode216x16.gif',false,11323,'/images/games/KaptainBraweEpisode2/KaptainBraweEpisode2100x75.jpg','/images/games/KaptainBraweEpisode2/KaptainBraweEpisode2179x135.jpg','/images/games/KaptainBraweEpisode2/KaptainBraweEpisode2320x240.jpg','false','/images/games/thumbnails_med_2/KaptainBraweEpisode2130x75.gif','/exe/kaptain_brawe_2nd_episode_64841588-setup.exe?lc=en&ext=kaptain_brawe_2nd_episode_64841588-setup.exe','Track Down Kidnapped Alien Scientists!','Track down kidnapped alien scientists while battling space pirates!','false',false,false,'Kaptain Brawe Episode 2');ag(119588600,'The Fashion Boutique','/images/games/TheFashionBoutique/TheFashionBoutique81x46.gif',110083820,119657223,'a267eb25-fe83-42e5-a56d-c9a52664f9b4','false','/images/games/TheFashionBoutique/TheFashionBoutique16x16.gif',false,11323,'/images/games/TheFashionBoutique/TheFashionBoutique100x75.jpg','/images/games/TheFashionBoutique/TheFashionBoutique179x135.jpg','/images/games/TheFashionBoutique/TheFashionBoutique320x240.jpg','false','/images/games/thumbnails_med_2/TheFashionBoutique130x75.gif','','Make your customers beautiful!','It’s the only way to make a living. Selling clothes!','true',false,false,'The Fashion Boutique OL');ag(119589153,'Glow Cut','/images/games/glowcut/glowcut81x46.gif',110083820,119658817,'ee15229a-bb4f-4402-a3f7-99c4bf6f490c','false','/images/games/glowcut/glowcut16x16.gif',false,11323,'/images/games/glowcut/glowcut100x75.jpg','/images/games/glowcut/glowcut179x135.jpg','/images/games/glowcut/glowcut320x240.jpg','false','/images/games/thumbnails_med_2/glowcut130x75.gif','','Cut the shapes.','Drag your mouse to cut the shapes to meltdown!','true',false,false,'Glow Cut OL AS3');ag(119590777,'Girls Day Out','/images/games/GirlsDayOut/GirlsDayOut81x46.gif',110083820,119659417,'2b183414-4507-451b-acdd-fb8316be6df6','false','/images/games/GirlsDayOut/GirlsDayOut16x16.gif',false,11323,'/images/games/GirlsDayOut/GirlsDayOut100x75.jpg','/images/games/GirlsDayOut/GirlsDayOut179x135.jpg','/images/games/GirlsDayOut/GirlsDayOut320x240.jpg','false','/images/games/thumbnails_med_2/GirlsDayOut130x75.gif','','Make Penny look gorgeous.','Help Penny look awesome all day long.','true',false,false,'Girls Day Out OL AS3');ag(119591117,'Gourmet Kiss','/images/games/GourmetKiss/GourmetKiss81x46.gif',110083820,119660790,'152ed2b3-7da2-4b77-9355-ddf8a4082a62','false','/images/games/GourmetKiss/GourmetKiss16x16.gif',false,11323,'/images/games/GourmetKiss/GourmetKiss100x75.jpg','/images/games/GourmetKiss/GourmetKiss179x135.jpg','/images/games/GourmetKiss/GourmetKiss320x240.jpg','false','/images/games/thumbnails_med_2/GourmetKiss130x75.gif','','A delicious form of love.','Delicious treats and a steamy kiss served piping hot.','true',false,false,'Gourmet Kiss OL');ag(119593377,'Make Up Wonders','/images/games/MakeUpWonders/MakeUpWonders81x46.gif',110083820,11966260,'7df195ab-a22c-463b-a30d-2ed1f8cb7210','false','/images/games/MakeUpWonders/MakeUpWonders16x16.gif',false,11323,'/images/games/MakeUpWonders/MakeUpWonders100x75.jpg','/images/games/MakeUpWonders/MakeUpWonders179x135.jpg','/images/games/MakeUpWonders/MakeUpWonders320x240.jpg','false','/images/games/thumbnails_med_2/MakeUpWonders130x75.gif','','Work wonders on those models!','Use your skill to create a transformation par excellence!','true',false,false,'Make Up Wonders OL');ag(119594337,'Pool Maniac','/images/games/PoolManiac/PoolManiac81x46.gif',110083820,11966327,'a35449e4-ba4a-4c80-a80a-c868888c5cdf','false','/images/games/PoolManiac/PoolManiac16x16.gif',false,11323,'/images/games/PoolManiac/PoolManiac100x75.jpg','/images/games/PoolManiac/PoolManiac179x135.jpg','/images/games/PoolManiac/PoolManiac320x240.jpg','false','/images/games/thumbnails_med_2/PoolManiac130x75.gif','','Pot all balls as soon as possible!','Pot all balls and finally the 8 black as soon as possible!','true',false,false,'Pool Maniac OL');ag(119596160,'Magic Encyclopedia Bundle','/images/games/MagicEncyclopediaBundle/MagicEncyclopediaBundle81x46.gif',1100710,119665703,'','false','/images/games/MagicEncyclopediaBundle/MagicEncyclopediaBundle16x16.gif',false,11323,'/images/games/MagicEncyclopediaBundle/MagicEncyclopediaBundle100x75.jpg','/images/games/MagicEncyclopediaBundle/MagicEncyclopediaBundle179x135.jpg','/images/games/MagicEncyclopediaBundle/MagicEncyclopediaBundle320x240.jpg','false','/images/games/thumbnails_med_2/MagicEncyclopediaBundle130x75.gif','/exe/magic_encyclopedia_bundle_5645310-setup.exe?lc=en&ext=magic_encyclopedia_bundle_5645310-setup.exe','Two of Catherine’s Enchanting Quests!','Help Catherine travel the world, stop an evil dragon, and find her brother!','false',false,false,'Magic Encyclopedia Bundle');ag(119598500,'Youda Farmer 2: Save the Village','/images/games/YoudaFarmer2/YoudaFarmer281x46.gif',110127790,119667287,'','false','/images/games/YoudaFarmer2/YoudaFarmer216x16.gif',false,11323,'/images/games/YoudaFarmer2/YoudaFarmer2100x75.jpg','/images/games/YoudaFarmer2/YoudaFarmer2179x135.jpg','/images/games/YoudaFarmer2/YoudaFarmer2320x240.jpg','false','/images/games/thumbnails_med_2/YoudaFarmer2130x75.gif','/exe/youda_farmer_2_86484812-setup.exe?lc=en&ext=youda_farmer_2_86484812-setup.exe','Stop Big Boss, Save the Village!','Stop the Big Boss&rsquo; evil plans and save the village!','false',false,false,'Youda Farmer 2');ag(119611420,'Columbus: Ghost of the Mystery Stone','/images/games/ColumbusGhostoftheMysteryStone/ColumbusGhostoftheMysteryStone81x46.gif',1100710,119680683,'','false','/images/games/ColumbusGhostoftheMysteryStone/ColumbusGhostoftheMysteryStone16x16.gif',false,11323,'/images/games/ColumbusGhostoftheMysteryStone/ColumbusGhostoftheMysteryStone100x75.jpg','/images/games/ColumbusGhostoftheMysteryStone/ColumbusGhostoftheMysteryStone179x135.jpg','/images/games/ColumbusGhostoftheMysteryStone/ColumbusGhostoftheMysteryStone320x240.jpg','false','/images/games/thumbnails_med_2/ColumbusGhostoftheMysteryStone130x75.gif','/exe/columbus_ghost_of_the_mystery_stone_88784518-setup.exe?lc=en&ext=columbus_ghost_of_the_mystery_stone_88784518-setup.exe','Help Castaway Columbus Explore an Island!','Help Columbus explore a mysterious island and uncover ancient hidden treasures!','false',false,false,'Columbus Ghost of the Mystery');ag(119613133,'Millionaire Manor: The Hidden Object Show 3','/images/games/MillionaireManorTHOS3/MillionaireManorTHOS381x46.gif',1100710,119682653,'','false','/images/games/MillionaireManorTHOS3/MillionaireManorTHOS316x16.gif',false,11323,'/images/games/MillionaireManorTHOS3/MillionaireManorTHOS3100x75.jpg','/images/games/MillionaireManorTHOS3/MillionaireManorTHOS3179x135.jpg','/images/games/MillionaireManorTHOS3/MillionaireManorTHOS3320x240.jpg','false','/images/games/thumbnails_med_2/MillionaireManorTHOS3130x75.gif','/exe/millionaire_manor_45864541-setup.exe?lc=en&ext=millionaire_manor_45864541-setup.exe','Solve Mysteries and Rescue Fellow Contestants!','Solve the Manor’s mysteries and rescue fellow contestants from a gruesome fate!','false',false,false,'Millionaire Manor HO Show 3');ag(119614280,'Season Match 3: Curse of the Witch Crow','/images/games/SeasonMatch3/SeasonMatch381x46.gif',1007,119683843,'','false','/images/games/SeasonMatch3/SeasonMatch316x16.gif',false,11323,'/images/games/SeasonMatch3/SeasonMatch3100x75.jpg','/images/games/SeasonMatch3/SeasonMatch3179x135.jpg','/images/games/SeasonMatch3/SeasonMatch3320x240.jpg','false','/images/games/thumbnails_med_2/SeasonMatch3130x75.gif','/exe/season_match_3_65645104-setup.exe?lc=en&ext=season_match_3_65645104-setup.exe','A casual game of extraordinary beauty!','An addictive match-3 to help the twelve months overpower an evil witch!','false',false,false,'Season Match 3');ag(119617797,'Towing Mania','/images/games/towingmania/towingmania81x46.gif',110083820,119686320,'79a808ec-3aa4-4e54-baa4-738c45285cfa','false','/images/games/towingmania/towingmania16x16.gif',false,11323,'/images/games/towingmania/towingmania100x75.jpg','/images/games/towingmania/towingmania179x135.jpg','/images/games/towingmania/towingmania320x240.jpg','false','/images/games/thumbnails_med_2/towingmania130x75.gif','','Stop cribbing about traffic! Control it!','Operate the signals and kick out the jams.','true',false,false,'Towing Mania OL');ag(119618930,'Santa Bounce','/images/games/santabounce/santabounce81x46.gif',110083820,119687620,'889a6752-ebcd-4765-b17a-bb6777c6d27b','false','/images/games/santabounce/santabounce16x16.gif',false,11323,'/images/games/santabounce/santabounce100x75.jpg','/images/games/santabounce/santabounce179x135.jpg','/images/games/santabounce/santabounce320x240.jpg','false','/images/games/thumbnails_med_2/santabounce130x75.gif','','Help Santa get as many presents as you can in 60 seconds.','Help Santa get as many presents as you can in 60 seconds.','true',false,false,'Santa Bounce OL');ag(119623870,'Ranch Rush 2','/images/games/RanchRush2/RanchRush281x46.gif',110083820,119692830,'7acfb260-bcda-4810-9ff8-e6a6ff1668a2','false','/images/games/RanchRush2/RanchRush216x16.gif',false,11323,'/images/games/RanchRush2/RanchRush2100x75.jpg','/images/games/RanchRush2/RanchRush2179x135.jpg','/images/games/RanchRush2/RanchRush2320x240.jpg','false','/images/games/thumbnails_med_2/RanchRush2130x75.gif','','Sara Returns with a Tropical Time Management!','Sara returns with a tropical time management! Harvest crops and raise exotic animals!','true',false,false,'Ranch Rush 2 OL AS3');ag(119624173,'12 Stacks Of Christmas','/images/games/12StacksOfChristmas/12StacksOfChristmas81x46.gif',110083820,119693570,'afcd2c0c-3194-4b58-80d3-89feb6b84218','false','/images/games/12StacksOfChristmas/12StacksOfChristmas16x16.gif',false,11323,'/images/games/12StacksOfChristmas/12StacksOfChristmas100x75.jpg','/images/games/12StacksOfChristmas/12StacksOfChristmas179x135.jpg','/images/games/12StacksOfChristmas/12StacksOfChristmas320x240.jpg','false','/images/games/thumbnails_med_2/12StacksOfChristmas130x75.gif','','Give Christmas presents to the whole family.','Give Christmas presents to the whole family in this fun physics based holiday game.','true',true,true,'12 Stacks Of Christmas OLT1 AS');ag(119625140,'Bubble Xmas','/images/games/BubbleXmas/BubbleXmas81x46.gif',1003,119694670,'','false','/images/games/BubbleXmas/BubbleXmas16x16.gif',false,11323,'/images/games/BubbleXmas/BubbleXmas100x75.jpg','/images/games/BubbleXmas/BubbleXmas179x135.jpg','/images/games/BubbleXmas/BubbleXmas320x240.jpg','false','/images/games/thumbnails_med_2/BubbleXmas130x75.gif','/exe/bubble_xmas_84654210-setup.exe?lc=en&ext=bubble_xmas_84654210-setup.exe','Burst Bubbles in a Winter Wonderland!','Match colored bubbles and make them burst in a winter wonderland!','false',false,false,'Bubble Xmas');ag(119626130,'Time Mysteries: Inheritance','/images/games/TimeMysteriesInheritance/TimeMysteriesInheritance81x46.gif',1100710,119695680,'','false','/images/games/TimeMysteriesInheritance/TimeMysteriesInheritance16x16.gif',false,11323,'/images/games/TimeMysteriesInheritance/TimeMysteriesInheritance100x75.jpg','/images/games/TimeMysteriesInheritance/TimeMysteriesInheritance179x135.jpg','/images/games/TimeMysteriesInheritance/TimeMysteriesInheritance320x240.jpg','false','/images/games/thumbnails_med_2/TimeMysteriesInheritance130x75.gif','/exe/time_mysteries_inheritance_56465110-setup.exe?lc=en&ext=time_mysteries_inheritance_56465110-setup.exe','Help Vivien Find Her Kidnapped Father!','Travel through time to help Vivien find her kidnapped father!','false',false,false,'Time Mysteries: Inheritance');ag(119627530,'Brain Waves','/images/games/brainwaves/brainwaves81x46.gif',110083820,119696213,'2ba0bc9d-518b-4d3a-936c-25fa4c6b466d','false','/images/games/brainwaves/brainwaves16x16.gif',false,11323,'/images/games/brainwaves/brainwaves100x75.jpg','/images/games/brainwaves/brainwaves179x135.jpg','/images/games/brainwaves/brainwaves320x240.jpg','false','/images/games/thumbnails_med_2/brainwaves130x75.gif','','A 7 game brain training game.','Brain Waves is a game that will challenge your brain power to the max!','true',false,false,'Brain Waves OL AS3');ag(119631717,'Slingo Mystery 2: The Golden Escape','/images/games/SlingoMystery2/SlingoMystery281x46.gif',1100710,119700817,'','false','/images/games/SlingoMystery2/SlingoMystery216x16.gif',false,11323,'/images/games/SlingoMystery2/SlingoMystery2100x75.jpg','/images/games/SlingoMystery2/SlingoMystery2179x135.jpg','/images/games/SlingoMystery2/SlingoMystery2320x240.jpg','false','/images/games/thumbnails_med_2/SlingoMystery2130x75.gif','/exe/slingo_mystery_2_68454245-setup.exe?lc=en&ext=slingo_mystery_2_68454245-setup.exe','Adventurous Mysterious of the Slingo Sequel!','Follow the mysterious twists and turns of a Slingo sequel!','false',false,false,'Slingo Mystery 2');ag(119635410,'Ballville: The Beginning','/images/games/BallvilleTheBeginning/BallvilleTheBeginning81x46.gif',1007,119704783,'','false','/images/games/BallvilleTheBeginning/BallvilleTheBeginning16x16.gif',false,11323,'/images/games/BallvilleTheBeginning/BallvilleTheBeginning100x75.jpg','/images/games/BallvilleTheBeginning/BallvilleTheBeginning179x135.jpg','/images/games/BallvilleTheBeginning/BallvilleTheBeginning320x240.jpg','false','/images/games/thumbnails_med_2/BallvilleTheBeginning130x75.gif','/exe/ballville_the_beginning_53685045-setup.exe?lc=en&ext=ballville_the_beginning_53685045-setup.exe','Build an Intergalactic City!','Build a city on an unknown planet with match-3 gaming!','false',false,false,'Ballville The Beginning');ag(119637983,'Merry Christmas Tree','/images/games/MerryChristmasTree/MerryChristmasTree81x46.gif',110083820,119706493,'ee4bcd10-320e-4ba7-ba72-62a736fc07dc','false','/images/games/MerryChristmasTree/MerryChristmasTree16x16.gif',false,11323,'/images/games/MerryChristmasTree/MerryChristmasTree100x75.jpg','/images/games/MerryChristmasTree/MerryChristmasTree179x135.jpg','/images/games/MerryChristmasTree/MerryChristmasTree320x240.jpg','false','/images/games/thumbnails_med_2/MerryChristmasTree130x75.gif','','Merry Christmas Tree puzzle game.','Several gameplays in one game!','true',false,false,'Merry Christmas Tree OL');ag(119638373,'Christmas Village','/images/games/ChristmasrVillage/ChristmasrVillage81x46.gif',110083820,119707953,'708570ce-5c8b-4832-9a86-2d32e5344afc','false','/images/games/ChristmasrVillage/ChristmasrVillage16x16.gif',false,11323,'/images/games/ChristmasrVillage/ChristmasrVillage100x75.jpg','/images/games/ChristmasrVillage/ChristmasrVillage179x135.jpg','/images/games/ChristmasrVillage/ChristmasrVillage320x240.jpg','false','/images/games/thumbnails_med_2/ChristmasrVillage130x75.gif','','Christmass Village puzzle game.','Christmass Village puzzle game - several gameplays in one game!','true',false,false,'Christmas Village OL');ag(119639980,'Christmas Lights','/images/games/ChristmasLights/ChristmasLights81x46.gif',110083820,119708673,'645a40ad-3c2c-4bc8-b530-d9c162789b42','false','/images/games/ChristmasLights/ChristmasLights16x16.gif',false,11323,'/images/games/ChristmasLights/ChristmasLights100x75.jpg','/images/games/ChristmasLights/ChristmasLights179x135.jpg','/images/games/ChristmasLights/ChristmasLights320x240.jpg','false','/images/games/thumbnails_med_2/ChristmasLights130x75.gif','','Spot the differences in this Christmas game.','Spot the differences between the festive Christmas lights.','true',false,false,'Christmas Lights OL AS3');ag(119640377,'Christmas Gifts','/images/games/ChristmasGifts/ChristmasGifts81x46.gif',110083820,11970963,'881f10fb-a50d-446b-a966-1af8bb356e2f','false','/images/games/ChristmasGifts/ChristmasGifts16x16.gif',false,11323,'/images/games/ChristmasGifts/ChristmasGifts100x75.jpg','/images/games/ChristmasGifts/ChristmasGifts179x135.jpg','/images/games/ChristmasGifts/ChristmasGifts320x240.jpg','false','/images/games/thumbnails_med_2/ChristmasGifts130x75.gif','','Christmas Gifts puzzle games!','Several gameplays in one game!','true',false,false,'Christmas Gifts OL');ag(119641960,'Christmas Fireworks','/images/games/ChristmasFireworks/ChristmasFireworks81x46.gif',110083820,119710630,'41127a26-ef6e-4b35-8776-be0209901c4c','false','/images/games/ChristmasFireworks/ChristmasFireworks16x16.gif',false,11323,'/images/games/ChristmasFireworks/ChristmasFireworks100x75.jpg','/images/games/ChristmasFireworks/ChristmasFireworks179x135.jpg','/images/games/ChristmasFireworks/ChristmasFireworks320x240.jpg','false','/images/games/thumbnails_med_2/ChristmasFireworks130x75.gif','','Christmas Fireworks puzzle game.','Several gameplays in one game!','true',false,false,'Christmas Fireworks OL');ag(119642193,'Christmas Decorations','/images/games/ChristmasDecorations/ChristmasDecorations81x46.gif',110083820,119711867,'1cb5e297-fef0-4760-9028-33f383972e8a','false','/images/games/ChristmasDecorations/ChristmasDecorations16x16.gif',false,11323,'/images/games/ChristmasDecorations/ChristmasDecorations100x75.jpg','/images/games/ChristmasDecorations/ChristmasDecorations179x135.jpg','/images/games/ChristmasDecorations/ChristmasDecorations320x240.jpg','false','/images/games/thumbnails_med_2/ChristmasDecorations130x75.gif','','Christmas Decorations puzzle game.','Several gameplays in one game!','true',false,false,'Christmas Decorations OL');ag(119647467,'Great Adventures: Xmas Edition','/images/games/GreatAdventuresXmas/GreatAdventuresXmas81x46.gif',0,119716153,'','false','/images/games/GreatAdventuresXmas/GreatAdventuresXmas16x16.gif',false,11323,'/images/games/GreatAdventuresXmas/GreatAdventuresXmas100x75.jpg','/images/games/GreatAdventuresXmas/GreatAdventuresXmas179x135.jpg','/images/games/GreatAdventuresXmas/GreatAdventuresXmas320x240.jpg','false','/images/games/thumbnails_med_2/GreatAdventuresXmas130x75.gif','/exe/great_adventures_xmas_64684105-setup.exe?lc=en&ext=great_adventures_xmas_64684105-setup.exe','Save a Scientist and his Formulas!','Track down a missing scientist and save his powerful formulas!','false',false,false,'Great Adventures Xmas');ag(119648993,'Xmas Blox','/images/games/XmasBlox/XmasBlox81x46.gif',1007,119717670,'','false','/images/games/XmasBlox/XmasBlox16x16.gif',false,11323,'/images/games/XmasBlox/XmasBlox100x75.jpg','/images/games/XmasBlox/XmasBlox179x135.jpg','/images/games/XmasBlox/XmasBlox320x240.jpg','false','/images/games/thumbnails_med_2/XmasBlox130x75.gif','/exe/zmas_blox_75410444-setup.exe?lc=en&ext=zmas_blox_75410444-setup.exe','Match and Burst Christmas Cubes!','Match colored, icy cubes so that they burst and disappear!','false',false,false,'Xmas Blox');ag(119649787,'Jewel Quest Mysteries bundle','/images/games/jewel_quest_mysteries_bundle/jewel_quest_mysteries_bundle81x46.gif',1100710,119718230,'','false','/images/games/jewel_quest_mysteries_bundle/jewel_quest_mysteries_bundle16x16.gif',false,11323,'/images/games/jewel_quest_mysteries_bundle/jewel_quest_mysteries_bundle100x75.jpg','/images/games/jewel_quest_mysteries_bundle/jewel_quest_mysteries_bundle179x135.jpg','/images/games/jewel_quest_mysteries_bundle/jewel_quest_mysteries_bundle320x240.jpg','false','/images/games/thumbnails_med_2/jewel_quest_mysteries_bundle130x75.gif','/exe/jewel_quest_mysteries_bundle_68450411-setup.exe?lc=en&ext=jewel_quest_mysteries_bundle_68450411-setup.exe','Two Mystical Adventures in One!','Two mystical adventures of hidden objects and match-3 puzzles!','false',false,false,'Jewel Quest Mysteries bundle');ag(119650160,'Spaceballs','/images/games/spaceballs/spaceballs81x46.gif',110083820,119719490,'6b4e0da9-b4e1-4771-afe8-510afeb80489','false','/images/games/spaceballs/spaceballs16x16.gif',false,11323,'/images/games/spaceballs/spaceballs100x75.jpg','/images/games/spaceballs/spaceballs179x135.jpg','/images/games/spaceballs/spaceballs320x240.jpg','false','/images/games/thumbnails_med_2/spaceballs130x75.gif','','Block your opponent with ‘spaceballs’.','Shoot the &rsquo;spaceballs&rsquo; close to your opponent and try to create large energy balls to block him with them.','true',true,true,'Spaceballs OLT1 AS3');ag(119651770,'Escape','/images/games/Escape/Escape81x46.gif',110083820,119720400,'17ce4cf9-5c64-4a20-833a-1770e25f530a','false','/images/games/Escape/Escape16x16.gif',false,11323,'/images/games/Escape/Escape100x75.jpg','/images/games/Escape/Escape179x135.jpg','/images/games/Escape/Escape320x240.jpg','false','/images/games/thumbnails_med_2/Escape130x75.gif','','Connect the chain links!','Connect at least 3 chain links of the same colour in order to dissolve them from the playing field!','true',true,true,'Escape OLT1 AS3');ag(119652447,'Chicken Invaders 4: Ultimate Omelette','/images/games/ChickenInvaders4/ChickenInvaders481x46.gif',1003,11972173,'','false','/images/games/ChickenInvaders4/ChickenInvaders416x16.gif',false,11323,'/images/games/ChickenInvaders4/ChickenInvaders4100x75.jpg','/images/games/ChickenInvaders4/ChickenInvaders4179x135.jpg','/images/games/ChickenInvaders4/ChickenInvaders4320x240.jpg','false','/images/games/thumbnails_med_2/ChickenInvaders4130x75.gif','/exe/chicken_invaders_4_86423130-setup.exe?lc=en&ext=chicken_invaders_4_86423130-setup.exe','Save Earth from a Scrambled Demise!','Destroy intergalactic chickens and save Earth from a scrambled demise!','false',false,false,'Chicken Invaders 4');ag(119659857,'Santa N Gifts','/images/games/santa_n_gifts/santa_n_gifts81x46.gif',110015873,11972817,'','false','/images/games/santa_n_gifts/santa_n_gifts16x16.gif',false,11323,'/images/games/santa_n_gifts/santa_n_gifts100x75.jpg','/images/games/santa_n_gifts/santa_n_gifts179x135.jpg','/images/games/santa_n_gifts/santa_n_gifts320x240.jpg','false','/images/games/thumbnails_med_2/santa_n_gifts130x75.gif','','A New Twist on an Old Favorite game - Zuma.','Shoot three or more similar gifts to collect gifts from Santa.','true',false,false,'Santa N Gifts OL');ag(119660923,'Big Tree Defense','/images/games/bigtreedefense/bigtreedefense81x46.gif',110083820,119729987,'80378ea7-de08-499e-8da9-d756bfb26c8d','false','/images/games/bigtreedefense/bigtreedefense16x16.gif',false,11323,'/images/games/bigtreedefense/bigtreedefense100x75.jpg','/images/games/bigtreedefense/bigtreedefense179x135.jpg','/images/games/bigtreedefense/bigtreedefense320x240.jpg','false','/images/games/thumbnails_med_2/bigtreedefense130x75.gif','','Big tree defeat evil insects.','Build your tree to defeat the evil insects.','true',false,false,'Big Tree Defense OL AS3');ag(119661667,'Chainz Galaxy','/images/games/ChainzGalaxy/ChainzGalaxy81x46.gif',1007,119730120,'','false','/images/games/ChainzGalaxy/ChainzGalaxy16x16.gif',false,11323,'/images/games/ChainzGalaxy/ChainzGalaxy100x75.jpg','/images/games/ChainzGalaxy/ChainzGalaxy179x135.jpg','/images/games/ChainzGalaxy/ChainzGalaxy320x240.jpg','false','/images/games/thumbnails_med_2/ChainzGalaxy130x75.gif','/exe/chainz_galaxy_68453211-setup.exe?lc=en&ext=chainz_galaxy_68453211-setup.exe','The Next Level in Link-matching Madness!','Twist chains to create a colorful world of link-matching madness!','false',false,false,'Chainz Galaxy');ag(119666650,'Roads of Rome 2','/images/games/RoadsofRome2/RoadsofRome281x46.gif',1007,119735947,'','false','/images/games/RoadsofRome2/RoadsofRome216x16.gif',false,11323,'/images/games/RoadsofRome2/RoadsofRome2100x75.jpg','/images/games/RoadsofRome2/RoadsofRome2179x135.jpg','/images/games/RoadsofRome2/RoadsofRome2320x240.jpg','false','/images/games/thumbnails_med_2/RoadsofRome2130x75.gif','/exe/roads_of_rome_2_01545341-setup.exe?lc=en&ext=roads_of_rome_2_01545341-setup.exe','Lead Victorius&rsquo; Quest to Save Caesar!','Lead Victorius&rsquo; quest to save Caesar in a strategy and time management adventure!','false',false,false,'Roads of Rome 2');ag(119667993,'The Fall Trilogy, Chapter 1: Separation','/images/games/TheFallTrilogyChapter1/TheFallTrilogyChapter181x46.gif',1100710,119736207,'','false','/images/games/TheFallTrilogyChapter1/TheFallTrilogyChapter116x16.gif',false,11323,'/images/games/TheFallTrilogyChapter1/TheFallTrilogyChapter1100x75.jpg','/images/games/TheFallTrilogyChapter1/TheFallTrilogyChapter1179x135.jpg','/images/games/TheFallTrilogyChapter1/TheFallTrilogyChapter1320x240.jpg','false','/images/games/thumbnails_med_2/TheFallTrilogyChapter1130x75.gif','/exe/the_fall_trilogy_chapter_1_68456120-setup.exe?lc=en&ext=the_fall_trilogy_chapter_1_68456120-setup.exe','Escape a Puzzling, Exotic Temple!','Escape a mysterious temple after awakening in this exotic puzzle adventure!','false',false,false,'The Fall Trilogy Chapter 1');ag(119669180,'Time Goes By','/images/games/timegoesby/timegoesby81x46.gif',110083820,119738737,'5b5874ea-5f9e-47d0-80fc-e37bc2a66c45','false','/images/games/timegoesby/timegoesby16x16.gif',false,11323,'/images/games/timegoesby/timegoesby100x75.jpg','/images/games/timegoesby/timegoesby179x135.jpg','/images/games/timegoesby/timegoesby320x240.jpg','false','/images/games/thumbnails_med_2/timegoesby130x75.gif','','A music drive game.','Drive the motobike and follow the flowers.','true',false,false,'Time Goes By OL AS3');ag(119671880,'Blow Things Up','/images/games/blowthingsup/blowthingsup81x46.gif',110083820,119740383,'c2e6c181-e3a7-4757-833e-1624aca8e6cb','false','/images/games/blowthingsup/blowthingsup16x16.gif',false,11323,'/images/games/blowthingsup/blowthingsup100x75.jpg','/images/games/blowthingsup/blowthingsup179x135.jpg','/images/games/blowthingsup/blowthingsup320x240.jpg','false','/images/games/thumbnails_med_2/blowthingsup130x75.gif','','A physic puzzle block destruction game.','What’s more fun than building towers and moving shapes around in physics games?','true',false,false,'Blow Things Up OL AS3');ag(119672893,'Pengu Flip','/images/games/Penguflip/Penguflip81x46.gif',110083820,119741257,'639b5be0-ca4a-4319-800c-01f8eded13c8','false','/images/games/Penguflip/Penguflip16x16.gif',false,11323,'/images/games/Penguflip/Penguflip100x75.jpg','/images/games/Penguflip/Penguflip179x135.jpg','/images/games/Penguflip/Penguflip320x240.jpg','false','/images/games/thumbnails_med_2/Penguflip130x75.gif','','Propel the penguin!','Propel the penguin as high into space as you can!','true',true,true,'Pengu Flip OLT1 AS3');ag(119692777,'Cake Mania: To the Max!','/images/games/CakeManiaToTheMax/CakeManiaToTheMax81x46.gif',110127790,119761357,'','false','/images/games/CakeManiaToTheMax/CakeManiaToTheMax16x16.gif',false,11323,'/images/games/CakeManiaToTheMax/CakeManiaToTheMax100x75.jpg','/images/games/CakeManiaToTheMax/CakeManiaToTheMax179x135.jpg','/images/games/CakeManiaToTheMax/CakeManiaToTheMax320x240.jpg','false','/images/games/thumbnails_med_2/CakeManiaToTheMax130x75.gif','/exe/cake_mania_to_the_max_83215850-setup.exe?lc=en&ext=cake_mania_to_the_max_83215850-setup.exe','Flashback to the Crazy &rsquo;80s!','Flashback to the &rsquo;80s for bakery time management and big prom drama!','false',false,false,'Cake Mania To The Max');ag(119693640,'Westward Kingdoms','/images/games/WestwardKingdoms/WestwardKingdoms81x46.gif',1100710,119762323,'','false','/images/games/WestwardKingdoms/WestwardKingdoms16x16.gif',false,11323,'/images/games/WestwardKingdoms/WestwardKingdoms100x75.jpg','/images/games/WestwardKingdoms/WestwardKingdoms179x135.jpg','/images/games/WestwardKingdoms/WestwardKingdoms320x240.jpg','false','/images/games/thumbnails_med_2/WestwardKingdoms130x75.gif','/exe/westward_kingdoms_45535300-setup.exe?lc=en&ext=westward_kingdoms_45535300-setup.exe','Prove your Worth and Impress the King!','Embark on a quest to prove your worth and impress the king!','false',false,false,'Westward Kingdoms');ag(119694870,'Santa Jump','/images/games/SantaJump/SantaJump81x46.gif',110083820,119763553,'7087b124-d828-4e07-bdfc-1ae967a89bca','false','/images/games/SantaJump/SantaJump16x16.gif',false,11323,'/images/games/SantaJump/SantaJump100x75.jpg','/images/games/SantaJump/SantaJump179x135.jpg','/images/games/SantaJump/SantaJump320x240.jpg','false','/images/games/thumbnails_med_2/SantaJump130x75.gif','','Jumping Santa collects lost presents.','Help Santa to collect lost presents scattered on the islands.','true',false,false,'Santa Jump OL');ag(119695960,'Cradle of Rome 2','/images/games/CradleOfRome2/CradleOfRome281x46.gif',1007,119764933,'','false','/images/games/CradleOfRome2/CradleOfRome216x16.gif',false,11323,'/images/games/CradleOfRome2/CradleOfRome2100x75.jpg','/images/games/CradleOfRome2/CradleOfRome2179x135.jpg','/images/games/CradleOfRome2/CradleOfRome2320x240.jpg','false','/images/games/thumbnails_med_2/CradleOfRome2130x75.gif','/exe/cradle_of_rome_2_56440313-setup.exe?lc=en&ext=cradle_of_rome_2_56440313-setup.exe','Rule the Roman Empire!','Rule an empire and buld Ancient Rome through matching puzzle madness!','false',false,false,'Cradle Of Rome 2 Stnd');ag(119698620,'Mystery of Mortlake Mansion','/images/games/MysteryofMortlakeMansion/MysteryofMortlakeMansion81x46.gif',1100710,119767197,'','false','/images/games/MysteryofMortlakeMansion/MysteryofMortlakeMansion16x16.gif',false,11323,'/images/games/MysteryofMortlakeMansion/MysteryofMortlakeMansion100x75.jpg','/images/games/MysteryofMortlakeMansion/MysteryofMortlakeMansion179x135.jpg','/images/games/MysteryofMortlakeMansion/MysteryofMortlakeMansion320x240.jpg','false','/images/games/thumbnails_med_2/MysteryofMortlakeMansion130x75.gif','/exe/mystery_of_mortlake_mansion_84545471-setup.exe?lc=en&ext=mystery_of_mortlake_mansion_84545471-setup.exe','Uncover Dark Secrets and Evil Spells!','Uncover the dark secrets and evil spells of Mortlake Mansion!','false',false,false,'Mystery of Mortlake Mansion');ag(119702860,'Soap Opera Dash','/images/games/SoapOperaDash/SoapOperaDash81x46.gif',110127790,119771193,'','false','/images/games/SoapOperaDash/SoapOperaDash16x16.gif',false,11323,'/images/games/SoapOperaDash/SoapOperaDash100x75.jpg','/images/games/SoapOperaDash/SoapOperaDash179x135.jpg','/images/games/SoapOperaDash/SoapOperaDash320x240.jpg','false','/images/games/thumbnails_med_2/SoapOperaDash130x75.gif','/exe/soap_opera_dash_84651540-setup.exe?lc=en&ext=soap_opera_dash_84651540-setup.exe','DinerTown’s new soap opera ready for their close-up','Manage fame, love triangles, and TV drama on the DinerTown set!','false',false,false,'Soap Opera Dash');ag(119705723,'Airport Mania 2: Wild Trips','/images/games/AirportManiaWildTripsStandard/AirportManiaWildTripsStandard81x46.gif',110127790,11977470,'','false','/images/games/AirportManiaWildTripsStandard/AirportManiaWildTripsStandard16x16.gif',false,11323,'/images/games/AirportManiaWildTripsStandard/AirportManiaWildTripsStandard100x75.jpg','/images/games/AirportManiaWildTripsStandard/AirportManiaWildTripsStandard179x135.jpg','/images/games/AirportManiaWildTripsStandard/AirportManiaWildTripsStandard320x240.jpg','false','/images/games/thumbnails_med_2/AirportManiaWildTripsStandard130x75.gif','/exe/airport_mania_2_wld_trips_54456210-setup.exe?lc=en&ext=airport_mania_2_wld_trips_54456210-setup.exe','Return to Fly the Fantastical Skies!','Return to the fantastical skies on military planes and space shuttles!','false',false,false,'Airport Mania Wild Trips Stand');ag(119706640,'Cursed House','/images/games/CursedHouse/CursedHouse81x46.gif',1007,119775313,'','false','/images/games/CursedHouse/CursedHouse16x16.gif',false,11323,'/images/games/CursedHouse/CursedHouse100x75.jpg','/images/games/CursedHouse/CursedHouse179x135.jpg','/images/games/CursedHouse/CursedHouse320x240.jpg','false','/images/games/thumbnails_med_2/CursedHouse130x75.gif','/exe/cursed_house_46541055-setup.exe?lc=en&ext=cursed_house_46541055-setup.exe','Banish the Evil Match-3 Spirits!','Banish the evil match-3 spirits from a cursed house!','false',false,false,'Cursed House');ag(119708997,'Jodie Drake and the World in Peril','/images/games/JodieDrakeAndTheWorldInPeril/JodieDrakeAndTheWorldInPeril81x46.gif',0,119777680,'','false','/images/games/JodieDrakeAndTheWorldInPeril/JodieDrakeAndTheWorldInPeril16x16.gif',false,11323,'/images/games/JodieDrakeAndTheWorldInPeril/JodieDrakeAndTheWorldInPeril100x75.jpg','/images/games/JodieDrakeAndTheWorldInPeril/JodieDrakeAndTheWorldInPeril179x135.jpg','/images/games/JodieDrakeAndTheWorldInPeril/JodieDrakeAndTheWorldInPeril320x240.jpg','false','/images/games/thumbnails_med_2/JodieDrakeAndTheWorldInPeril130x75.gif','/exe/jodie_drake_and_the_world_in_peril_56411245-setup.exe?lc=en&ext=jodie_drake_and_the_world_in_peril_56411245-setup.exe','Search the Globe for Ancient Treasures!','Join Jodie in searching the globe for forgotten ruins and ancient treasures!','false',false,false,'Jodie Drake And The World In P');ag(119716640,'Supermarket Mania® 2','/images/games/SupermarketMania2/SupermarketMania281x46.gif',110127790,119785243,'','false','/images/games/SupermarketMania2/SupermarketMania216x16.gif',false,11323,'/images/games/SupermarketMania2/SupermarketMania2100x75.jpg','/images/games/SupermarketMania2/SupermarketMania2179x135.jpg','/images/games/SupermarketMania2/SupermarketMania2320x240.jpg','false','/images/games/thumbnails_med_2/SupermarketMania2130x75.gif','/exe/supermarket_mania_2_53541245-setup.exe?lc=en&ext=supermarket_mania_2_53541245-setup.exe','Head West with Nikki to Tinseltown!','Head west with Nikki for time management mayhem in Tinseltown!','false',false,false,'Supermarket Mania 2');ag(119721963,'Sunny Days','/images/games/SunnyDays/SunnyDays81x46.gif',110083820,119790557,'553c68d0-8357-40ea-b839-4473fd8c849c','false','/images/games/SunnyDays/SunnyDays16x16.gif',false,11323,'/images/games/SunnyDays/SunnyDays100x75.jpg','/images/games/SunnyDays/SunnyDays179x135.jpg','/images/games/SunnyDays/SunnyDays320x240.jpg','false','/images/games/thumbnails_med_2/SunnyDays130x75.gif','','Bright shooter in fresh setting.','Bright shooter in fresh setting where you control The Sun.','true',false,false,'Sunny Days OL AS3');ag(119722830,'Lamp Of Aladdin','/images/games/LampOfAladdin/LampOfAladdin81x46.gif',110015873,119791807,'5ce0ee66-cfff-41a6-97f0-48626cc863a2','false','/images/games/LampOfAladdin/LampOfAladdin16x16.gif',false,11323,'/images/games/LampOfAladdin/LampOfAladdin100x75.jpg','/images/games/LampOfAladdin/LampOfAladdin179x135.jpg','/images/games/LampOfAladdin/LampOfAladdin320x240.jpg','false','/images/games/thumbnails_med_2/LampOfAladdin130x75.gif','','The World Where Dreams Come True!','Journey to a unique match-3 world where dreams come true!','true',false,true,'Lamp Of Aladdin OLT1');ag(119725820,'Nightmare on the Pacific','/images/games/NightmareOnThePacific/NightmareOnThePacific81x46.gif',1100710,119794390,'','false','/images/games/NightmareOnThePacific/NightmareOnThePacific16x16.gif',false,11323,'/images/games/NightmareOnThePacific/NightmareOnThePacific100x75.jpg','/images/games/NightmareOnThePacific/NightmareOnThePacific179x135.jpg','/images/games/NightmareOnThePacific/NightmareOnThePacific320x240.jpg','false','/images/games/thumbnails_med_2/NightmareOnThePacific130x75.gif','/exe/nightmare_on_the_pacific_55454104-setup.exe?lc=en&ext=nightmare_on_the_pacific_55454104-setup.exe','Rescue a Family from Cruise Ship Disaster!','Rescue the Brooks family from a cruise ship disaster!','false',false,false,'Nightmare On The Pacific');ag(119727377,'Farm Tribe','/images/games/FarmTribe/FarmTribe81x46.gif',0,119796907,'','false','/images/games/FarmTribe/FarmTribe16x16.gif',false,11323,'/images/games/FarmTribe/FarmTribe100x75.jpg','/images/games/FarmTribe/FarmTribe179x135.jpg','/images/games/FarmTribe/FarmTribe320x240.jpg','false','/images/games/thumbnails_med_2/FarmTribe130x75.gif','/exe/farm_tribe_65444894-setup.exe?lc=en&ext=farm_tribe_65444894-setup.exe','Farm Management and a Mayan Mystery!','Help Anny organize a farm and solve the mystery of a Mayan tribe!','false',false,false,'Farm Tribe');ag(119731880,'Super Star','/images/games/SuperStar/SuperStar81x46.gif',110083820,119800457,'e4d005e5-01e4-4c80-9e19-350f5a2e0330','false','/images/games/SuperStar/SuperStar16x16.gif',false,11323,'/images/games/SuperStar/SuperStar100x75.jpg','/images/games/SuperStar/SuperStar179x135.jpg','/images/games/SuperStar/SuperStar320x240.jpg','false','/images/games/thumbnails_med_2/SuperStar130x75.gif','','Remove the stars!','Remove the given number of stars from the playing field!','true',true,true,'Super Star OLT1 AS3');ag(119732810,'Chronicles of Albian - The Magic Convention','/images/games/ChroniclesofAlbian/ChroniclesofAlbian81x46.gif',1100710,119801317,'','false','/images/games/ChroniclesofAlbian/ChroniclesofAlbian16x16.gif',false,11323,'/images/games/ChroniclesofAlbian/ChroniclesofAlbian100x75.jpg','/images/games/ChroniclesofAlbian/ChroniclesofAlbian179x135.jpg','/images/games/ChroniclesofAlbian/ChroniclesofAlbian320x240.jpg','false','/images/games/thumbnails_med_2/ChroniclesofAlbian130x75.gif','/exe/chronicles_of_albian_45413451-setup.exe?lc=en&ext=chronicles_of_albian_45413451-setup.exe','Seek Hidden Treasures in Albian Castle!','Seek hidden treasures in magical Albian Castle to prepare for the Magic Convention!','false',false,false,'Chronicles of Albian');ag(119733717,'Tamara the 13th','/images/games/Tamarathe13th/Tamarathe13th81x46.gif',1100710,119802320,'','false','/images/games/Tamarathe13th/Tamarathe13th16x16.gif',false,11323,'/images/games/Tamarathe13th/Tamarathe13th100x75.jpg','/images/games/Tamarathe13th/Tamarathe13th179x135.jpg','/images/games/Tamarathe13th/Tamarathe13th320x240.jpg','false','/images/games/thumbnails_med_2/Tamarathe13th130x75.gif','/exe/tamara_the_13th_64518831-setup.exe?lc=en&ext=tamara_the_13th_64518831-setup.exe','Master your Magic in Distant Realms!','Travel to distant realms to master your magical destiny!','false',false,false,'Tamara the 13th');ag(119734890,'Terrafarmers','/images/games/Terrafarmers/Terrafarmers81x46.gif',110127790,119803580,'','false','/images/games/Terrafarmers/Terrafarmers16x16.gif',false,11323,'/images/games/Terrafarmers/Terrafarmers100x75.jpg','/images/games/Terrafarmers/Terrafarmers179x135.jpg','/images/games/Terrafarmers/Terrafarmers320x240.jpg','false','/images/games/thumbnails_med_2/Terrafarmers130x75.gif','/exe/terrafarmers_48645622-setup.exe?lc=en&ext=terrafarmers_48645622-setup.exe','Revive a Barren Celestial Wilderness!','Revive a barren celestial wilderness with with multiplying plants and evolving species!','false',false,false,'Terrafarmers');ag(119735303,'Farm Frenzy: Ancient Rome','/images/games/FarmFrenzyAncientRome/FarmFrenzyAncientRome81x46.gif',110127790,1198040,'','false','/images/games/FarmFrenzyAncientRome/FarmFrenzyAncientRome16x16.gif',false,11323,'/images/games/FarmFrenzyAncientRome/FarmFrenzyAncientRome100x75.jpg','/images/games/FarmFrenzyAncientRome/FarmFrenzyAncientRome179x135.jpg','/images/games/FarmFrenzyAncientRome/FarmFrenzyAncientRome320x240.jpg','false','/images/games/thumbnails_med_2/FarmFrenzyAncientRome130x75.gif','/exe/farm_frenzy_ancient_rome_87891048-setup.exe?lc=en&ext=farm_frenzy_ancient_rome_87891048-setup.exe','Frenzied Farming of Gladiator Proportions!','Frenzied farming of gladiator proportions in an ancient era!','false',false,false,'Farm Frenzy Ancient Rome');ag(119744637,'Jewel Keepers: Easter Island','/images/games/JewelKeepersEasterIsland/JewelKeepersEasterIsland81x46.gif',1007,119813313,'','false','/images/games/JewelKeepersEasterIsland/JewelKeepersEasterIsland16x16.gif',false,11323,'/images/games/JewelKeepersEasterIsland/JewelKeepersEasterIsland100x75.jpg','/images/games/JewelKeepersEasterIsland/JewelKeepersEasterIsland179x135.jpg','/images/games/JewelKeepersEasterIsland/JewelKeepersEasterIsland320x240.jpg','false','/images/games/thumbnails_med_2/JewelKeepersEasterIsland130x75.gif','/exe/jewel_keepers_45111054-setup.exe?lc=en&ext=jewel_keepers_45111054-setup.exe','Match-3 Arcade on a Mysterious Island!','Maneuver a match-3 arcade to reveal the secrets of a mysterious island!','false',false,false,'Jewel Keepers Easter Island');ag(119772410,'Dying for Daylight','/images/games/DFD/DFD81x46.gif',1003,11984137,'','false','/images/games/DFD/DFD16x16.gif',false,11323,'/images/games/DFD/DFD100x75.jpg','/images/games/DFD/DFD179x135.jpg','/images/games/DFD/DFD320x240.jpg','false','/images/games/thumbnails_med_2/DFD130x75.gif','/exe/dying_for_daylight_15842544-setup.exe?lc=en&ext=dying_for_daylight_15842544-setup.exe','Vampires will have their day...','Enter a vampire world on an epic hunt to find a legendary sun potion.','false',false,false,'Dying for Daylight');ag(119773687,'Abigail and the Kingdom of Fairs','/images/games/AbigailandtheKingdomofFairs/AbigailandtheKingdomofFairs81x46.gif',110127790,119842283,'','false','/images/games/AbigailandtheKingdomofFairs/AbigailandtheKingdomofFairs16x16.gif',false,11323,'/images/games/AbigailandtheKingdomofFairs/AbigailandtheKingdomofFairs100x75.jpg','/images/games/AbigailandtheKingdomofFairs/AbigailandtheKingdomofFairs179x135.jpg','/images/games/AbigailandtheKingdomofFairs/AbigailandtheKingdomofFairs320x240.jpg','false','/images/games/thumbnails_med_2/AbigailandtheKingdomofFairs130x75.gif','/exe/abigail_and_the_kingdom_of_fairs_57890323-setup.exe?lc=en&ext=abigail_and_the_kingdom_of_fairs_57890323-setup.exe','Save the Kingdom and Rebuild its Fairs!','Help Abigail save the troubled Kingdom and rebuild magical fairs!','false',false,false,'Abigail and the Kingdom of Fai');ag(119774627,'Restaurant Romance','/images/games/RestaurantRomance/RestaurantRomance81x46.gif',110083820,119843963,'30407ec4-2611-4298-a65e-62716fff4fe0','false','/images/games/RestaurantRomance/RestaurantRomance16x16.gif',false,11323,'/images/games/RestaurantRomance/RestaurantRomance100x75.jpg','/images/games/RestaurantRomance/RestaurantRomance179x135.jpg','/images/games/RestaurantRomance/RestaurantRomance320x240.jpg','false','/images/games/thumbnails_med_2/RestaurantRomance130x75.gif','','Steal her and dine with her.','Steal the lovely lady right in the middle of Restaurant Romance.','true',false,false,'Restaurant Romance OL');ag(119775133,'LA Traffic Mayhem','/images/games/LATrafficMayhem/LATrafficMayhem81x46.gif',110083820,119844807,'2d72cb18-c7b7-4700-b6ef-fdec1c9d375e','false','/images/games/LATrafficMayhem/LATrafficMayhem16x16.gif',false,11323,'/images/games/LATrafficMayhem/LATrafficMayhem100x75.jpg','/images/games/LATrafficMayhem/LATrafficMayhem179x135.jpg','/images/games/LATrafficMayhem/LATrafficMayhem320x240.jpg','false','/images/games/thumbnails_med_2/LATrafficMayhem130x75.gif','','Stop cribbing about traffic! Control it!','Operate the signals and kick out the jams.','true',false,false,'LA Traffic Mayhem OL');ag(119776390,'Train Traffic Control','/images/games/TrainTrafficControl/TrainTrafficControl81x46.gif',110083820,11984577,'3af9b18c-f1a4-49e7-928e-5a59173291c7','false','/images/games/TrainTrafficControl/TrainTrafficControl16x16.gif',false,11323,'/images/games/TrainTrafficControl/TrainTrafficControl100x75.jpg','/images/games/TrainTrafficControl/TrainTrafficControl179x135.jpg','/images/games/TrainTrafficControl/TrainTrafficControl320x240.jpg','false','/images/games/thumbnails_med_2/TrainTrafficControl130x75.gif','','City’s lifeline in your control!','Manage the trains and run the city’s lifeline.','true',false,false,'Train Traffic Control OL');ag(119777417,'Maxx Machine','/images/games/MaxxMachine/MaxxMachine81x46.gif',110083820,119846100,'67876ca0-7f8d-42e5-9774-00ac80de2fbf','false','/images/games/MaxxMachine/MaxxMachine16x16.gif',false,11323,'/images/games/MaxxMachine/MaxxMachine100x75.jpg','/images/games/MaxxMachine/MaxxMachine179x135.jpg','/images/games/MaxxMachine/MaxxMachine320x240.jpg','false','/images/games/thumbnails_med_2/MaxxMachine130x75.gif','','Style your ride to the maxx!','Red line your style and hit the road with Maxx Machine.','true',false,false,'Maxx Machine OL');ag(119785487,'Tasty Planet: Back for Seconds','/images/games/TastyPlanetBackforSeconds/TastyPlanetBackforSeconds81x46.gif',1003,119854177,'','false','/images/games/TastyPlanetBackforSeconds/TastyPlanetBackforSeconds16x16.gif',false,11323,'/images/games/TastyPlanetBackforSeconds/TastyPlanetBackforSeconds100x75.jpg','/images/games/TastyPlanetBackforSeconds/TastyPlanetBackforSeconds179x135.jpg','/images/games/TastyPlanetBackforSeconds/TastyPlanetBackforSeconds320x240.jpg','false','/images/games/thumbnails_med_2/TastyPlanetBackforSeconds130x75.gif','/exe/tasty_planet_back_for_seconds_54545201-setup.exe?lc=en&ext=tasty_planet_back_for_seconds_54545201-setup.exe','Eat Your Way Through Time!','Grow bigger and bigger while eating everything throughout time!','false',false,false,'Tasty Planet Back for Seconds');ag(119786333,'Xtreme Speed Boat','/images/games/XtremeSpeedBoat/XtremeSpeedBoat81x46.gif',110083820,119855903,'c345bcdc-03e4-4ee3-bdf0-eb62c8d6b315','false','/images/games/XtremeSpeedBoat/XtremeSpeedBoat16x16.gif',false,11323,'/images/games/XtremeSpeedBoat/XtremeSpeedBoat100x75.jpg','/images/games/XtremeSpeedBoat/XtremeSpeedBoat179x135.jpg','/images/games/XtremeSpeedBoat/XtremeSpeedBoat320x240.jpg','false','/images/games/thumbnails_med_2/XtremeSpeedBoat130x75.gif','','Crank up the speed!','Crank up your speed and win the race!','true',false,false,'Xtreme Speed Boat OL');ag(119787910,'Star Catcher','/images/games/StarCatcher/StarCatcher81x46.gif',110083820,119856613,'78c538db-4566-49fd-8b01-9545f3f3d0e9','false','/images/games/StarCatcher/StarCatcher16x16.gif',false,11323,'/images/games/StarCatcher/StarCatcher100x75.jpg','/images/games/StarCatcher/StarCatcher179x135.jpg','/images/games/StarCatcher/StarCatcher320x240.jpg','false','/images/games/thumbnails_med_2/StarCatcher130x75.gif','','Fish returns the stars back.','Star Catcher is a game about Fish and the stars.','true',false,false,'Star Catcher OL AS3');ag(119789447,'Luxor Bundle 3-in-1','/images/games/luxor_bundle_3_in_1/luxor_bundle_3_in_181x46.gif',1003,119858110,'','false','/images/games/luxor_bundle_3_in_1/luxor_bundle_3_in_116x16.gif',false,11323,'/images/games/luxor_bundle_3_in_1/luxor_bundle_3_in_1100x75.jpg','/images/games/luxor_bundle_3_in_1/luxor_bundle_3_in_1179x135.jpg','/images/games/luxor_bundle_3_in_1/luxor_bundle_3_in_1320x240.jpg','false','/images/games/thumbnails_med_2/luxor_bundle_3_in_1130x75.gif','/exe/luxor_bundle_3in1_51542144-setup.exe?lc=en&ext=luxor_bundle_3in1_51542144-setup.exe','Battle Egypts&rsquo; Nemeses - 3 Game Bundle!','Battle acient Egyptian gods, minions, and thieves with dazzling match gaming!','false',false,false,'Luxor Bundle 3-in-1');ag(119790943,'Jewel Quest: The Sleepless Star','/images/games/JewelQuestSleeplessStarPremium/JewelQuestSleeplessStarPremium81x46.gif',1007,119859907,'','false','/images/games/JewelQuestSleeplessStarPremium/JewelQuestSleeplessStarPremium16x16.gif',false,11323,'/images/games/JewelQuestSleeplessStarPremium/JewelQuestSleeplessStarPremium100x75.jpg','/images/games/JewelQuestSleeplessStarPremium/JewelQuestSleeplessStarPremium179x135.jpg','/images/games/JewelQuestSleeplessStarPremium/JewelQuestSleeplessStarPremium320x240.jpg','false','/images/games/thumbnails_med_2/JewelQuestSleeplessStarPremium130x75.gif','/exe/jewel_quest_sleepless_star_44484151-setup.exe?lc=en&ext=jewel_quest_sleepless_star_44484151-setup.exe','Love, Adventure, and Stolen Jewels!','A worldwide journey of love, adventure, and stolen jewels!','false',false,false,'Jewel Quest Sleepless Star');ag(119793150,'Gourmania 2: Great Expectations','/images/games/Gourmania2/Gourmania281x46.gif',1100710,119862540,'','false','/images/games/Gourmania2/Gourmania216x16.gif',false,11323,'/images/games/Gourmania2/Gourmania2100x75.jpg','/images/games/Gourmania2/Gourmania2179x135.jpg','/images/games/Gourmania2/Gourmania2320x240.jpg','false','/images/games/thumbnails_med_2/Gourmania2130x75.gif','/exe/gourmania_2_45114154-setup.exe?lc=en&ext=gourmania_2_45114154-setup.exe','A Smorgasbord of Seek-and-find Fun!','Feast your eyes on a tasty smorgasbord of seek-and-find fun!','false',false,false,'Gourmania 2');ag(119795153,'Dockyard Shift','/images/games/DockyardShift/DockyardShift81x46.gif',110083820,119864793,'3d8aaebf-b672-470a-a511-72b5379a3c0f','false','/images/games/DockyardShift/DockyardShift16x16.gif',false,11323,'/images/games/DockyardShift/DockyardShift100x75.jpg','/images/games/DockyardShift/DockyardShift179x135.jpg','/images/games/DockyardShift/DockyardShift320x240.jpg','false','/images/games/thumbnails_med_2/DockyardShift130x75.gif','','Time to master that forklift.','Work the docks with this monster forklift only on Dockyard Shift.','true',false,false,'Dockyard Shift OL AS3');ag(119796600,'Drag Race','/images/games/DragRace/DragRace81x46.gif',110083820,119865257,'cf1bd8d7-9a29-47e0-95a5-0b10f39144ce','false','/images/games/DragRace/DragRace16x16.gif',false,11323,'/images/games/DragRace/DragRace100x75.jpg','/images/games/DragRace/DragRace179x135.jpg','/images/games/DragRace/DragRace320x240.jpg','false','/images/games/thumbnails_med_2/DragRace130x75.gif','','Gear up and go full throttle!','Gear up and go full throttle. The dirtiest race is in town!','true',false,false,'Drag Race OL');ag(119798113,'Carbon Auto Theft','/images/games/CarbonAutoTheft/CarbonAutoTheft81x46.gif',110083820,119867760,'a2b4135b-44a1-4426-ad4e-9791e1584037','false','/images/games/CarbonAutoTheft/CarbonAutoTheft16x16.gif',false,11323,'/images/games/CarbonAutoTheft/CarbonAutoTheft100x75.jpg','/images/games/CarbonAutoTheft/CarbonAutoTheft179x135.jpg','/images/games/CarbonAutoTheft/CarbonAutoTheft320x240.jpg','false','/images/games/thumbnails_med_2/CarbonAutoTheft130x75.gif','','It’s gonna be a steal!','Gear up and get behind the wheels… of the stolen cars.','true',false,false,'Carbon Auto Theft OL');ag(119799863,'Survival Of The Fittest 2 in 1','/images/games/SurvivalOfTheFittest2in1/SurvivalOfTheFittest2in181x46.gif',1100710,119868370,'','false','/images/games/SurvivalOfTheFittest2in1/SurvivalOfTheFittest2in116x16.gif',false,11323,'/images/games/SurvivalOfTheFittest2in1/SurvivalOfTheFittest2in1100x75.jpg','/images/games/SurvivalOfTheFittest2in1/SurvivalOfTheFittest2in1179x135.jpg','/images/games/SurvivalOfTheFittest2in1/SurvivalOfTheFittest2in1320x240.jpg','false','/images/games/thumbnails_med_2/SurvivalOfTheFittest2in1130x75.gif','/exe/survival_of_the_fittest_2in1_15135444-setup.exe?lc=en&ext=survival_of_the_fittest_2in1_15135444-setup.exe','Fight to Escape Mysterious, Dangerous Locales!','After waking with amnesia, fight to escape two mysterious and dangerous locales!','false',false,false,'Survival Of The Fittest 2 in 1');ag(119800303,'Escape The Museum 2-in-1 Bundle','/images/games/EscapeTheMuseum2in1/EscapeTheMuseum2in181x46.gif',1100710,119869957,'','false','/images/games/EscapeTheMuseum2in1/EscapeTheMuseum2in116x16.gif',false,11323,'/images/games/EscapeTheMuseum2in1/EscapeTheMuseum2in1100x75.jpg','/images/games/EscapeTheMuseum2in1/EscapeTheMuseum2in1179x135.jpg','/images/games/EscapeTheMuseum2in1/EscapeTheMuseum2in1320x240.jpg','false','/images/games/thumbnails_med_2/EscapeTheMuseum2in1130x75.gif','/exe/escape_the_museum_2in1_48125485-setup.exe?lc=en&ext=escape_the_museum_2in1_48125485-setup.exe','Search Earthquake Rubble to Save Families!','Search earthquake rubble and solve puzzles to save loved ones!','false',false,false,'Escape The Museum 2 in 1');ag(119801390,'Farmscapes™','/images/games/Farmscapes/Farmscapes81x46.gif',1007,11987080,'','false','/images/games/Farmscapes/Farmscapes16x16.gif',false,11323,'/images/games/Farmscapes/Farmscapes100x75.jpg','/images/games/Farmscapes/Farmscapes179x135.jpg','/images/games/Farmscapes/Farmscapes320x240.jpg','false','/images/games/thumbnails_med_2/Farmscapes130x75.gif','/exe/farmscapes_96438755-setup.exe?lc=en&ext=farmscapes_96438755-setup.exe','Help Joe Restore his Rundown Ranch!','Help Joe sell farm products to earn money and restore his ranch!','false',false,false,'Farmscapes');ag(119803590,'Vacation Quest™ - The Hawaiian Islands','/images/games/VacationQuestHawaiianIslands/VacationQuestHawaiianIslands81x46.gif',1100710,119872190,'','false','/images/games/VacationQuestHawaiianIslands/VacationQuestHawaiianIslands16x16.gif',false,11323,'/images/games/VacationQuestHawaiianIslands/VacationQuestHawaiianIslands100x75.jpg','/images/games/VacationQuestHawaiianIslands/VacationQuestHawaiianIslands179x135.jpg','/images/games/VacationQuestHawaiianIslands/VacationQuestHawaiianIslands320x240.jpg','false','/images/games/thumbnails_med_2/VacationQuestHawaiianIslands130x75.gif','/exe/vacation_quest_54184214-setup.exe?lc=en&ext=vacation_quest_54184214-setup.exe','Ultimate Seek-and-find in the Tropics!','Jet off to the gorgeous Hawaiian islands for the ultimate, tropical seek-and-find!','false',false,false,'Vacation Quest Hawaiian Island');ag(119804693,'Twisted: A Haunted Carol','/images/games/TwistedAHauntedCarol/TwistedAHauntedCarol81x46.gif',1100710,119873217,'','false','/images/games/TwistedAHauntedCarol/TwistedAHauntedCarol16x16.gif',false,11323,'/images/games/TwistedAHauntedCarol/TwistedAHauntedCarol100x75.jpg','/images/games/TwistedAHauntedCarol/TwistedAHauntedCarol179x135.jpg','/images/games/TwistedAHauntedCarol/TwistedAHauntedCarol320x240.jpg','false','/images/games/thumbnails_med_2/TwistedAHauntedCarol130x75.gif','/exe/twisted_haunted_carol_54543412-setup.exe?lc=en&ext=twisted_haunted_carol_54543412-setup.exe','A Dark and Murderous Retelling of Dickens!','Uncover the dark side of Marley&rsquo;s ghost in Dickens’ famous Christmas Carol!','false',false,false,'Twisted A Haunted Carol');ag(119806657,'Bloodline of the Fallen: Anna&rsquo;s Sacrifice','/images/games/AnnasSacrifice/AnnasSacrifice81x46.gif',1100710,119875250,'','false','/images/games/AnnasSacrifice/AnnasSacrifice16x16.gif',false,11323,'/images/games/AnnasSacrifice/AnnasSacrifice100x75.jpg','/images/games/AnnasSacrifice/AnnasSacrifice179x135.jpg','/images/games/AnnasSacrifice/AnnasSacrifice320x240.jpg','false','/images/games/thumbnails_med_2/AnnasSacrifice130x75.gif','/exe/bloodline_of_the_fallen_54357481-setup.exe?lc=en&ext=bloodline_of_the_fallen_54357481-setup.exe','Help Anna Confront her Destiny!','Help Anna confront her destiny following her father&rsquo;s murder!','false',false,false,'Annas Sacrifice');ag(119811500,'Mystery Age: The Dark Priests','/images/games/MysteryAgeDarkPriests/MysteryAgeDarkPriests81x46.gif',1100710,119880153,'','false','/images/games/MysteryAgeDarkPriests/MysteryAgeDarkPriests16x16.gif',false,11323,'/images/games/MysteryAgeDarkPriests/MysteryAgeDarkPriests100x75.jpg','/images/games/MysteryAgeDarkPriests/MysteryAgeDarkPriests179x135.jpg','/images/games/MysteryAgeDarkPriests/MysteryAgeDarkPriests320x240.jpg','false','/images/games/thumbnails_med_2/MysteryAgeDarkPriests130x75.gif','/exe/mystery_age_dark_priests_53134842-setup.exe?lc=en&ext=mystery_age_dark_priests_53134842-setup.exe','Stop Westwind&rsquo;s Scheming Dark Priests!','Save your people and stop the dark priests of the Chaos god!','false',false,false,'Mystery Age Dark Priests');ag(119813197,'Sherlock Holmes and the Hound of the Baskervilles','/images/games/SherlockHolmesBaskerville/SherlockHolmesBaskerville81x46.gif',1100710,119882787,'','false','/images/games/SherlockHolmesBaskerville/SherlockHolmesBaskerville16x16.gif',false,11323,'/images/games/SherlockHolmesBaskerville/SherlockHolmesBaskerville100x75.jpg','/images/games/SherlockHolmesBaskerville/SherlockHolmesBaskerville179x135.jpg','/images/games/SherlockHolmesBaskerville/SherlockHolmesBaskerville320x240.jpg','false','/images/games/thumbnails_med_2/SherlockHolmesBaskerville130x75.gif','/exe/sherlock_holmes_hound_of_baskervilles_94683068-setup.exe?lc=en&ext=sherlock_holmes_hound_of_baskervilles_94683068-setup.exe','Crack the Curse of the Baskervilles!','Help Sherlock crack a centuries-old curse before the next murder occurs!','false',false,false,'Sherlock Holmes Baskerville');ag(119814440,'Bird&rsquo;s Town','/images/games/BirdsTown/BirdsTown81x46.gif',1007,119883830,'','false','/images/games/BirdsTown/BirdsTown16x16.gif',false,11323,'/images/games/BirdsTown/BirdsTown100x75.jpg','/images/games/BirdsTown/BirdsTown179x135.jpg','/images/games/BirdsTown/BirdsTown320x240.jpg','false','/images/games/thumbnails_med_2/BirdsTown130x75.gif','/exe/birds_town_45524104-setup.exe?lc=en&ext=birds_town_45524104-setup.exe','Match Colorul Feathers Amid Marble-popping Mayhem!','Build a bird&rsquo;s town by matching colorful feathers in marble-popping mayhem!','false',false,false,'Birds Town');ag(119816140,'Catwalk Countdown','/images/games/CatwalkCountdown/CatwalkCountdown81x46.gif',0,119885613,'','false','/images/games/CatwalkCountdown/CatwalkCountdown16x16.gif',false,11323,'/images/games/CatwalkCountdown/CatwalkCountdown100x75.jpg','/images/games/CatwalkCountdown/CatwalkCountdown179x135.jpg','/images/games/CatwalkCountdown/CatwalkCountdown320x240.jpg','false','/images/games/thumbnails_med_2/CatwalkCountdown130x75.gif','/exe/catwalk_countdown_65457451-setup.exe?lc=en&ext=catwalk_countdown_65457451-setup.exe','Launch your Line for Fashion Week!','Play as a talented designer trying to launch a collection for Fashion Week!','false',false,false,'Catwalk Countdown');ag(119818640,'Mystery Legends: Phantom of the Opera','/images/games/PhantomOfTheOpera/PhantomOfTheOpera81x46.gif',1100710,119887163,'','false','/images/games/PhantomOfTheOpera/PhantomOfTheOpera16x16.gif',false,11323,'/images/games/PhantomOfTheOpera/PhantomOfTheOpera100x75.jpg','/images/games/PhantomOfTheOpera/PhantomOfTheOpera179x135.jpg','/images/games/PhantomOfTheOpera/PhantomOfTheOpera320x240.jpg','false','/images/games/thumbnails_med_2/PhantomOfTheOpera130x75.gif','/exe/phantom_of_the_opera_54348122-setup.exe?lc=en&ext=phantom_of_the_opera_54348122-setup.exe','Discover the Secrets of the Phantom!','Discover the secret history that haunts the Paris Opera House!','false',false,false,'Phantom Of The Opera');ag(119819633,'Catwalk Countdown','/images/games/CatwalkCountdown/CatwalkCountdown81x46.gif',110015873,119888610,'26207ee6-1f46-48b9-922f-8d6234c8f77f','false','/images/games/CatwalkCountdown/CatwalkCountdown16x16.gif',false,11323,'/images/games/CatwalkCountdown/CatwalkCountdown100x75.jpg','/images/games/CatwalkCountdown/CatwalkCountdown179x135.jpg','/images/games/CatwalkCountdown/CatwalkCountdown320x240.jpg','false','/images/games/thumbnails_med_2/CatwalkCountdown130x75.gif','','Launch your Line for Fashion Week!','Play as a talented designer trying to launch a collection for Fashion Week!','true',false,false,'Catwalk Countdown OL AS3');ag(119839970,'Enlightenus II: The Timeless Tower','/images/games/Enlightenus2/Enlightenus281x46.gif',1100710,119908280,'','false','/images/games/Enlightenus2/Enlightenus216x16.gif',false,11323,'/images/games/Enlightenus2/Enlightenus2100x75.jpg','/images/games/Enlightenus2/Enlightenus2179x135.jpg','/images/games/Enlightenus2/Enlightenus2320x240.jpg','false','/images/games/thumbnails_med_2/Enlightenus2130x75.gif','/exe/enlightenus_2_55421545-setup.exe?lc=en&ext=enlightenus_2_55421545-setup.exe','Piece Together the Ageless Clock!','Piece together the ageless clock and save the structure of time!','false',false,false,'Enlightenus 2');ag(119843727,'Hidden Mysteries: Salem Secrets','/images/games/HiddenMysteriesSalemSecrets/HiddenMysteriesSalemSecrets81x46.gif',1100710,119912377,'','false','/images/games/HiddenMysteriesSalemSecrets/HiddenMysteriesSalemSecrets16x16.gif',false,11323,'/images/games/HiddenMysteriesSalemSecrets/HiddenMysteriesSalemSecrets100x75.jpg','/images/games/HiddenMysteriesSalemSecrets/HiddenMysteriesSalemSecrets179x135.jpg','/images/games/HiddenMysteriesSalemSecrets/HiddenMysteriesSalemSecrets320x240.jpg','false','/images/games/thumbnails_med_2/HiddenMysteriesSalemSecrets130x75.gif','/exe/hidden_mysteries_salem_secrets_25485451-setup.exe?lc=en&ext=hidden_mysteries_salem_secrets_25485451-setup.exe','Investigate the Rumors of Witchcraft!','Investigate the rumors of witchcraft in the ultimate hidden object hunt!','false',false,false,'Hidden Mysteries Salem Secrets');ag(119845260,'Murder Island: Secret of Tantalus','/images/games/MurderIslandSecretofTantalus/MurderIslandSecretofTantalus81x46.gif',1100710,119914950,'','false','/images/games/MurderIslandSecretofTantalus/MurderIslandSecretofTantalus16x16.gif',false,11323,'/images/games/MurderIslandSecretofTantalus/MurderIslandSecretofTantalus100x75.jpg','/images/games/MurderIslandSecretofTantalus/MurderIslandSecretofTantalus179x135.jpg','/images/games/MurderIslandSecretofTantalus/MurderIslandSecretofTantalus320x240.jpg','false','/images/games/thumbnails_med_2/MurderIslandSecretofTantalus130x75.gif','/exe/murder_island_secret_of_tantalus_57812542-setup.exe?lc=en&ext=murder_island_secret_of_tantalus_57812542-setup.exe','Survive an Island of Danger and Suspense!','Solve a murderous mystery on a tropical Greek isle!','false',false,false,'Murder Island Secret of Tantal');ag(119846473,'Antique Road Trip USA','/images/games/AntiqueRoadTripUSA/AntiqueRoadTripUSA81x46.gif',1100710,119915443,'','false','/images/games/AntiqueRoadTripUSA/AntiqueRoadTripUSA16x16.gif',false,11323,'/images/games/AntiqueRoadTripUSA/AntiqueRoadTripUSA100x75.jpg','/images/games/AntiqueRoadTripUSA/AntiqueRoadTripUSA179x135.jpg','/images/games/AntiqueRoadTripUSA/AntiqueRoadTripUSA320x240.jpg','false','/images/games/thumbnails_med_2/AntiqueRoadTripUSA130x75.gif','/exe/antique_road_trip_USA_84654547-setup.exe?lc=en&ext=antique_road_trip_USA_84654547-setup.exe','Open James and Grace&rsquo;s Antiques Store!','Help open James and Grace&rsquo;s antiques store with a trek across America!','false',false,false,'Antique Road Trip USA');ag(119848740,'Haunted Halls: Green Hills Sanitarium','/images/games/HauntedHalls/HauntedHalls81x46.gif',1100710,119917337,'','false','/images/games/HauntedHalls/HauntedHalls16x16.gif',false,11323,'/images/games/HauntedHalls/HauntedHalls100x75.jpg','/images/games/HauntedHalls/HauntedHalls179x135.jpg','/images/games/HauntedHalls/HauntedHalls320x240.jpg','false','/images/games/thumbnails_med_2/HauntedHalls130x75.gif','/exe/haunted_halls_45484214-setup.exe?lc=en&ext=haunted_halls_45484214-setup.exe','Explore a Decrepit Mental Asylum!','Explore a decrepit mental asylum and find your missing boyfriend!','false',false,false,'Haunted Halls');ag(119852287,'Matches & Matrimony: A Pride and Prejudice Tale','/images/games/MatchesAndMatrimony/MatchesAndMatrimony81x46.gif',0,119921923,'','false','/images/games/MatchesAndMatrimony/MatchesAndMatrimony16x16.gif',false,11323,'/images/games/MatchesAndMatrimony/MatchesAndMatrimony100x75.jpg','/images/games/MatchesAndMatrimony/MatchesAndMatrimony179x135.jpg','/images/games/MatchesAndMatrimony/MatchesAndMatrimony320x240.jpg','false','/images/games/thumbnails_med_2/MatchesAndMatrimony130x75.gif','/exe/matchesandmatrimony_78465345-setup.exe?lc=en&ext=matchesandmatrimony_78465345-setup.exe','Star in Jane Austen&rsquo;s Beloved Novel!','Star as a Bennet sister in Jane Austen&rsquo;s most beloved novel!','false',false,false,'Matches And Matrimony');ag(119853560,'The Tarot’s Misfortune','/images/games/TheTarotsMisfortune/TheTarotsMisfortune81x46.gif',1007,119922167,'','false','/images/games/TheTarotsMisfortune/TheTarotsMisfortune16x16.gif',false,11323,'/images/games/TheTarotsMisfortune/TheTarotsMisfortune100x75.jpg','/images/games/TheTarotsMisfortune/TheTarotsMisfortune179x135.jpg','/images/games/TheTarotsMisfortune/TheTarotsMisfortune320x240.jpg','false','/images/games/thumbnails_med_2/TheTarotsMisfortune130x75.gif','/exe/thetarotsmisfortune_8656783-setup.exe?lc=en&ext=thetarotsmisfortune_8656783-setup.exe','Recover a Fortune Teller&rsquo;s Magical Cards!','Help Rosalie save her town in a magical, hidden object adventure!','false',false,false,'The Tarots Misfortune');ag(119854450,'Column of the Maya','/images/games/ColumnOfTheMaya/ColumnOfTheMaya81x46.gif',1007,119923120,'','false','/images/games/ColumnOfTheMaya/ColumnOfTheMaya16x16.gif',false,11323,'/images/games/ColumnOfTheMaya/ColumnOfTheMaya100x75.jpg','/images/games/ColumnOfTheMaya/ColumnOfTheMaya179x135.jpg','/images/games/ColumnOfTheMaya/ColumnOfTheMaya320x240.jpg','false','/images/games/thumbnails_med_2/ColumnOfTheMaya130x75.gif','/exe/columnofthemaya_56845675-setup.exe?lc=en&ext=columnofthemaya_56845675-setup.exe','Solve a Mystery Amid Mayan Ruins!','Solve an ancient mystery while exploring perilous jungles and Mayan ruins!','false',false,false,'Column Of The Maya');ag(119882970,'House, M.D.','/images/games/House/House81x46.gif',1007,119951663,'','false','/images/games/House/House16x16.gif',false,11323,'/images/games/House/House100x75.jpg','/images/games/House/House179x135.jpg','/images/games/House/House320x240.jpg','false','/images/games/thumbnails_med_2/House130x75.gif','/exe/house_63487431-setup.exe?lc=en&ext=house_63487431-setup.exe','Race to Unravel Medical Mysteries!','Play alongside Dr. House and race to unravel medical mysteries!','false',false,false,'House MD');ag(119885500,'Atlantic Quest the Underwater Match-3 Adventure','/images/games/AtlanticQuest/AtlanticQuest81x46.gif',1007,119954190,'','false','/images/games/AtlanticQuest/AtlanticQuest16x16.gif',false,11323,'/images/games/AtlanticQuest/AtlanticQuest100x75.jpg','/images/games/AtlanticQuest/AtlanticQuest179x135.jpg','/images/games/AtlanticQuest/AtlanticQuest320x240.jpg','false','/images/games/thumbnails_med_2/AtlanticQuest130x75.gif','/exe/atlanticquest_434684244-setup.exe?lc=en&ext=atlanticquest_434684244-setup.exe','Rescue Sea Life After an Oil Spill!','An underwater, match-3 adventure to rescue sea life after an oil spill!','false',false,false,'Atlantic Quest');ag(119894980,'Behind the Reflection','/images/games/BehindtheReflection/BehindtheReflection81x46.gif',1100710,119963663,'','false','/images/games/BehindtheReflection/BehindtheReflection16x16.gif',false,11323,'/images/games/BehindtheReflection/BehindtheReflection100x75.jpg','/images/games/BehindtheReflection/BehindtheReflection179x135.jpg','/images/games/BehindtheReflection/BehindtheReflection320x240.jpg','false','/images/games/thumbnails_med_2/BehindtheReflection130x75.gif','/exe/behind_the_reflection_56354515-setup.exe?lc=en&ext=behind_the_reflection_56354515-setup.exe','Rescue a Boy from a Parallel World!','Help a mother rescue her son from the parallel world inside a mirror!','false',false,false,'Behind the Reflection');ag(119902903,'Bird’s Town','/images/games/BirdsTown/BirdsTown81x46.gif',110083820,119971847,'dd2112c2-ec7d-423c-ac38-91e2765b0a53','false','/images/games/BirdsTown/BirdsTown16x16.gif',false,11323,'/images/games/BirdsTown/BirdsTown100x75.jpg','/images/games/BirdsTown/BirdsTown179x135.jpg','/images/games/BirdsTown/BirdsTown320x240.jpg','false','/images/games/thumbnails_med_2/BirdsTown130x75.gif','','Match Colorul Feathers Amid Marble-popping Mayhem!','Build a bird’s town by matching colorful feathers in marble-popping mayhem!','true',false,false,'Birds Town OL');ag(119903240,'World Mosaics 4','/images/games/WorldMosaics4/WorldMosaics481x46.gif',1007,119972707,'','false','/images/games/WorldMosaics4/WorldMosaics416x16.gif',false,11323,'/images/games/WorldMosaics4/WorldMosaics4100x75.jpg','/images/games/WorldMosaics4/WorldMosaics4179x135.jpg','/images/games/WorldMosaics4/WorldMosaics4320x240.jpg','false','/images/games/thumbnails_med_2/WorldMosaics4130x75.gif','/exe/WorldMosaics4_47685732-setup.exe?lc=en&ext=WorldMosaics4_47685732-setup.exe','Recover Lost Artifacts by Solving Puzzles!','Recover lost artifacts by solving puzzles in exotic locales!','false',false,false,'World Mosaics 4');ag(119908640,'Phantasmat','/images/games/Phantasmat/Phantasmat81x46.gif',1100710,119977173,'','false','/images/games/Phantasmat/Phantasmat16x16.gif',false,11323,'/images/games/Phantasmat/Phantasmat100x75.jpg','/images/games/Phantasmat/Phantasmat179x135.jpg','/images/games/Phantasmat/Phantasmat320x240.jpg','false','/images/games/thumbnails_med_2/Phantasmat130x75.gif','/exe/Phantasmat_96555658-setup.exe?lc=en&ext=Phantasmat_96555658-setup.exe','Uncover the Secrets of a Mysterious Town!','Solve a forgotten tragedy by uncovering the secrets of a mysterious town!','false',false,false,'Phantasmat');ag(119909990,'Lost Chronicles: Salem','/images/games/LostChroniclesSalem/LostChroniclesSalem81x46.gif',1100710,119978220,'','false','/images/games/LostChroniclesSalem/LostChroniclesSalem16x16.gif',false,11323,'/images/games/LostChroniclesSalem/LostChroniclesSalem100x75.jpg','/images/games/LostChroniclesSalem/LostChroniclesSalem179x135.jpg','/images/games/LostChroniclesSalem/LostChroniclesSalem320x240.jpg','false','/images/games/thumbnails_med_2/LostChroniclesSalem130x75.gif','/exe/lost_chronicles_salem_65586451-setup.exe?lc=en&ext=lost_chronicles_salem_65586451-setup.exe','Escape the Eerie Paranoia of Salem!','Save your mom and escape the eerie paranoia of 1692 Salem!','false',false,false,'Lost Chronicles Salem');ag(119910557,'Chloe&rsquo;s Charm Shop','/images/games/ChloesCharmShop/ChloesCharmShop81x46.gif',110083820,119979230,'ace7afa1-5e6e-48e0-824f-224a99542533','false','/images/games/ChloesCharmShop/ChloesCharmShop16x16.gif',false,11323,'/images/games/ChloesCharmShop/ChloesCharmShop100x75.jpg','/images/games/ChloesCharmShop/ChloesCharmShop179x135.jpg','/images/games/ChloesCharmShop/ChloesCharmShop320x240.jpg','false','/images/games/thumbnails_med_2/ChloesCharmShop130x75.gif','','Help Chloe design some of the best jewelry in town!','Help Chloe design some of the best jewelry in town!','true',false,false,'Chloeâ€™s Charm Shop OL');ag(119911853,'Best Friends Forever','/images/games/BestFriendsForever/BestFriendsForever81x46.gif',110083820,119980483,'87d2eaeb-3e6d-47ba-abdf-0fd6ae034fce','false','/images/games/BestFriendsForever/BestFriendsForever16x16.gif',false,11323,'/images/games/BestFriendsForever/BestFriendsForever100x75.jpg','/images/games/BestFriendsForever/BestFriendsForever179x135.jpg','/images/games/BestFriendsForever/BestFriendsForever320x240.jpg','false','/images/games/thumbnails_med_2/BestFriendsForever130x75.gif','','Help Amy fit in at her new school!','Help Amy fit in at her new school!','true',false,false,'Best Friends Forever OL AS3');ag(119912547,'Casanova Kisser','/images/games/CasanovaKisser/CasanovaKisser81x46.gif',110083820,119981160,'9ea896c2-93bd-446c-a744-5405a72da766','false','/images/games/CasanovaKisser/CasanovaKisser16x16.gif',false,11323,'/images/games/CasanovaKisser/CasanovaKisser100x75.jpg','/images/games/CasanovaKisser/CasanovaKisser179x135.jpg','/images/games/CasanovaKisser/CasanovaKisser320x240.jpg','false','/images/games/thumbnails_med_2/CasanovaKisser130x75.gif','','Get ready to earn your degree as the best pecker in the world!','Get ready to earn your degree as the best pecker in the world!','true',false,false,'Casanova Kisser OL');ag(119918350,'Dock It','/images/games/DockIt/DockIt81x46.gif',110083820,119987940,'970e793e-53c8-4848-8e8f-1c23d747e03f','false','/images/games/DockIt/DockIt16x16.gif',false,11323,'/images/games/DockIt/DockIt100x75.jpg','/images/games/DockIt/DockIt179x135.jpg','/images/games/DockIt/DockIt320x240.jpg','false','/images/games/thumbnails_med_2/DockIt130x75.gif','','It’s time to sail around the world!','Pull up your anchor! It’s time to sail around the world!','true',false,false,'Dock It OL');ag(119919503,'Maxx Machine 2','/images/games/MaxxMachine2/MaxxMachine281x46.gif',110083820,119988893,'401fc51b-dd20-409e-9c6d-1e08b9c5119b','false','/images/games/MaxxMachine2/MaxxMachine216x16.gif',false,11323,'/images/games/MaxxMachine2/MaxxMachine2100x75.jpg','/images/games/MaxxMachine2/MaxxMachine2179x135.jpg','/images/games/MaxxMachine2/MaxxMachine2320x240.jpg','false','/images/games/thumbnails_med_2/MaxxMachine2130x75.gif','','It’s time to race!','Get ready to race! You got to customize your machine and push it to the MAXX!','true',false,false,'Maxx Machine 2 OL');ag(119920120,'Runway Makeup','/images/games/RunwayMakeup/RunwayMakeup81x46.gif',110083820,119989637,'00995dad-1194-4481-b391-010034375fe6','false','/images/games/RunwayMakeup/RunwayMakeup16x16.gif',false,11323,'/images/games/RunwayMakeup/RunwayMakeup100x75.jpg','/images/games/RunwayMakeup/RunwayMakeup179x135.jpg','/images/games/RunwayMakeup/RunwayMakeup320x240.jpg','false','/images/games/thumbnails_med_2/RunwayMakeup130x75.gif','','It’s time to get that makeup on!','The fashion show is about to start and you got to get your girls ready!','true',false,false,'Runway Makeup OL');ag(119922293,'Spa Mania 2','/images/games/SpaMania2/SpaMania281x46.gif',110127790,119991940,'','false','/images/games/SpaMania2/SpaMania216x16.gif',false,11323,'/images/games/SpaMania2/SpaMania2100x75.jpg','/images/games/SpaMania2/SpaMania2179x135.jpg','/images/games/SpaMania2/SpaMania2320x240.jpg','false','/images/games/thumbnails_med_2/SpaMania2130x75.gif','/exe/SpaMania2_48432125-setup.exe?lc=en&ext=SpaMania2_48432125-setup.exe','Reinvent Jade&rsquo;s Spas Across the Country!','Travel the country to make Jade&rsquo;s spas more efficient and eco-friendly!','false',false,false,'Spa Mania 2');ag(119925873,'Jack of All Tribes','/images/games/JackofAllTribes/JackofAllTribes81x46.gif',110127790,119994480,'','false','/images/games/JackofAllTribes/JackofAllTribes16x16.gif',false,11323,'/images/games/JackofAllTribes/JackofAllTribes100x75.jpg','/images/games/JackofAllTribes/JackofAllTribes179x135.jpg','/images/games/JackofAllTribes/JackofAllTribes320x240.jpg','false','/images/games/thumbnails_med_2/JackofAllTribes130x75.gif','/exe/JackofAllTribes_56456644-setup.exe?lc=en&ext=JackofAllTribes_56456644-setup.exe','Rule Primitive Tribes!','Travel back in time with Jack and help him rule primitive tribes!','false',false,false,'Jack of All Tribes');ag(119926607,'Farm Mania: Hot Vacation','/images/games/FarmManiaHotVacation/FarmManiaHotVacation81x46.gif',110127790,119995110,'','false','/images/games/FarmManiaHotVacation/FarmManiaHotVacation16x16.gif',false,11323,'/images/games/FarmManiaHotVacation/FarmManiaHotVacation100x75.jpg','/images/games/FarmManiaHotVacation/FarmManiaHotVacation179x135.jpg','/images/games/FarmManiaHotVacation/FarmManiaHotVacation320x240.jpg','false','/images/games/thumbnails_med_2/FarmManiaHotVacation130x75.gif','/exe/FarmManiaHotVacation_86545369-setup.exe?lc=en&ext=FarmManiaHotVacation_86545369-setup.exe','Win Farming Contests Around the World!','Care for exotic plants and animals in farming contests around the world!','false',false,false,'Farm Mania Hot Vacation');ag(119927487,'Vegas Traffic Mayhem','/images/games/VegasTrafficMayhem/VegasTrafficMayhem81x46.gif',110083820,11999630,'e6dbdc89-f4d4-4017-b837-58a905852967','false','/images/games/VegasTrafficMayhem/VegasTrafficMayhem16x16.gif',false,11323,'/images/games/VegasTrafficMayhem/VegasTrafficMayhem100x75.jpg','/images/games/VegasTrafficMayhem/VegasTrafficMayhem179x135.jpg','/images/games/VegasTrafficMayhem/VegasTrafficMayhem320x240.jpg','false','/images/games/thumbnails_med_2/VegasTrafficMayhem130x75.gif','','It’s time to take control of Sin City!','Get ready to control, maneuver and manage the road rage in Sin City!','true',false,false,'Vegas Traffic Mayhem OL');ag(119928943,'Super Geek Magnet','/images/games/SuperGeekMagnet/SuperGeekMagnet81x46.gif',110083820,119997583,'75644718-628a-4cba-82fb-0e6ee88ebda9','false','/images/games/SuperGeekMagnet/SuperGeekMagnet16x16.gif',false,11323,'/images/games/SuperGeekMagnet/SuperGeekMagnet100x75.jpg','/images/games/SuperGeekMagnet/SuperGeekMagnet179x135.jpg','/images/games/SuperGeekMagnet/SuperGeekMagnet320x240.jpg','false','/images/games/thumbnails_med_2/SuperGeekMagnet130x75.gif','','It’s super dodging time!','Dodge the super geeks to get to the super hunk.','true',false,false,'Super Geek Magnet OL');ag(119929470,'Suzies Spa','/images/games/SuziesSpa/SuziesSpa81x46.gif',110083820,119998103,'9f7f97af-9afa-4cc0-aab0-455cb1817002','false','/images/games/SuziesSpa/SuziesSpa16x16.gif',false,11323,'/images/games/SuziesSpa/SuziesSpa100x75.jpg','/images/games/SuziesSpa/SuziesSpa179x135.jpg','/images/games/SuziesSpa/SuziesSpa320x240.jpg','false','/images/games/thumbnails_med_2/SuziesSpa130x75.gif','','It’s time to get pampering!','It’s time to show the customers the true meaning of relaxation.','true',false,false,'Suzies Spa OL');ag(119930693,'Make Me Over','/images/games/MakeMeOver/MakeMeOver81x46.gif',110083820,119999390,'bf2a198c-e07e-40d9-b275-0802c8436a6e','false','/images/games/MakeMeOver/MakeMeOver16x16.gif',false,11323,'/images/games/MakeMeOver/MakeMeOver100x75.jpg','/images/games/MakeMeOver/MakeMeOver179x135.jpg','/images/games/MakeMeOver/MakeMeOver320x240.jpg','false','/images/games/thumbnails_med_2/MakeMeOver130x75.gif','','Help the girls look perfect for their dates!','Help the girls look perfect for their dates! Help them get dressed to kill!','true',false,false,'Make Me Over OL');ag(119932473,'Project Rescue: Africa','/images/games/ProjectRescueAfrica/ProjectRescueAfrica81x46.gif',110127790,120001110,'','false','/images/games/ProjectRescueAfrica/ProjectRescueAfrica16x16.gif',false,11323,'/images/games/ProjectRescueAfrica/ProjectRescueAfrica100x75.jpg','/images/games/ProjectRescueAfrica/ProjectRescueAfrica179x135.jpg','/images/games/ProjectRescueAfrica/ProjectRescueAfrica320x240.jpg','false','/images/games/thumbnails_med_2/ProjectRescueAfrica130x75.gif','/exe/ProjectRescueAfrica_55598520-setup.exe?lc=en&ext=ProjectRescueAfrica_55598520-setup.exe','Rescue and Care for Exotic Animals!','Rescue, feed, and protect exotic African animals - then set them free!','false',false,false,'Project Rescue Africa');ag(119933763,'Shop it Up!','/images/games/ShopItUp/ShopItUp81x46.gif',1003,12000230,'','false','/images/games/ShopItUp/ShopItUp16x16.gif',false,11323,'/images/games/ShopItUp/ShopItUp100x75.jpg','/images/games/ShopItUp/ShopItUp179x135.jpg','/images/games/ShopItUp/ShopItUp320x240.jpg','false','/images/games/thumbnails_med_2/ShopItUp130x75.gif','/exe/ShopItUp_53454545-setup.exe?lc=en&ext=ShopItUp_53454545-setup.exe','Manage the Opening of a Mall!','Manage the opening of a new mall! Hire employees and decorate shops!','false',false,false,'Shop It Up');ag(119934780,'My Farm Life','/images/games/MyFarmLife/MyFarmLife81x46.gif',110127790,120003137,'','false','/images/games/MyFarmLife/MyFarmLife16x16.gif',false,11323,'/images/games/MyFarmLife/MyFarmLife100x75.jpg','/images/games/MyFarmLife/MyFarmLife179x135.jpg','/images/games/MyFarmLife/MyFarmLife320x240.jpg','false','/images/games/thumbnails_med_2/MyFarmLife130x75.gif','/exe/MyFarmLife_35434630-setup.exe?lc=en&ext=MyFarmLife_35434630-setup.exe','Compete for Farmer of the Year!','Harvest crops and care for livestock to become Farmer of the Year!','false',false,false,'My Farm Life');ag(119935293,'Ancient Secrets - Mystery of the Vanishing Bride','/images/games/AncientSecretsMysteryVanishing/AncientSecretsMysteryVanishing81x46.gif',1100710,120004717,'','false','/images/games/AncientSecretsMysteryVanishing/AncientSecretsMysteryVanishing16x16.gif',false,11323,'/images/games/AncientSecretsMysteryVanishing/AncientSecretsMysteryVanishing100x75.jpg','/images/games/AncientSecretsMysteryVanishing/AncientSecretsMysteryVanishing179x135.jpg','/images/games/AncientSecretsMysteryVanishing/AncientSecretsMysteryVanishing320x240.jpg','false','/images/games/thumbnails_med_2/AncientSecretsMysteryVanishing130x75.gif','/exe/AncientSecretsMysteryVanishing_85454239-setup.exe?lc=en&ext=AncientSecretsMysteryVanishing_85454239-setup.exe','Reunite Spirits Separated by Tragedy!','Reunite spirits separated by tragedy and explore a fascinating, ancient island culture!','false',false,false,'Ancient Secrets Mystery Vanish');ag(119937447,'Pirate Mysteries','/images/games/PirateMysteries/PirateMysteries81x46.gif',1100710,12000620,'','false','/images/games/PirateMysteries/PirateMysteries16x16.gif',false,11323,'/images/games/PirateMysteries/PirateMysteries100x75.jpg','/images/games/PirateMysteries/PirateMysteries179x135.jpg','/images/games/PirateMysteries/PirateMysteries320x240.jpg','false','/images/games/thumbnails_med_2/PirateMysteries130x75.gif','/exe/pirate_mysteries_39483012-setup.exe?lc=en&ext=pirate_mysteries_39483012-setup.exe','Go on a pirate adventure!','Explore exotic lands while trying to save your demon possessed father!','false',false,false,'Pirate Mysteries');ag(119942237,'A Girl in the City','/images/games/AGirlintheCity/AGirlintheCity81x46.gif',1100710,120011827,'','false','/images/games/AGirlintheCity/AGirlintheCity16x16.gif',false,11323,'/images/games/AGirlintheCity/AGirlintheCity100x75.jpg','/images/games/AGirlintheCity/AGirlintheCity179x135.jpg','/images/games/AGirlintheCity/AGirlintheCity320x240.jpg','false','/images/games/thumbnails_med_2/AGirlintheCity130x75.gif','/exe/agirlinthecity_86567838-setup.exe?lc=en&ext=agirlinthecity_86567838-setup.exe','Help Laura Conquer the Big Apple!','Guide Laura to a journalism career and the love of her life!','false',false,false,'A Girl in the City');ag(119943470,'Detective Agency 2: The Banker&rsquo;s Wife','/images/games/DetectiveAgencyTheBankersWife/DetectiveAgencyTheBankersWife81x46.gif',1100710,12001287,'','false','/images/games/DetectiveAgencyTheBankersWife/DetectiveAgencyTheBankersWife16x16.gif',false,11323,'/images/games/DetectiveAgencyTheBankersWife/DetectiveAgencyTheBankersWife100x75.jpg','/images/games/DetectiveAgencyTheBankersWife/DetectiveAgencyTheBankersWife179x135.jpg','/images/games/DetectiveAgencyTheBankersWife/DetectiveAgencyTheBankersWife320x240.jpg','false','/images/games/thumbnails_med_2/DetectiveAgencyTheBankersWife130x75.gif','/exe/DetectiveAgencyTheBankersWife_64573674-setup.exe?lc=en&ext=DetectiveAgencyTheBankersWife_64573674-setup.exe','Expose the Burton Family Mysterious!','Help detective James Kasey solve a disappearance and unravel the Burton family mysteries!','false',false,false,'Detective Agency The Bankers W');ag(119945393,'Journalistic Stories','/images/games/JournalisticStories/JournalisticStories81x46.gif',1100710,120014960,'','false','/images/games/JournalisticStories/JournalisticStories16x16.gif',false,11323,'/images/games/JournalisticStories/JournalisticStories100x75.jpg','/images/games/JournalisticStories/JournalisticStories179x135.jpg','/images/games/JournalisticStories/JournalisticStories320x240.jpg','false','/images/games/thumbnails_med_2/JournalisticStories130x75.gif','/exe/journalistic_stories_85672314-setup.exe?lc=en&ext=journalistic_stories_85672314-setup.exe','Investigate Another Convoluted Case!','Help newspaper journalist Michael Jennings investigate another convoluted case!','false',false,false,'Journalistic Stories');ag(119951100,'Once Upon a Farm','/images/games/OnceUponAFarm/OnceUponAFarm81x46.gif',1100710,120020727,'','false','/images/games/OnceUponAFarm/OnceUponAFarm16x16.gif',false,11323,'/images/games/OnceUponAFarm/OnceUponAFarm100x75.jpg','/images/games/OnceUponAFarm/OnceUponAFarm179x135.jpg','/images/games/OnceUponAFarm/OnceUponAFarm320x240.jpg','false','/images/games/thumbnails_med_2/OnceUponAFarm130x75.gif','/exe/OnceUponaFarm_75675485-setup.exe?lc=en&ext=OnceUponaFarm_75675485-setup.exe','Restore a Young Investigator&rsquo;s Reputation!','Restore a young investigator&rsquo;s reputation following an unsuccessful case!','false',false,false,'Once Upon A Farm');ag(119953387,'Ice Cream Craze: Natural Hero','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero81x46.gif',110127790,120022910,'','false','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero16x16.gif',false,11323,'/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero100x75.jpg','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero179x135.jpg','/images/games/IceCreamCrazeNaturalHero/IceCreamCrazeNaturalHero320x240.jpg','false','/images/games/thumbnails_med_2/IceCreamCrazeNaturalHero130x75.gif','/exe/icecreamcrazenaturalhero_86567838-setup.exe?lc=en&ext=icecreamcrazenaturalhero_86567838-setup.exe','Stack Desserts to Fill Customers&rsquo; Orders!','Stack and top delicious desserts based on the requests of customers!','false',false,false,'Ice Cream Craze Natural Hero');ag(119955527,'Diamon Jones: Devil&rsquo;s Contract','/images/games/DiamonJonesDevilsContract/DiamonJonesDevilsContract81x46.gif',0,120024153,'','false','/images/games/DiamonJonesDevilsContract/DiamonJonesDevilsContract16x16.gif',false,11323,'/images/games/DiamonJonesDevilsContract/DiamonJonesDevilsContract100x75.jpg','/images/games/DiamonJonesDevilsContract/DiamonJonesDevilsContract179x135.jpg','/images/games/DiamonJonesDevilsContract/DiamonJonesDevilsContract320x240.jpg','false','/images/games/thumbnails_med_2/DiamonJonesDevilsContract130x75.gif','/exe/diamonjonesdevilscontract_86544738-setup.exe?lc=en&ext=diamonjonesdevilscontract_86544738-setup.exe','Help Study Ancient Archaeological Finds!','Help study ancient archaelogical materials to find hidden clues and solve puzzles!','false',false,false,'Diamon Jones Devils Contract');ag(119956850,'Fisher’s Family Farm','/images/games/FishersFamilyFarm/FishersFamilyFarm81x46.gif',0,120025477,'','false','/images/games/FishersFamilyFarm/FishersFamilyFarm16x16.gif',false,11323,'/images/games/FishersFamilyFarm/FishersFamilyFarm100x75.jpg','/images/games/FishersFamilyFarm/FishersFamilyFarm179x135.jpg','/images/games/FishersFamilyFarm/FishersFamilyFarm320x240.jpg','false','/images/games/thumbnails_med_2/FishersFamilyFarm130x75.gif','/exe/FishersFamilyFarm_54864512-setup.exe?lc=en&ext=FishersFamilyFarm_54864512-setup.exe','Farm fish around the world!','Farm fish from all around the world in this fast-paced time management!','false',false,false,'Fishers Family Farm');ag(119958940,'Cracker Jack','/images/games/CrackerJack/CrackerJack81x46.gif',110083820,120027367,'2c33c2e0-7042-43b7-ab09-3e076cf47e74','false','/images/games/CrackerJack/CrackerJack16x16.gif',false,11323,'/images/games/CrackerJack/CrackerJack100x75.jpg','/images/games/CrackerJack/CrackerJack179x135.jpg','/images/games/CrackerJack/CrackerJack320x240.jpg','false','/images/games/thumbnails_med_2/CrackerJack130x75.gif','','Rotate the disc!','Collect as many balls as possible!','true',false,true,'Cracker Jack OLT1 AS3');ag(119959370,'Cosmix','/images/games/Cosmix/Cosmix81x46.gif',110083820,120028980,'30abb544-20e3-4dca-a434-ee9ed580e8f4','false','/images/games/Cosmix/Cosmix16x16.gif',false,11323,'/images/games/Cosmix/Cosmix100x75.jpg','/images/games/Cosmix/Cosmix179x135.jpg','/images/games/Cosmix/Cosmix320x240.jpg','false','/images/games/thumbnails_med_2/Cosmix130x75.gif','','Stack the different sized elements onto each other.','Stack the different sized elements onto each other, in order to remove them from the playing field.','true',true,true,'Cosmix OLT1 AS3');ag(119962120,'Jane’s Hotel Mania','/images/games/JanesHotelMania/JanesHotelMania81x46.gif',110083820,12003187,'243f78f2-446f-4958-809c-839f0b28f018','false','/images/games/JanesHotelMania/JanesHotelMania16x16.gif',false,11323,'/images/games/JanesHotelMania/JanesHotelMania100x75.jpg','/images/games/JanesHotelMania/JanesHotelMania179x135.jpg','/images/games/JanesHotelMania/JanesHotelMania320x240.jpg','false','/images/games/thumbnails_med_2/JanesHotelMania130x75.gif','','Become a World Traveling Hotel Magnate!','Help Jane’s niece Jenny master time management and become a hotel magnate!','true',false,false,'Janes Hotel Mania OL');ag(119963603,'Jack of All Tribes','/images/games/JackofAllTribes/JackofAllTribes81x46.gif',110083820,120032547,'091ead57-966e-49b4-9188-b13a2ad7a07f','false','/images/games/JackofAllTribes/JackofAllTribes16x16.gif',false,11323,'/images/games/JackofAllTribes/JackofAllTribes100x75.jpg','/images/games/JackofAllTribes/JackofAllTribes179x135.jpg','/images/games/JackofAllTribes/JackofAllTribes320x240.jpg','false','/images/games/thumbnails_med_2/JackofAllTribes130x75.gif','','Rule Primitive Tribes!','Travel back in time with Jack and help him rule primitive tribes!','true',false,false,'Jack of All Tribes OL');ag(119965467,'Veronica and the Book of Dreams','/images/games/VeronicaandtheBookofDreams/VeronicaandtheBookofDreams81x46.gif',1007,12003483,'','false','/images/games/VeronicaandtheBookofDreams/VeronicaandtheBookofDreams16x16.gif',false,11323,'/images/games/VeronicaandtheBookofDreams/VeronicaandtheBookofDreams100x75.jpg','/images/games/VeronicaandtheBookofDreams/VeronicaandtheBookofDreams179x135.jpg','/images/games/VeronicaandtheBookofDreams/VeronicaandtheBookofDreams320x240.jpg','false','/images/games/thumbnails_med_2/VeronicaandtheBookofDreams130x75.gif','/exe/VeronicaandtheBookofDreams_45551239-setup.exe?lc=en&ext=VeronicaandtheBookofDreams_45551239-setup.exe','Help Veronica Save a Magical World!','Help Veronica save a magical world in a fast-paced match-3 adventure!','false',false,false,'Veronica and the Book of Dream');ag(119966953,'Echoes of Sorrow','/images/games/EchoesOfSorrow/EchoesOfSorrow81x46.gif',1100710,120035590,'','false','/images/games/EchoesOfSorrow/EchoesOfSorrow16x16.gif',false,11323,'/images/games/EchoesOfSorrow/EchoesOfSorrow100x75.jpg','/images/games/EchoesOfSorrow/EchoesOfSorrow179x135.jpg','/images/games/EchoesOfSorrow/EchoesOfSorrow320x240.jpg','false','/images/games/thumbnails_med_2/EchoesOfSorrow130x75.gif','/exe/EchoesOfSorrow_65434893-setup.exe?lc=en&ext=EchoesOfSorrow_65434893-setup.exe','Reveal Dark Secrets of a Woman&rsquo;s Past!','Reveal the dark secrets that have haunted a woman since childhood!','false',false,false,'Echoes Of Sorrow');ag(119968703,'Stray Souls: Dollhouse Story','/images/games/StraySoulsDollhouseStory/StraySoulsDollhouseStory81x46.gif',1100710,120037333,'','false','/images/games/StraySoulsDollhouseStory/StraySoulsDollhouseStory16x16.gif',false,11323,'/images/games/StraySoulsDollhouseStory/StraySoulsDollhouseStory100x75.jpg','/images/games/StraySoulsDollhouseStory/StraySoulsDollhouseStory179x135.jpg','/images/games/StraySoulsDollhouseStory/StraySoulsDollhouseStory320x240.jpg','false','/images/games/thumbnails_med_2/StraySoulsDollhouseStory130x75.gif','/exe/StraySoulsDollhouseStory_00545894-setup.exe?lc=en&ext=StraySoulsDollhouseStory_00545894-setup.exe','Spine-tingling, Hidden Object Horror!','Search for clues and solve puzzles in a spine-tingling, hidden object horror!','false',false,false,'Stray Souls Dollhouse Story');ag(119974283,'Jar of Marbles','/images/games/JarofMarbles/JarofMarbles81x46.gif',1007,120043870,'','false','/images/games/JarofMarbles/JarofMarbles16x16.gif',false,11323,'/images/games/JarofMarbles/JarofMarbles100x75.jpg','/images/games/JarofMarbles/JarofMarbles179x135.jpg','/images/games/JarofMarbles/JarofMarbles320x240.jpg','false','/images/games/thumbnails_med_2/JarofMarbles130x75.gif','/exe/Jar_of_Marbles_85444992-setup.exe?lc=en&ext=Jar_of_Marbles_85444992-setup.exe','Drag and Drop Match-3 Puzzler!','Make marbles vanish from a jar in a drag and drop match-3 puzzler!','false',false,false,'Jar of Marbles');ag(119985613,'Super Granny 6','/images/games/SuperGranny6/SuperGranny681x46.gif',0,120054143,'','false','/images/games/SuperGranny6/SuperGranny616x16.gif',false,11323,'/images/games/SuperGranny6/SuperGranny6100x75.jpg','/images/games/SuperGranny6/SuperGranny6179x135.jpg','/images/games/SuperGranny6/SuperGranny6320x240.jpg','false','/images/games/thumbnails_med_2/SuperGranny6130x75.gif','/exe/supergranny6_39843783-setup.exe?lc=en&ext=supergranny6_39843783-setup.exe','Super Granny Returns to Rescue her Kitty!','Super Granny returns to rescue her kitty from a dangerous underground world!','false',false,false,'Super Granny 6');ag(119987280,'Spirit Season Little Ghost Story','/images/games/SpiritSeasonsLittleGhostStory/SpiritSeasonsLittleGhostStory81x46.gif',1100710,120056893,'','false','/images/games/SpiritSeasonsLittleGhostStory/SpiritSeasonsLittleGhostStory16x16.gif',false,11323,'/images/games/SpiritSeasonsLittleGhostStory/SpiritSeasonsLittleGhostStory100x75.jpg','/images/games/SpiritSeasonsLittleGhostStory/SpiritSeasonsLittleGhostStory179x135.jpg','/images/games/SpiritSeasonsLittleGhostStory/SpiritSeasonsLittleGhostStory320x240.jpg','false','/images/games/thumbnails_med_2/SpiritSeasonsLittleGhostStory130x75.gif','/exe/Spirit_Seasons_Little_Ghost_Story_85454812-setup.exe?lc=en&ext=Spirit_Seasons_Little_Ghost_Story_85454812-setup.exe','Explore the Blindhill Place Manor!','Explore the Blindhill Place manor and meet the ghost of Agatha!','false',false,false,'Spirit Seasons Little Ghost St');ag(119988867,'Fear for Sale: Mystery of McInroy Manor','/images/games/FearForSale/FearForSale81x46.gif',1100710,120057150,'','false','/images/games/FearForSale/FearForSale16x16.gif',false,11323,'/images/games/FearForSale/FearForSale100x75.jpg','/images/games/FearForSale/FearForSale179x135.jpg','/images/games/FearForSale/FearForSale320x240.jpg','false','/images/games/thumbnails_med_2/FearForSale130x75.gif','/exe/fear_for_sale_65464845-setup.exe?lc=en&ext=fear_for_sale_65464845-setup.exe','Explore the Haunted McInroy Estate!','Help Emma Roberts write a story about the haunted McInroy estate!','false',false,false,'Fear For Sale');ag(119989927,'Cave Quest','/images/games/cave_quest/cave_quest81x46.gif',1007,120058533,'','false','/images/games/cave_quest/cave_quest16x16.gif',false,11323,'/images/games/cave_quest/cave_quest100x75.jpg','/images/games/cave_quest/cave_quest179x135.jpg','/images/games/cave_quest/cave_quest320x240.jpg','false','/images/games/thumbnails_med_2/cave_quest130x75.gif','/exe/cave_quest_55312069-setup.exe?lc=en&ext=cave_quest_55312069-setup.exe','Stop the Scheming Ghost King!','Unravel the mystery of the Ghost King and save your family!','false',false,false,'Cave Quest');ag(119990667,'Wild West Story: The Beginnings','/images/games/WildWestStory/WildWestStory81x46.gif',1007,120059230,'','false','/images/games/WildWestStory/WildWestStory16x16.gif',false,11323,'/images/games/WildWestStory/WildWestStory100x75.jpg','/images/games/WildWestStory/WildWestStory179x135.jpg','/images/games/WildWestStory/WildWestStory320x240.jpg','false','/images/games/thumbnails_med_2/WildWestStory130x75.gif','/exe/WildWestStory_56454812-setup.exe?lc=en&ext=WildWestStory_56454812-setup.exe','Rebuild Bella&rsquo;s Rugged, Western Hometown!','Rebuild Bella and Coyote Cub&rsquo;s rugged hometown with your match-making abilities!','false',false,false,'Wild West Story');ag(119991580,'Dracula Series - The Path of the Dragon - Part 1','/images/games/DraculaSeriesPart1StrangeCase/DraculaSeriesPart1StrangeCase81x46.gif',0,120060203,'','false','/images/games/DraculaSeriesPart1StrangeCase/DraculaSeriesPart1StrangeCase16x16.gif',false,11323,'/images/games/DraculaSeriesPart1StrangeCase/DraculaSeriesPart1StrangeCase100x75.jpg','/images/games/DraculaSeriesPart1StrangeCase/DraculaSeriesPart1StrangeCase179x135.jpg','/images/games/DraculaSeriesPart1StrangeCase/DraculaSeriesPart1StrangeCase320x240.jpg','false','/images/games/thumbnails_med_2/DraculaSeriesPart1StrangeCase130x75.gif','/exe/draculaseriespart1strangecase_65124764-setup.exe?lc=en&ext=draculaseriespart1strangecase_65124764-setup.exe','Investigate the Truth Behind Dracula!','Investigate the truth about vampires and the legend of Dracula!','false',false,false,'Dracula Series Part 1');ag(119994603,'Garden Dash','/images/games/GardenDash/GardenDash81x46.gif',110127790,120063583,'','false','/images/games/GardenDash/GardenDash16x16.gif',false,11323,'/images/games/GardenDash/GardenDash100x75.jpg','/images/games/GardenDash/GardenDash179x135.jpg','/images/games/GardenDash/GardenDash320x240.jpg','false','/images/games/thumbnails_med_2/GardenDash130x75.gif','/exe/gardendash_85317488-setup.exe?lc=en&ext=gardendash_85317488-setup.exe','Barb Builds a Gardening Business!','Care for quirky plants and grow produce in Barb&rsquo;s gardening business!','false',false,false,'Garden Dash');ag(119995287,'Cake Mania Delicious Duo Bundle','/images/games/CakeManiaDeliciousDuoBundle/CakeManiaDeliciousDuoBundle81x46.gif',110127790,120064690,'','false','/images/games/CakeManiaDeliciousDuoBundle/CakeManiaDeliciousDuoBundle16x16.gif',false,11323,'/images/games/CakeManiaDeliciousDuoBundle/CakeManiaDeliciousDuoBundle100x75.jpg','/images/games/CakeManiaDeliciousDuoBundle/CakeManiaDeliciousDuoBundle179x135.jpg','/images/games/CakeManiaDeliciousDuoBundle/CakeManiaDeliciousDuoBundle320x240.jpg','false','/images/games/thumbnails_med_2/CakeManiaDeliciousDuoBundle130x75.gif','/exe/cake_mania_delicious_duo_bundle_68454325-setup.exe?lc=en&ext=cake_mania_delicious_duo_bundle_68454325-setup.exe','Ultimate bakery 2-in-1 bundle!','Bake, decorate, and serve endless sweet treats in the ultimate bakery 2-in-1 bundle!','false',false,false,'Cake Mania Delicious Duo Bundl');ag(119997550,'Vesuvia','/images/games/vesuvia/vesuvia81x46.gif',110015873,120066530,'a83e81bd-eb2d-4174-841c-b35dd97bdd4d','false','/images/games/vesuvia/vesuvia16x16.gif',false,11323,'/images/games/vesuvia/vesuvia100x75.jpg','/images/games/vesuvia/vesuvia179x135.jpg','/images/games/vesuvia/vesuvia320x240.jpg','false','/images/games/thumbnails_med_2/vesuvia130x75.gif','','Uncover the secrets…to escape','Only you hold the key to finding a way out!','true',false,false,'Vesuvia OL');ag(119998590,'Letters from Nowhere 2','/images/games/LettersfromNowhere2/LettersfromNowhere281x46.gif',1100710,120067100,'','false','/images/games/LettersfromNowhere2/LettersfromNowhere216x16.gif',false,11323,'/images/games/LettersfromNowhere2/LettersfromNowhere2100x75.jpg','/images/games/LettersfromNowhere2/LettersfromNowhere2179x135.jpg','/images/games/LettersfromNowhere2/LettersfromNowhere2320x240.jpg','false','/images/games/thumbnails_med_2/LettersfromNowhere2130x75.gif','/exe/lettersfromnowhere2_52100084-setup.exe?lc=en&ext=lettersfromnowhere2_52100084-setup.exe','Collect cryptic clues to find Patrick!','Collect cryptic clues to solve the mystery of Patrick&rsquo;s disappearance!','false',false,false,'Letters from Nowhere 2');ag(120000957,'Cake Shop 3','/images/games/CakeShop3/CakeShop381x46.gif',110127790,120069540,'','false','/images/games/CakeShop3/CakeShop316x16.gif',false,11323,'/images/games/CakeShop3/CakeShop3100x75.jpg','/images/games/CakeShop3/CakeShop3179x135.jpg','/images/games/CakeShop3/CakeShop3320x240.jpg','false','/images/games/thumbnails_med_2/CakeShop3130x75.gif','/exe/cakeshop3_74156121-setup.exe?lc=en&ext=cakeshop3_74156121-setup.exe','Open Shops Around the World!','Open shops around the world to expand your cake empire!','false',false,false,'Cake Shop 3');ag(120001307,'Crossworlds: The Flying City','/images/games/CrossWorldsTheFlyingCity/CrossWorldsTheFlyingCity81x46.gif',0,120070880,'','false','/images/games/CrossWorldsTheFlyingCity/CrossWorldsTheFlyingCity16x16.gif',false,11323,'/images/games/CrossWorldsTheFlyingCity/CrossWorldsTheFlyingCity100x75.jpg','/images/games/CrossWorldsTheFlyingCity/CrossWorldsTheFlyingCity179x135.jpg','/images/games/CrossWorldsTheFlyingCity/CrossWorldsTheFlyingCity320x240.jpg','false','/images/games/thumbnails_med_2/CrossWorldsTheFlyingCity130x75.gif','/exe/crossworldstheflyingcity_68769544-setup.exe?lc=en&ext=crossworldstheflyingcity_68769544-setup.exe','Save Monika&rsquo;s Father From Parallel Worlds!','Travel through unimaginable parallel worlds to save Monika’s father!','false',false,false,'Cross Worlds The Flying City');ag(120002973,'Club Paradise','/images/games/ClubParadise/ClubParadise81x46.gif',110127790,120071543,'','false','/images/games/ClubParadise/ClubParadise16x16.gif',false,11323,'/images/games/ClubParadise/ClubParadise100x75.jpg','/images/games/ClubParadise/ClubParadise179x135.jpg','/images/games/ClubParadise/ClubParadise320x240.jpg','false','/images/games/thumbnails_med_2/ClubParadise130x75.gif','/exe/clubparadise_45451305-setup.exe?lc=en&ext=clubparadise_45451305-setup.exe','Climb the Ranks of Club Paradise!','Help Summer start her new job and climb the ranks of Club Paradise!','false',false,false,'Club Paradise');ag(120003583,'Fruits Inc','/images/games/FruitsInc/FruitsInc81x46.gif',110127790,120072197,'','false','/images/games/FruitsInc/FruitsInc16x16.gif',false,11323,'/images/games/FruitsInc/FruitsInc100x75.jpg','/images/games/FruitsInc/FruitsInc179x135.jpg','/images/games/FruitsInc/FruitsInc320x240.jpg','false','/images/games/thumbnails_med_2/FruitsInc130x75.gif','/exe/fruitsinc_65123588-setup.exe?lc=en&ext=fruitsinc_65123588-setup.exe','Build Brooke’s Fruit Empire!','Help Brooke turn a small family farm into a fruit empire!','false',false,false,'Fruits Inc');ag(120006190,'The Curse of the Ring','/images/games/TheCurseoftheRing/TheCurseoftheRing81x46.gif',1100710,120075663,'','false','/images/games/TheCurseoftheRing/TheCurseoftheRing16x16.gif',false,11323,'/images/games/TheCurseoftheRing/TheCurseoftheRing100x75.jpg','/images/games/TheCurseoftheRing/TheCurseoftheRing179x135.jpg','/images/games/TheCurseoftheRing/TheCurseoftheRing320x240.jpg','false','/images/games/thumbnails_med_2/TheCurseoftheRing130x75.gif','/exe/the_curse_of_the_ring_55450559-setup.exe?lc=en&ext=the_curse_of_the_ring_55450559-setup.exe','Find Stolen Treasures in Barbados!','After trying on a cursed ring you must find stolen treasures in Barbados!','false',false,false,'The Curse of the Ring');ag(120008237,'Death at Fairing Point','/images/games/DeathatFairingPoint/DeathatFairingPoint81x46.gif',1100710,120077793,'','false','/images/games/DeathatFairingPoint/DeathatFairingPoint16x16.gif',false,11323,'/images/games/DeathatFairingPoint/DeathatFairingPoint100x75.jpg','/images/games/DeathatFairingPoint/DeathatFairingPoint179x135.jpg','/images/games/DeathatFairingPoint/DeathatFairingPoint320x240.jpg','false','/images/games/thumbnails_med_2/DeathatFairingPoint130x75.gif','/exe/deathatfairingpoint_44353458-setup.exe?lc=en&ext=deathatfairingpoint_44353458-setup.exe','Solve a 19th-century Murder Mystery!','Solve a 19th-century murder after being haunted by a heartbroken ghost!','false',false,false,'Death at Fairing Point');ag(120009300,'Legend of Fae','/images/games/LegendofFae/LegendofFae81x46.gif',1007,120078870,'','false','/images/games/LegendofFae/LegendofFae16x16.gif',false,11323,'/images/games/LegendofFae/LegendofFae100x75.jpg','/images/games/LegendofFae/LegendofFae179x135.jpg','/images/games/LegendofFae/LegendofFae320x240.jpg','false','/images/games/thumbnails_med_2/LegendofFae130x75.gif','/exe/legendoffae_54568852-setup.exe?lc=en&ext=legendoffae_54568852-setup.exe','Uncover the Secret Behind the Fae!','Uncover the secrets behind the mysterious Fae creatures and the Faery Gates!','false',false,false,'Legend of Fae');ag(120010347,'Roads of Rome','/images/games/RoadsOfRome/RoadsOfRome81x46.gif',110083820,120079317,'3169feb7-2807-4151-9a1c-33f900cbabe7','false','/images/games/RoadsOfRome/RoadsOfRome16x16.gif',false,11323,'/images/games/RoadsOfRome/RoadsOfRome100x75.jpg','/images/games/RoadsOfRome/RoadsOfRome179x135.jpg','/images/games/RoadsOfRome/RoadsOfRome320x240.jpg','false','/images/games/thumbnails_med_2/RoadsOfRome130x75.gif','','Lead Victorius Through Caeesar’s Daunting Tasks!','Lead Victorius to his bride in Rome by completing Caesar’s daunting tasks!','true',false,false,'Roads Of Rome OL AS3');ag(120011487,'Farm Mania 2','/images/games/FarmMania2/FarmMania281x46.gif',110083820,120080450,'9514460a-d31e-4e4c-b3ad-eb013fbf3d40','false','/images/games/FarmMania2/FarmMania216x16.gif',false,11323,'/images/games/FarmMania2/FarmMania2100x75.jpg','/images/games/FarmMania2/FarmMania2179x135.jpg','/images/games/FarmMania2/FarmMania2320x240.jpg','false','/images/games/thumbnails_med_2/FarmMania2130x75.gif','','Anna Returns for More Farming Fun!','Anna returns for more farming fun with her charming husband Bob!','true',false,false,'Farm Mania 2 OL');ag(120012840,'Bistro Boulevard','/images/games/BistroBoulevard/BistroBoulevard81x46.gif',0,120081430,'','false','/images/games/BistroBoulevard/BistroBoulevard16x16.gif',false,11323,'/images/games/BistroBoulevard/BistroBoulevard100x75.jpg','/images/games/BistroBoulevard/BistroBoulevard179x135.jpg','/images/games/BistroBoulevard/BistroBoulevard320x240.jpg','false','/images/games/thumbnails_med_2/BistroBoulevard130x75.gif','/exe/bistroboulevard_84481255-setup.exe?lc=en&ext=bistroboulevard_84481255-setup.exe','Build your own five-star restaurant!','Turn a modest diner into a promenade of five-star restaurants!','false',false,false,'Bistro Boulevard');ag(120013790,'The Treasures of Mystery Island: The Ghost Ship','/images/games/TheTreasuresOfMysteryIsland3/TheTreasuresOfMysteryIsland381x46.gif',1100710,120082307,'','false','/images/games/TheTreasuresOfMysteryIsland3/TheTreasuresOfMysteryIsland316x16.gif',false,11323,'/images/games/TheTreasuresOfMysteryIsland3/TheTreasuresOfMysteryIsland3100x75.jpg','/images/games/TheTreasuresOfMysteryIsland3/TheTreasuresOfMysteryIsland3179x135.jpg','/images/games/TheTreasuresOfMysteryIsland3/TheTreasuresOfMysteryIsland3320x240.jpg','false','/images/games/thumbnails_med_2/TheTreasuresOfMysteryIsland3130x75.gif','/exe/thetreasuresofmysteryisland3_52151311-setup.exe?lc=en&ext=thetreasuresofmysteryisland3_52151311-setup.exe','Save the Souls of Shipwrecked Ghosts!','Collect hidden objects to save the souls of shipwrecked ghosts!','false',false,false,'Treasures Of Mystery Island 3');ag(120015257,'Dracula Series - The Path of the Dragon - Part 2','/images/games/DraculaSeriesPart2TheMyth/DraculaSeriesPart2TheMyth81x46.gif',0,120084617,'','false','/images/games/DraculaSeriesPart2TheMyth/DraculaSeriesPart2TheMyth16x16.gif',false,11323,'/images/games/DraculaSeriesPart2TheMyth/DraculaSeriesPart2TheMyth100x75.jpg','/images/games/DraculaSeriesPart2TheMyth/DraculaSeriesPart2TheMyth179x135.jpg','/images/games/DraculaSeriesPart2TheMyth/DraculaSeriesPart2TheMyth320x240.jpg','false','/images/games/thumbnails_med_2/DraculaSeriesPart2TheMyth130x75.gif','/exe/draculaseriespart2themyth_87144485-setup.exe?lc=en&ext=draculaseriespart2themyth_87144485-setup.exe','Investigate the Dark Forces of Dracula!','Investigate the mysterious, dark forces of Dracula alongside Father Arno!','false',false,false,'Dracula Series Part 2 The Myth');ag(120016470,'Dracula Series - The Path of the Dragon - Part 3','/images/games/DraculaSeriesPart3Destruction/DraculaSeriesPart3Destruction81x46.gif',0,120085907,'','false','/images/games/DraculaSeriesPart3Destruction/DraculaSeriesPart3Destruction16x16.gif',false,11323,'/images/games/DraculaSeriesPart3Destruction/DraculaSeriesPart3Destruction100x75.jpg','/images/games/DraculaSeriesPart3Destruction/DraculaSeriesPart3Destruction179x135.jpg','/images/games/DraculaSeriesPart3Destruction/DraculaSeriesPart3Destruction320x240.jpg','false','/images/games/thumbnails_med_2/DraculaSeriesPart3Destruction130x75.gif','/exe/draculaseriespart3destruction_65844345-setup.exe?lc=en&ext=draculaseriespart3destruction_65844345-setup.exe','Find and Destroy the Ultimate Evil!','Follow the Path of the Dragon to face and destroy Dracula!','false',false,false,'Dracula Series Part 3 Destruct');ag(120017373,'Lost Continent 2 in 1 Pack','/images/games/Lost_Continent_2in1_Pack/Lost_Continent_2in1_Pack81x46.gif',1007,120086977,'','false','/images/games/Lost_Continent_2in1_Pack/Lost_Continent_2in1_Pack16x16.gif',false,11323,'/images/games/Lost_Continent_2in1_Pack/Lost_Continent_2in1_Pack100x75.jpg','/images/games/Lost_Continent_2in1_Pack/Lost_Continent_2in1_Pack179x135.jpg','/images/games/Lost_Continent_2in1_Pack/Lost_Continent_2in1_Pack320x240.jpg','false','/images/games/thumbnails_med_2/Lost_Continent_2in1_Pack130x75.gif','/exe/lostcontinent2in1pack_857594859-setup.exe?lc=en&ext=lostcontinent2in1pack_857594859-setup.exe','Journey to Atlantis - two games in one!','Embark on two fascinating journeys to the mysterious Atlantis!','false',false,false,'lostcontinent2in1pack_microsof');ag(120018707,'Rescue Team','/images/games/RescueTeam/RescueTeam81x46.gif',1007,120087257,'','false','/images/games/RescueTeam/RescueTeam16x16.gif',false,11323,'/images/games/RescueTeam/RescueTeam100x75.jpg','/images/games/RescueTeam/RescueTeam179x135.jpg','/images/games/RescueTeam/RescueTeam320x240.jpg','false','/images/games/thumbnails_med_2/RescueTeam130x75.gif','/exe/rescueteam_45421155-setup.exe?lc=en&ext=rescueteam_45421155-setup.exe','Rebuild three storm-ravaged islands!','Remove debris, repair construction, and rebuild three islands in a point-and-click time management!','false',false,false,'rescueteam_microsoftvistaxp_en');ag(120023470,'Millennium','/images/games/MillenniumANewHope/MillenniumANewHope81x46.gif',0,120092997,'','false','/images/games/MillenniumANewHope/MillenniumANewHope16x16.gif',false,11323,'/images/games/MillenniumANewHope/MillenniumANewHope100x75.jpg','/images/games/MillenniumANewHope/MillenniumANewHope179x135.jpg','/images/games/MillenniumANewHope/MillenniumANewHope320x240.jpg','false','/images/games/thumbnails_med_2/MillenniumANewHope130x75.gif','/exe/millenniumanewhope_51324851-setup.exe?lc=en&ext=millenniumanewhope_51324851-setup.exe','Lead a rebellion in the land of Myst!','Lead a young girl and her warriors in the land of Myst!','false',false,false,'millenniumanewhope_microsoftvi');ag(120024410,'Romme','/images/games/romme/romme81x46.gif',110083820,12009337,'8266e96e-4d03-48c6-af7a-82d7479b3166','false','/images/games/romme/romme16x16.gif',false,11323,'/images/games/romme/romme100x75.jpg','/images/games/romme/romme179x135.jpg','/images/games/romme/romme320x240.jpg','false','/images/games/romme/blank_romme130x75.gif','','Lay down your cards!','Rommé is a card game for up to 4 players.','true',true,true,'Romme OLT1 AS3');ag(120025890,'Dirty Larry','/images/games/DirtyLarry/DirtyLarry81x46.gif',110083820,120094540,'ebeac5c4-ad0d-4ce2-aa8c-36938a767215','false','/images/games/DirtyLarry/DirtyLarry16x16.gif',false,11323,'/images/games/DirtyLarry/DirtyLarry100x75.jpg','/images/games/DirtyLarry/DirtyLarry179x135.jpg','/images/games/DirtyLarry/DirtyLarry320x240.jpg','false','/images/games/thumbnails_med_2/DirtyLarry130x75.gif','','Save Larry!','Navigate Larry, the worm, through his maze of underground tunnels.','true',true,true,'Dirty Larry OLT1 AS3');ag(120030777,'Firefly','/images/games/FireFly/FireFly81x46.gif',110083820,120099220,'8cf3a266-fc9f-4955-a1e9-8d734daeca80','false','/images/games/FireFly/FireFly16x16.gif',false,11323,'/images/games/FireFly/FireFly100x75.jpg','/images/games/FireFly/FireFly179x135.jpg','/images/games/FireFly/FireFly320x240.jpg','false','/images/games/thumbnails_med_2/FireFly130x75.gif','','Experience the Fly of Firefly!','Experience the Fly of Firefly!','true',false,false,'Firefly OL AS3');ag(120040840,'Tuber versus the Aliens','/images/games/Tuber_vs_TheAliens/Tuber_vs_TheAliens81x46.gif',1007,120109440,'','false','/images/games/Tuber_vs_TheAliens/Tuber_vs_TheAliens16x16.gif',false,11323,'/images/games/Tuber_vs_TheAliens/Tuber_vs_TheAliens100x75.jpg','/images/games/Tuber_vs_TheAliens/Tuber_vs_TheAliens179x135.jpg','/images/games/Tuber_vs_TheAliens/Tuber_vs_TheAliens320x240.jpg','false','/images/games/thumbnails_med_2/Tuber_vs_TheAliens130x75.gif','/exe/tuberversusthealiens_56562059-setup.exe?lc=en&ext=tuberversusthealiens_56562059-setup.exe','Destroy aliens and save the world!','Destroy aliens and save the world in this strategic puzzle adventure!','false',false,false,'tuberversusthealiens_microsoft');ag(120057783,'Amelie&rsquo;s Café 2','/images/games/AmeliesCafeSummerTime/AmeliesCafeSummerTime81x46.gif',110127790,120126360,'','false','/images/games/AmeliesCafeSummerTime/AmeliesCafeSummerTime16x16.gif',false,11323,'/images/games/AmeliesCafeSummerTime/AmeliesCafeSummerTime100x75.jpg','/images/games/AmeliesCafeSummerTime/AmeliesCafeSummerTime179x135.jpg','/images/games/AmeliesCafeSummerTime/AmeliesCafeSummerTime320x240.jpg','false','/images/games/thumbnails_med_2/AmeliesCafeSummerTime130x75.gif','/exe/amelies_cafe_summer_time_86445410-setup.exe?lc=en&ext=amelies_cafe_summer_time_86445410-setup.exe','Manage Amelie&rsquo;s new tropical island café!','Cater to a variety of guests at Amelie&rsquo;s new, tropical café!','false',false,false,'ameliescafesummertime_microsof');ag(120062600,'Jewelry Secret: Mystery Stones','/images/games/JewelrySecret/JewelrySecret81x46.gif',1100710,120131873,'','false','/images/games/JewelrySecret/JewelrySecret16x16.gif',false,11323,'/images/games/JewelrySecret/JewelrySecret100x75.jpg','/images/games/JewelrySecret/JewelrySecret179x135.jpg','/images/games/JewelrySecret/JewelrySecret320x240.jpg','false','/images/games/thumbnails_med_2/JewelrySecret130x75.gif','/exe/jewelrysecret_54542015-setup.exe?lc=en&ext=jewelrysecret_54542015-setup.exe','Help Emily travel through time!','Help Emily travel across epic eras throughout time and return home!','false',false,false,'jewelrysecret_microsoftvistaxp');ag(120089933,'Mystery Novel','/images/games/MysteryNovel/MysteryNovel81x46.gif',1100710,120158437,'','false','/images/games/MysteryNovel/MysteryNovel16x16.gif',false,11323,'/images/games/MysteryNovel/MysteryNovel100x75.jpg','/images/games/MysteryNovel/MysteryNovel179x135.jpg','/images/games/MysteryNovel/MysteryNovel320x240.jpg','false','/images/games/thumbnails_med_2/MysteryNovel130x75.gif','/exe/mystery_novel_54512102-setup.exe?lc=en&ext=mystery_novel_54512102-setup.exe','Investigate a mysterious prison fire!','Lead Michael Jennings\'s investigation of a mysterious prison fire!','false',false,false,'mysterynovel_microsoftvistaxp_');ag(120268867,'Lilith - A friend at Hallows Eve','/images/games/LilithAFriendAtHallowsEve/LilithAFriendAtHallowsEve81x46.gif',110015873,120337447,'5c1c1af0-d36a-49de-b27f-1d724a555e5c','false','/images/games/LilithAFriendAtHallowsEve/LilithAFriendAtHallowsEve16x16.gif',false,11323,'/images/games/LilithAFriendAtHallowsEve/LilithAFriendAtHallowsEve100x75.jpg','/images/games/LilithAFriendAtHallowsEve/LilithAFriendAtHallowsEve179x135.jpg','/images/games/LilithAFriendAtHallowsEve/LilithAFriendAtHallowsEve320x240.jpg','false','/images/games/thumbnails_med_2/LilithAFriendAtHallowsEve130x75.gif','','A Halloween spot the difference adventure!','A Halloween spot the difference adventure! Join Lilith in the companion adventure to Emma’s Halloween.','true',false,false,'Lilith A Friend At Hallows Eve');ag(120270603,'Emma - A Friend At Hallows Eve','/images/games/EmmaAFriendAtHallowsEve/EmmaAFriendAtHallowsEve81x46.gif',110015873,120339300,'5291a05b-10b0-454a-a0fb-76e18bb5f5d7','false','/images/games/EmmaAFriendAtHallowsEve/EmmaAFriendAtHallowsEve16x16.gif',false,11323,'/images/games/EmmaAFriendAtHallowsEve/EmmaAFriendAtHallowsEve100x75.jpg','/images/games/EmmaAFriendAtHallowsEve/EmmaAFriendAtHallowsEve179x135.jpg','/images/games/EmmaAFriendAtHallowsEve/EmmaAFriendAtHallowsEve320x240.jpg','false','/images/games/thumbnails_med_2/EmmaAFriendAtHallowsEve130x75.gif','','A Halloween Spot the Difference Adventure!','A Halloween Spot the Difference Adventure! Join Emma for a night of trick-or-treating as she meets a new friend named Lilith.','true',false,false,'Emma A Friend At Hallows Eve O');ag(120271940,'Generous Christmas','/images/games/GenerousChristmas/GenerousChristmas81x46.gif',110015873,120340573,'c0db80db-a48a-47f6-a0ba-b5b222f4d7ba','false','/images/games/GenerousChristmas/GenerousChristmas16x16.gif',false,11323,'/images/games/GenerousChristmas/GenerousChristmas100x75.jpg','/images/games/GenerousChristmas/GenerousChristmas179x135.jpg','/images/games/GenerousChristmas/GenerousChristmas320x240.jpg','false','/images/games/thumbnails_med_2/GenerousChristmas130x75.gif','','Cute and easy Christmas match-3 game','We all become children when Christmas Day comes. We expect something, some magic, wonder.','true',false,false,'Generous Christmas OL AS3');ag(120272343,'Halloween Jack','/images/games/halloweenjack/halloweenjack81x46.gif',110015873,120341997,'9e4ef42a-b618-461d-a772-ced4c793c748','false','/images/games/halloweenjack/halloweenjack16x16.gif',false,11323,'/images/games/halloweenjack/halloweenjack100x75.jpg','/images/games/halloweenjack/halloweenjack179x135.jpg','/images/games/halloweenjack/halloweenjack320x240.jpg','false','/images/games/thumbnails_med_2/halloweenjack130x75.gif','','Spot the Difference!','Spot the Difference! Help Jack defeat the monster and enjoy your candy!','true',false,false,'Halloween Jack OL AS3');ag(510005094,'Spring Bonus','/images/games/SpringBonusPC/SpringBonusPC81x46.gif',1007,1000000013,'','false','/images/games/SpringBonusPC/SpringBonusPC16x16.gif',false,11323,'/images/games/SpringBonusPC/SpringBonusPC100x75.jpg','/images/games/SpringBonusPC/SpringBonusPC179x135.jpg','/images/games/SpringBonusPC/SpringBonusPC320x240.jpg','false','/images/games/thumbnails_med_2/SpringBonusPC130x75.gif','/exe/springbonus_microsoftvistaxp_en-setup.exe?lc=en&ext=springbonus_microsoftvistaxp_en-setup.exe','Bring in Spring with the Easter Bunny!','Bring in Spring with the Easter Bunny in this adorable match-3 adventure!','false',false,false,'springbonus_microsoftvistaxp_e');ag(510005117,'Teddy`s Playground','/images/games/ABCCubesTeddysPlayground/ABCCubesTeddysPlayground81x46.gif',110015873,1000000009,'','false','/images/games/ABCCubesTeddysPlayground/ABCCubesTeddysPlayground16x16.gif',false,11323,'/images/games/ABCCubesTeddysPlayground/ABCCubesTeddysPlayground100x75.jpg','/images/games/ABCCubesTeddysPlayground/ABCCubesTeddysPlayground179x135.jpg','/images/games/ABCCubesTeddysPlayground/ABCCubesTeddysPlayground320x240.jpg','false','/images/games/thumbnails_med_2/ABCCubesTeddysPlayground130x75.gif','/exe/abccubesteddysplayground_85455622-setup.exe?lc=en&ext=abccubesteddysplayground_85455622-setup.exe','Help Teddy collect ABC cubes!','Help Teddy collect ABC cubes and clean up the Appleberry home!','false',false,false,'abccubesteddysplayground_micro');ag(510005122,'20.000 Leagues Under the Sea - ExtdEd','/images/games/20000LeaguesUnderTheSeaExtdEd/20000LeaguesUnderTheSeaExtdEd81x46.gif',1100710,1000000011,'','false','/images/games/20000LeaguesUnderTheSeaExtdEd/20000LeaguesUnderTheSeaExtdEd16x16.gif',false,11323,'/images/games/20000LeaguesUnderTheSeaExtdEd/20000LeaguesUnderTheSeaExtdEd100x75.jpg','/images/games/20000LeaguesUnderTheSeaExtdEd/20000LeaguesUnderTheSeaExtdEd179x135.jpg','/images/games/20000LeaguesUnderTheSeaExtdEd/20000LeaguesUnderTheSeaExtdEd320x240.jpg','false','/images/games/thumbnails_med_2/20000LeaguesUnderTheSeaExtdEd130x75.gif','/exe/20000leaguesunderthesea_45421544-setup.exe?lc=en&ext=20000leaguesunderthesea_45421544-setup.exe','Escape from the nautilus submarine!','Help Captain Nemo’s three captives escape from the Nautilus submarine!','false',false,false,'20000leaguesundertheseaextded_');ag(510005124,'Royal Challenge Solitaire','/images/games/RoyalChallengeSolitaire/RoyalChallengeSolitaire81x46.gif',1004,1000000034,'','false','/images/games/RoyalChallengeSolitaire/RoyalChallengeSolitaire16x16.gif',false,11323,'/images/games/RoyalChallengeSolitaire/RoyalChallengeSolitaire100x75.jpg','/images/games/RoyalChallengeSolitaire/RoyalChallengeSolitaire179x135.jpg','/images/games/RoyalChallengeSolitaire/RoyalChallengeSolitaire320x240.jpg','false','/images/games/thumbnails_med_2/RoyalChallengeSolitaire130x75.gif','/exe/royalchallengesolitaire_544505884-setup.exe?lc=en&ext=royalchallengesolitaire_544505884-setup.exe','Unique and addictive solitaire gaming!','One hundred unique levels of fast, addictive solitaire gaming!','false',false,false,'royalchallengesolitaire_micros');ag(510005133,'Antique Road Trip 2','/images/games/AntiqueRoadTrip2Homecoming/AntiqueRoadTrip2Homecoming81x46.gif',1100710,1000000102,'','false','/images/games/AntiqueRoadTrip2Homecoming/AntiqueRoadTrip2Homecoming16x16.gif',false,11323,'/images/games/AntiqueRoadTrip2Homecoming/AntiqueRoadTrip2Homecoming100x75.jpg','/images/games/AntiqueRoadTrip2Homecoming/AntiqueRoadTrip2Homecoming179x135.jpg','/images/games/AntiqueRoadTrip2Homecoming/AntiqueRoadTrip2Homecoming320x240.jpg','false','/images/games/thumbnails_med_2/AntiqueRoadTrip2Homecoming130x75.gif','/exe/antiqueroadtrip2homecoming_52154488-setup.exe?lc=en&ext=antiqueroadtrip2homecoming_52154488-setup.exe','Open up another antiques shop!','Join James and Grace as they vacation - and open a new shop!','false',false,false,'antiqueroadtrip2homecoming_mic');ag(510005139,'Match 3 Pack - 4-in-1','/images/games/Match3Pack4in1/Match3Pack4in181x46.gif',1007,1000000163,'','false','/images/games/Match3Pack4in1/Match3Pack4in116x16.gif',false,11323,'/images/games/Match3Pack4in1/Match3Pack4in1100x75.jpg','/images/games/Match3Pack4in1/Match3Pack4in1179x135.jpg','/images/games/Match3Pack4in1/Match3Pack4in1320x240.jpg','false','/images/games/thumbnails_med_2/Match3Pack4in1130x75.gif','/exe/match3pack4in1_97586594-setup.exe?lc=en&ext=match3pack4in1_97586594-setup.exe','Four exotic match-3 adventures!','Four exotic adventures of match-3 puzzles in one easy download!','false',false,false,'match3pack4in1_microsoftvistax');ag(510005143,'Mummy`s Treasure','/images/games/MummysTreasure/MummysTreasure81x46.gif',1007,1000000053,'','false','/images/games/MummysTreasure/MummysTreasure16x16.gif',false,11323,'/images/games/MummysTreasure/MummysTreasure100x75.jpg','/images/games/MummysTreasure/MummysTreasure179x135.jpg','/images/games/MummysTreasure/MummysTreasure320x240.jpg','false','/images/games/thumbnails_med_2/MummysTreasure130x75.gif','/exe/mummystreasure_58412544-setup.exe?lc=en&ext=mummystreasure_58412544-setup.exe','A puzzling pyramid adventure!','Venture into the mummy’s lair, solving puzzles and collecting treasure!','false',false,false,'mummystreasure_microsoftvistax');ag(510005144,'LUXOR HD','/images/games/luxorhd/luxorhd81x46.gif',1007,1000000120,'','false','/images/games/luxorhd/luxorhd16x16.gif',false,11323,'/images/games/luxorhd/luxorhd100x75.jpg','/images/games/luxorhd/luxorhd179x135.jpg','/images/games/luxorhd/luxorhd320x240.jpg','false','/images/games/thumbnails_med_2/luxorhd130x75.gif','/exe/luxorhighdef_84545882-setup.exe?lc=en&ext=luxorhighdef_84545882-setup.exe','Experience LUXOR like never before!','Experience LUXOR like never before with high def marble shooting!','false',false,false,'luxorhighdef_microsoftvistaxp_');ag(510005150,'Snark Busters 2','/images/games/SnarkBusters2AllRevvedUp/SnarkBusters2AllRevvedUp81x46.gif',1100710,1000000138,'','false','/images/games/SnarkBusters2AllRevvedUp/SnarkBusters2AllRevvedUp16x16.gif',false,11323,'/images/games/SnarkBusters2AllRevvedUp/SnarkBusters2AllRevvedUp100x75.jpg','/images/games/SnarkBusters2AllRevvedUp/SnarkBusters2AllRevvedUp179x135.jpg','/images/games/SnarkBusters2AllRevvedUp/SnarkBusters2AllRevvedUp320x240.jpg','false','/images/games/thumbnails_med_2/SnarkBusters2AllRevvedUp130x75.gif','/exe/snark_busters_2_24854221-setup.exe?lc=en&ext=snark_busters_2_24854221-setup.exe','The Snark is back!','The Snark is back and as elusive as ever - can you catch it?','false',false,false,'snarkbusters2allrevvedup_micro');ag(510005160,'Land Grabbers','/images/games/LandGrabbers/LandGrabbers81x46.gif',0,1000000124,'','false','/images/games/LandGrabbers/LandGrabbers16x16.gif',false,11323,'/images/games/LandGrabbers/LandGrabbers100x75.jpg','/images/games/LandGrabbers/LandGrabbers179x135.jpg','/images/games/LandGrabbers/LandGrabbers320x240.jpg','false','/images/games/thumbnails_med_2/LandGrabbers130x75.gif','/exe/landgrabbers_45674333-setup.exe?lc=en&ext=landgrabbers_45674333-setup.exe','Capture enemy land and fortresses!','Lead your medieval troops to capture enemy fortresses and surrounding land!','false',false,false,'landgrabbers_microsoftvistaxp_');ag(510005163,'The Treasures of Montezuma 3','/images/games/TheTreasuresofMontezuma3/TheTreasuresofMontezuma381x46.gif',1007,1000000194,'','false','/images/games/TheTreasuresofMontezuma3/TheTreasuresofMontezuma316x16.gif',false,11323,'/images/games/TheTreasuresofMontezuma3/TheTreasuresofMontezuma3100x75.jpg','/images/games/TheTreasuresofMontezuma3/TheTreasuresofMontezuma3179x135.jpg','/images/games/TheTreasuresofMontezuma3/TheTreasuresofMontezuma3320x240.jpg','false','/images/games/thumbnails_med_2/TheTreasuresofMontezuma3130x75.gif','/exe/treasures_of_montezuma_3_45211404-setup.exe?lc=en&ext=treasures_of_montezuma_3_45211404-setup.exe','Match tokens to unlock incredible riches!','Match tokens to unlock incredible riches in the tropical jungle!','false',false,false,'thetreasuresofmontezuma3_micro');ag(510005164,'Treasure Seekers 4','/images/games/treasureseekersthetimehascome/treasureseekersthetimehascome81x46.gif',1100710,1000000045,'','false','/images/games/treasureseekersthetimehascome/treasureseekersthetimehascome16x16.gif',false,11323,'/images/games/treasureseekersthetimehascome/treasureseekersthetimehascome100x75.jpg','/images/games/treasureseekersthetimehascome/treasureseekersthetimehascome179x135.jpg','/images/games/treasureseekersthetimehascome/treasureseekersthetimehascome320x240.jpg','false','/images/games/thumbnails_med_2/treasureseekersthetimehascome130x75.gif','/exe/treasure_seekers_time_has_come_54132017-setup.exe?lc=en&ext=treasure_seekers_time_has_come_54132017-setup.exe','Prevent a dramatic catastrophe!','Help Nelly and Tom stop a potential catastrophe and save the world!','false',false,false,'treasureseekersthetimehascome_');ag(510005169,'The Time Builders','/images/games/TheTimeBuilders/TheTimeBuilders81x46.gif',110127790,1000000150,'','false','/images/games/TheTimeBuilders/TheTimeBuilders16x16.gif',false,11323,'/images/games/TheTimeBuilders/TheTimeBuilders100x75.jpg','/images/games/TheTimeBuilders/TheTimeBuilders179x135.jpg','/images/games/TheTimeBuilders/TheTimeBuilders320x240.jpg','false','/images/games/thumbnails_med_2/TheTimeBuilders130x75.gif','/exe/thetimebuilders_89742415-setup.exe?lc=en&ext=thetimebuilders_89742415-setup.exe','Bring hope to ancient Egyptians!','Bring hope to ancient Egyptians in this exciting time management adventure!','false',false,false,'thetimebuilders_microsoftvista');ag(510005170,'Hidden Object Global Quest 3-in-1','/images/games/hidden_object_global_quest/hidden_object_global_quest81x46.gif',1100710,1000000250,'','false','/images/games/hidden_object_global_quest/hidden_object_global_quest16x16.gif',false,11323,'/images/games/hidden_object_global_quest/hidden_object_global_quest100x75.jpg','/images/games/hidden_object_global_quest/hidden_object_global_quest179x135.jpg','/images/games/hidden_object_global_quest/hidden_object_global_quest320x240.jpg','false','/images/games/thumbnails_med_2/hidden_object_global_quest130x75.gif','/exe/hidden_object_global_quest3in1_54542148-setup.exe?lc=en&ext=hidden_object_global_quest3in1_54542148-setup.exe','Travel the world for hidden object adventure!','Travel the world and journey through time in three hidden object adventures!','false',false,false,'hiddenobjectglobalquest3in1_mi');ag(510005174,'Land Grabbers','/images/games/LandGrabbers/LandGrabbers81x46.gif',110083820,1000000160,'8a647c4f-e7e5-4a37-a543-77046805a0a8','false','/images/games/LandGrabbers/LandGrabbers16x16.gif',false,11323,'/images/games/LandGrabbers/LandGrabbers100x75.jpg','/images/games/LandGrabbers/LandGrabbers179x135.jpg','/images/games/LandGrabbers/LandGrabbers320x240.jpg','false','/images/games/thumbnails_med_2/LandGrabbers130x75.gif','','Capture enemy land and fortresses!','Lead your medieval troops to capture enemy fortresses and surrounding land!','true',false,false,'landgrabbers_adobeflash9player');ag(510005181,'My Kingdom for the Princess II','/images/games/mykingdomfortheprincess2/mykingdomfortheprincess281x46.gif',110083820,1000000221,'ee6f5b46-b9a5-4cb4-b514-04355ad3cae3','false','/images/games/mykingdomfortheprincess2/mykingdomfortheprincess216x16.gif',false,11323,'/images/games/mykingdomfortheprincess2/mykingdomfortheprincess2100x75.jpg','/images/games/mykingdomfortheprincess2/mykingdomfortheprincess2179x135.jpg','/images/games/mykingdomfortheprincess2/mykingdomfortheprincess2320x240.jpg','false','/images/games/thumbnails_med_2/mykingdomfortheprincess2130x75.gif','','Arthur and Princess Helen\'s Honeymoon Adventures!','Arthur and Princess Helen\'s adventures continue on a simultion time management honeymoon!','true',false,false,'mykingdomfortheprincess2_adobe');ag(510005202,'Magical Mysteries','/images/games/MagicalMysteries/MagicalMysteries81x46.gif',1007,1000000093,'','false','/images/games/MagicalMysteries/MagicalMysteries16x16.gif',false,11323,'/images/games/MagicalMysteries/MagicalMysteries100x75.jpg','/images/games/MagicalMysteries/MagicalMysteries179x135.jpg','/images/games/MagicalMysteries/MagicalMysteries320x240.jpg','false','/images/games/thumbnails_med_2/MagicalMysteries130x75.gif','/exe/magicalmysteries_67893485-setup.exe?lc=en&ext=magicalmysteries_67893485-setup.exe','Discover a magical match-3 mystery!','Decode a match-3 mystery of enchanted scrolls and magical potions!','false',false,false,'magicalmysteries_microsoftvist');ag(510005212,'Cubetastic','/images/games/Cubetastic/Cubetastic81x46.gif',1007,1000000075,'','false','/images/games/Cubetastic/Cubetastic16x16.gif',false,11323,'/images/games/Cubetastic/Cubetastic100x75.jpg','/images/games/Cubetastic/Cubetastic179x135.jpg','/images/games/Cubetastic/Cubetastic320x240.jpg','false','/images/games/thumbnails_med_2/Cubetastic130x75.gif','/exe/cubetastic_89756125-setup.exe?lc=en&ext=cubetastic_89756125-setup.exe','Insanely challenging 3D puzzler!','Guide colorful cubes to their goal in this challenging 3D puzzler!','false',false,false,'cubetastic_microsoftvistaxp_en');ag(510005213,'Dream Chronicles: The Book of Water','/images/games/DreamChroniclesTheBookofWater/DreamChroniclesTheBookofWater81x46.gif',1100710,1000000310,'','false','/images/games/DreamChroniclesTheBookofWater/DreamChroniclesTheBookofWater16x16.gif',false,11323,'/images/games/DreamChroniclesTheBookofWater/DreamChroniclesTheBookofWater100x75.jpg','/images/games/DreamChroniclesTheBookofWater/DreamChroniclesTheBookofWater179x135.jpg','/images/games/DreamChroniclesTheBookofWater/DreamChroniclesTheBookofWater320x240.jpg','false','/images/games/thumbnails_med_2/DreamChroniclesTheBookofWater130x75.gif','/exe/dream_chronicles_book_of_water_54542180-setup.exe?lc=en&ext=dream_chronicles_book_of_water_54542180-setup.exe','Seek answers to save Lyra’s hometown!','Seek answers to break the spell and save Lyra’s hometown!','false',false,false,'dreamchroniclesthebookofwater_');ag(510005214,'Dash of Fun Pack 4-in-1','/images/games/DashofFunPack4in1/DashofFunPack4in181x46.gif',110127790,1000000251,'','false','/images/games/DashofFunPack4in1/DashofFunPack4in116x16.gif',false,11323,'/images/games/DashofFunPack4in1/DashofFunPack4in1100x75.jpg','/images/games/DashofFunPack4in1/DashofFunPack4in1179x135.jpg','/images/games/DashofFunPack4in1/DashofFunPack4in1320x240.jpg','false','/images/games/thumbnails_med_2/DashofFunPack4in1130x75.gif','/exe/dashoffunpack4in1_51852551-setup.exe?lc=en&ext=dashoffunpack4in1_51852551-setup.exe','Four frenzied time managements in one!','Deal with food, fame, and drama in four frenzied time managements!','false',false,false,'dashoffunpack4in1_microsoftvis');ag(510005215,'Empress of the Deep 2','/images/games/EmpressoftheDeep2/EmpressoftheDeep281x46.gif',1100710,1000000133,'','false','/images/games/EmpressoftheDeep2/EmpressoftheDeep216x16.gif',false,11323,'/images/games/EmpressoftheDeep2/EmpressoftheDeep2100x75.jpg','/images/games/EmpressoftheDeep2/EmpressoftheDeep2179x135.jpg','/images/games/EmpressoftheDeep2/EmpressoftheDeep2320x240.jpg','false','/images/games/thumbnails_med_2/EmpressoftheDeep2130x75.gif','/exe/empressofthedeep_2_stnd_84512564-setup.exe?lc=en&ext=empressofthedeep_2_stnd_84512564-setup.exe','Journey to a mysterious, forbidden cloud city!','Journey to a mysterious, forbidden cloud city to save the Children of Light!','false',false,false,'empressofthedeepce_microsoftvi');ag(510005222,'Island Tribe 2','/images/games/IslandTribe2/IslandTribe281x46.gif',110127790,1000000265,'','false','/images/games/IslandTribe2/IslandTribe216x16.gif',false,11323,'/images/games/IslandTribe2/IslandTribe2100x75.jpg','/images/games/IslandTribe2/IslandTribe2179x135.jpg','/images/games/IslandTribe2/IslandTribe2320x240.jpg','false','/images/games/thumbnails_med_2/IslandTribe2130x75.gif','/exe/islandtribe2_84556315-setup.exe?lc=en&ext=islandtribe2_84556315-setup.exe','Find the magical Altar of Wishes!','Guide the tribe of settlers to the magical Altar of Wishes!','false',false,false,'islandtribe2_microsoftvistaxp_');ag(510005223,'Iceball','/images/games/iceball/iceball81x46.gif',110083820,1000000041,'0cbcfb58-ba0b-403e-b01c-f32f6459ee28','false','/images/games/iceball/iceball16x16.gif',false,11323,'/images/games/iceball/iceball100x75.jpg','/images/games/iceball/iceball179x135.jpg','/images/games/iceball/iceball320x240.jpg','false','/images/games/thumbnails_med_2/iceball130x75.gif','','A puzzle game on ice!','Slide the ball to the finish in this icy puzzle game!','true',false,false,'iceball_adobeflash9player_en');ag(510005224,'Fashion Forward','/images/games/fashionforward/fashionforward81x46.gif',110127790,1000000167,'','false','/images/games/fashionforward/fashionforward16x16.gif',false,11323,'/images/games/fashionforward/fashionforward100x75.jpg','/images/games/fashionforward/fashionforward179x135.jpg','/images/games/fashionforward/fashionforward320x240.jpg','false','/images/games/thumbnails_med_2/fashionforward130x75.gif','/exe/fashion_forward_65540556-setup.exe?lc=en&ext=fashion_forward_65540556-setup.exe','Help Risha launch an L.A. boutique!','Help Risha launch an L.A. boutique and bring fashion to every shape and size.','false',false,false,'fashionforward_microsoftvistax');ag(510005226,'Gourmania 3','/images/games/gourmania3zoozoom/gourmania3zoozoom81x46.gif',1100710,1000000252,'','false','/images/games/gourmania3zoozoom/gourmania3zoozoom16x16.gif',false,11323,'/images/games/gourmania3zoozoom/gourmania3zoozoom100x75.jpg','/images/games/gourmania3zoozoom/gourmania3zoozoom179x135.jpg','/images/games/gourmania3zoozoom/gourmania3zoozoom320x240.jpg','false','/images/games/thumbnails_med_2/gourmania3zoozoom130x75.gif','/exe/gourmania3zoozoom_21545421-setup.exe?lc=en&ext=gourmania3zoozoom_21545421-setup.exe','A third helping of hidden object fun!','Dig into a third helping of hidden object fun!','false',false,false,'gourmania3zoozoom_microsoftvis');ag(510005227,'Margrave: The Curse of the Severed Heart','/images/games/margravecurseoftheseveredheart/margravecurseoftheseveredheart81x46.gif',1100710,1000000259,'','false','/images/games/margravecurseoftheseveredheart/margravecurseoftheseveredheart16x16.gif',false,11323,'/images/games/margravecurseoftheseveredheart/margravecurseoftheseveredheart100x75.jpg','/images/games/margravecurseoftheseveredheart/margravecurseoftheseveredheart179x135.jpg','/images/games/margravecurseoftheseveredheart/margravecurseoftheseveredheart320x240.jpg','false','/images/games/thumbnails_med_2/margravecurseoftheseveredheart130x75.gif','/exe/margravecurseoftheseveredheart_45412155-setup.exe?lc=en&ext=margravecurseoftheseveredheart_45412155-setup.exe','Investigate the death of Edwina\'s parents!','Enlist the aid of the spirit world to investigate Edwina\'s parents\' death!','false',false,false,'margravecurseoftheseveredheart');ag(510005232,'Escape from Thunder Island','/images/games/escapefromthunderisland/escapefromthunderisland81x46.gif',1100710,1000000202,'','false','/images/games/escapefromthunderisland/escapefromthunderisland16x16.gif',false,11323,'/images/games/escapefromthunderisland/escapefromthunderisland100x75.jpg','/images/games/escapefromthunderisland/escapefromthunderisland179x135.jpg','/images/games/escapefromthunderisland/escapefromthunderisland320x240.jpg','false','/images/games/thumbnails_med_2/escapefromthunderisland130x75.gif','/exe/escapefromthunderisland_54121458-setup.exe?lc=en&ext=escapefromthunderisland_54121458-setup.exe','Rescue Rita’s kidnapped father!','Rescue Rita’s kidnapped father in this hidden object adventure!','false',false,false,'escapefromthunderisland_micros');ag(510005235,'Epic Adventures: Cursed Onboard','/images/games/epicadventurescursedonboard/epicadventurescursedonboard81x46.gif',1100710,1000000241,'','false','/images/games/epicadventurescursedonboard/epicadventurescursedonboard16x16.gif',false,11323,'/images/games/epicadventurescursedonboard/epicadventurescursedonboard100x75.jpg','/images/games/epicadventurescursedonboard/epicadventurescursedonboard179x135.jpg','/images/games/epicadventurescursedonboard/epicadventurescursedonboard320x240.jpg','false','/images/games/thumbnails_med_2/epicadventurescursedonboard130x75.gif','/exe/epicadventurescursedonboard_44812584-setup.exe?lc=en&ext=epicadventurescursedonboard_44812584-setup.exe','Unravel the mystery of the cursed ship!','Unravel the mystery of the cursed ship and save Anna\'s soul!','false',false,false,'epicadventurescursedonboard_mi');ag(510005238,'Escape the Emerald Star','/images/games/escapetheemeraldstar/escapetheemeraldstar81x46.gif',1100710,1000000316,'','false','/images/games/escapetheemeraldstar/escapetheemeraldstar16x16.gif',false,11323,'/images/games/escapetheemeraldstar/escapetheemeraldstar100x75.jpg','/images/games/escapetheemeraldstar/escapetheemeraldstar179x135.jpg','/images/games/escapetheemeraldstar/escapetheemeraldstar320x240.jpg','false','/images/games/thumbnails_med_2/escapetheemeraldstar130x75.gif','/exe/escapetheemeraldstar_45652332-setup.exe?lc=en&ext=escapetheemeraldstar_45652332-setup.exe','Find your way to shore!','Escape an abandoned cruise ship and find your way to shore!','false',false,false,'escapetheemeraldstar_microsoft');ag(510005240,'Hidden Wonders of the Depths 3','/images/games/hiddenwondersofthedepths3/hiddenwondersofthedepths381x46.gif',1000,1000000261,'','false','/images/games/hiddenwondersofthedepths3/hiddenwondersofthedepths316x16.gif',false,11323,'/images/games/hiddenwondersofthedepths3/hiddenwondersofthedepths3100x75.jpg','/images/games/hiddenwondersofthedepths3/hiddenwondersofthedepths3179x135.jpg','/images/games/hiddenwondersofthedepths3/hiddenwondersofthedepths3320x240.jpg','false','/images/games/thumbnails_med_2/hiddenwondersofthedepths3130x75.gif','/exe/hiddenwondersofthedepths3_25168415-setup.exe?lc=en&ext=hiddenwondersofthedepths3_25168415-setup.exe','Travel to Atlantis for match-3 fun!','Travel to Atlantis for mysterious, match-3 fun! Discover the Hidden Wonders of the Depths.','false',false,false,'hiddenwondersofthedepths3_micr');ag(510005243,'Shadow Wolf Mysteries','/images/games/shadowwolfmysteries/shadowwolfmysteries81x46.gif',1100710,1000000187,'','false','/images/games/shadowwolfmysteries/shadowwolfmysteries16x16.gif',false,11323,'/images/games/shadowwolfmysteries/shadowwolfmysteries100x75.jpg','/images/games/shadowwolfmysteries/shadowwolfmysteries179x135.jpg','/images/games/shadowwolfmysteries/shadowwolfmysteries320x240.jpg','false','/images/games/thumbnails_med_2/shadowwolfmysteries130x75.gif','/exe/shadowwolfmysteries_45682054-setup.exe?lc=en&ext=shadowwolfmysteries_45682054-setup.exe','Solve a string of mysterious murders!','Leave the big city to solve a string of mysterious murders!','false',false,false,'shadowwolfmysteries_microsoftv');ag(510005245,'Jewel Match 3','/images/games/jewelmatch3/jewelmatch381x46.gif',1007,1000000324,'','false','/images/games/jewelmatch3/jewelmatch316x16.gif',false,11323,'/images/games/jewelmatch3/jewelmatch3100x75.jpg','/images/games/jewelmatch3/jewelmatch3179x135.jpg','/images/games/jewelmatch3/jewelmatch3320x240.jpg','false','/images/games/thumbnails_med_2/jewelmatch3130x75.gif','/exe/jewelmatch3_85453184-setup.exe?lc=en&ext=jewelmatch3_85453184-setup.exe','A dazzling match-3 adventure in Nevernear!','Journey through the mesmerizing world of Nevernear in this match-3 adventure!','false',false,false,'jewelmatch3_microsoftvistaxp_e');ag(510005247,'Hotel Dash 2: Lost Luxuries','/images/games/hoteldash2lostluxuries/hoteldash2lostluxuries81x46.gif',1007,1000000333,'','false','/images/games/hoteldash2lostluxuries/hoteldash2lostluxuries16x16.gif',false,11323,'/images/games/hoteldash2lostluxuries/hoteldash2lostluxuries100x75.jpg','/images/games/hoteldash2lostluxuries/hoteldash2lostluxuries179x135.jpg','/images/games/hoteldash2lostluxuries/hoteldash2lostluxuries320x240.jpg','false','/images/games/thumbnails_med_2/hoteldash2lostluxuries130x75.gif','/exe/hoteldash2lostluxuries_05454885-setup.exe?lc=en&ext=hoteldash2lostluxuries_05454885-setup.exe','Turn buried hotels into exotic resorts!','Turn buried hotels into exotic resorts in the wildest time management around!','false',false,false,'hoteldash2lostluxuries_microso');ag(510005254,'Classic Fishdom 2 in 1 Pack','/images/games/classicfishdom2in1pack/classicfishdom2in1pack81x46.gif',1007,1000000220,'','false','/images/games/classicfishdom2in1pack/classicfishdom2in1pack16x16.gif',false,11323,'/images/games/classicfishdom2in1pack/classicfishdom2in1pack100x75.jpg','/images/games/classicfishdom2in1pack/classicfishdom2in1pack179x135.jpg','/images/games/classicfishdom2in1pack/classicfishdom2in1pack320x240.jpg','false','/images/games/thumbnails_med_2/classicfishdom2in1pack130x75.gif','/exe/classicfishdom2in1pack_microsoftvistaxp_en-setup.exe?lc=en&ext=classicfishdom2in1pack_microsoftvistaxp_en-setup.exe','Create an aquarium with match-3 gaming!','Master addictive match-3 gaming to create your dream aquarium!','false',false,false,'classicfishdom2in1pack_microso');ag(510005257,'Jewel Quest Mysteries 3','/images/games/jewelquestmysteriesseventhgate/jewelquestmysteriesseventhgate81x46.gif',1100710,1000000028,'','false','/images/games/jewelquestmysteriesseventhgate/jewelquestmysteriesseventhgate16x16.gif',false,11323,'/images/games/jewelquestmysteriesseventhgate/jewelquestmysteriesseventhgate100x75.jpg','/images/games/jewelquestmysteriesseventhgate/jewelquestmysteriesseventhgate179x135.jpg','/images/games/jewelquestmysteriesseventhgate/jewelquestmysteriesseventhgate320x240.jpg','false','/images/games/thumbnails_med_2/jewelquestmysteriesseventhgate130x75.gif','/exe/jewelquestmysteriesseventhgate_57439458-setup.exe?lc=en&ext=jewelquestmysteriesseventhgate_57439458-setup.exe','Uncover mysteries in ancient Greece!','Uncover mysteries in ancient Greece and help Emma find her husband and daughter!','false',false,false,'jewelquestmysteriesseventhgate');ag(510005259,'G.H.O.S.T. Chronicles Bundle 2-in-1','/images/games/ghostchroniclesbundle2in1/ghostchroniclesbundle2in181x46.gif',1100710,1000000341,'','false','/images/games/ghostchroniclesbundle2in1/ghostchroniclesbundle2in116x16.gif',false,11323,'/images/games/ghostchroniclesbundle2in1/ghostchroniclesbundle2in1100x75.jpg','/images/games/ghostchroniclesbundle2in1/ghostchroniclesbundle2in1179x135.jpg','/images/games/ghostchroniclesbundle2in1/ghostchroniclesbundle2in1320x240.jpg','false','/images/games/thumbnails_med_2/ghostchroniclesbundle2in1130x75.gif','/exe/ghostchroniclesbundle2in1_76567432-setup.exe?lc=en&ext=ghostchroniclesbundle2in1_76567432-setup.exe','Investigate two hauntings - ghost or hoax?','Investigate the truth behind two hauntings - ghost or hoax?','false',false,false,'ghostchroniclesbundle2in1_micr');ag(510005260,'Path to Success','/images/games/pathtosuccess/pathtosuccess81x46.gif',1007,1000000322,'','false','/images/games/pathtosuccess/pathtosuccess16x16.gif',false,11323,'/images/games/pathtosuccess/pathtosuccess100x75.jpg','/images/games/pathtosuccess/pathtosuccess179x135.jpg','/images/games/pathtosuccess/pathtosuccess320x240.jpg','false','/images/games/thumbnails_med_2/pathtosuccess130x75.gif','/exe/PathToSuccess_72344309-setup.exe?lc=en&ext=PathToSuccess_72344309-setup.exe','Live your fabulous, fantasy life!','Get educated, get paid, and live your fabulous, fantasy life!','false',false,false,'pathtosuccess_microsoftvistaxp');ag(510005269,'Dream Inn','/images/games/dreaminndriftwood/dreaminndriftwood81x46.gif',1100710,1000000360,'','false','/images/games/dreaminndriftwood/dreaminndriftwood16x16.gif',false,11323,'/images/games/dreaminndriftwood/dreaminndriftwood100x75.jpg','/images/games/dreaminndriftwood/dreaminndriftwood179x135.jpg','/images/games/dreaminndriftwood/dreaminndriftwood320x240.jpg','false','/images/games/thumbnails_med_2/dreaminndriftwood130x75.gif','/exe/DreamInnDriftwood_45637760-setup.exe?lc=en&ext=DreamInnDriftwood_45637760-setup.exe','Restore the Driftwood to a premiere resort!','Transform the Driftwood Inn from disrepair to premiere seaside resort!','false',false,false,'dreaminndriftwood_microsoftvis');ag(510005275,'Chloe`s Dream Resort','/images/games/chloesdreamresort/chloesdreamresort81x46.gif',1000,1000000274,'','false','/images/games/chloesdreamresort/chloesdreamresort16x16.gif',false,11323,'/images/games/chloesdreamresort/chloesdreamresort100x75.jpg','/images/games/chloesdreamresort/chloesdreamresort179x135.jpg','/images/games/chloesdreamresort/chloesdreamresort320x240.jpg','false','/images/games/thumbnails_med_2/chloesdreamresort130x75.gif','/exe/ChloesDreamResort_47667788-setup.exe?lc=en&ext=ChloesDreamResort_47667788-setup.exe','Fix up the Dream Land resorts!','From a ski lodge to beach hotel, fix up Dream Land resorts!','false',false,false,'chloesdreamresort_microsoftvis');ag(510005276,'Solitaire Kingdom Supreme','/images/games/solitairekingdomsupreme/solitairekingdomsupreme81x46.gif',1007,1000000195,'','false','/images/games/solitairekingdomsupreme/solitairekingdomsupreme16x16.gif',false,11323,'/images/games/solitairekingdomsupreme/solitairekingdomsupreme100x75.jpg','/images/games/solitairekingdomsupreme/solitairekingdomsupreme179x135.jpg','/images/games/solitairekingdomsupreme/solitairekingdomsupreme320x240.jpg','false','/images/games/thumbnails_med_2/solitairekingdomsupreme130x75.gif','/exe/SolitaireKingdomSupreme_74576670-setup.exe?lc=en&ext=SolitaireKingdomSupreme_74576670-setup.exe','A fresh twist on daily Solitaire!','A fresh, new twist on your daily Solitaire gaming!','false',false,false,'solitairekingdomsupreme_micros');ag(510005278,'Popcorn Rush','/images/games/PopcornRush/PopcornRush81x46.gif',110083820,1000000365,'64f34dc2-50df-4ab5-99cc-c5eac7aab93f','false','/images/games/PopcornRush/PopcornRush16x16.gif',false,11323,'/images/games/PopcornRush/PopcornRush100x75.jpg','/images/games/PopcornRush/PopcornRush179x135.jpg','/images/games/PopcornRush/PopcornRush320x240.jpg','false','/images/games/PopcornRush/blank_PopcornRush130x75.gif','','Pop the hot kernals!','How many hot kernals can you pop?','true',false,false,'popcornrush_adobeflash9player_');ag(510005280,'Hotel Mogul: Las Vegas','/images/games/hotelmogullasvegas/hotelmogullasvegas81x46.gif',110127790,1000000099,'','false','/images/games/hotelmogullasvegas/hotelmogullasvegas16x16.gif',false,11323,'/images/games/hotelmogullasvegas/hotelmogullasvegas100x75.jpg','/images/games/hotelmogullasvegas/hotelmogullasvegas179x135.jpg','/images/games/hotelmogullasvegas/hotelmogullasvegas320x240.jpg','false','/images/games/thumbnails_med_2/hotelmogullasvegas130x75.gif','/exe/HotelMogulLasVegas_78889786-setup.exe?lc=en&ext=HotelMogulLasVegas_78889786-setup.exe','Hit the real estate jackpot!','Hit the real estate jackpot and build a hotel empire!','false',false,true,'hotelmogullasvegas_microsoftvi');ag(510005281,'Crop Busters','/images/games/cropbusters/cropbusters81x46.gif',1007,1000000289,'','false','/images/games/cropbusters/cropbusters16x16.gif',false,11323,'/images/games/cropbusters/cropbusters100x75.jpg','/images/games/cropbusters/cropbusters179x135.jpg','/images/games/cropbusters/cropbusters320x240.jpg','false','/images/games/thumbnails_med_2/cropbusters130x75.gif','/exe/crop_busters_59375683-setup.exe?lc=en&ext=crop_busters_59375683-setup.exe','A rousing match-3 farming adventure!','Bring in the harvest in this rousing match-3 adventure on the farm!','false',false,false,'cropbusters_microsoftvistaxp_e');ag(510005282,'The Fool','/images/games/thefool/thefool81x46.gif',1000,1000000353,'','false','/images/games/thefool/thefool16x16.gif',false,11323,'/images/games/thefool/thefool100x75.jpg','/images/games/thefool/thefool179x135.jpg','/images/games/thefool/thefool320x240.jpg','false','/images/games/thumbnails_med_2/thefool130x75.gif','/exe/TheFool_67764460-setup.exe?lc=en&ext=TheFool_67764460-setup.exe','Save the princess from a terrible dragon!','Go from fool to hero by saving the princess from a terrible dragon!','false',false,false,'thefool_microsoftvistaxp_en');ag(510005283,'Dreamsdwell Stories 2','/images/games/dreamsdwellstories2/dreamsdwellstories281x46.gif',1007,1000000363,'','false','/images/games/dreamsdwellstories2/dreamsdwellstories216x16.gif',false,11323,'/images/games/dreamsdwellstories2/dreamsdwellstories2100x75.jpg','/images/games/dreamsdwellstories2/dreamsdwellstories2179x135.jpg','/images/games/dreamsdwellstories2/dreamsdwellstories2320x240.jpg','false','/images/games/thumbnails_med_2/dreamsdwellstories2130x75.gif','/exe/dreamsdwellstories2_57689930-setup.exe?lc=en&ext=dreamsdwellstories2_57689930-setup.exe','Find your way home!','Discover the secret of the portal and find your way home!','false',false,false,'dreamsdwellstories2_microsoftv');ag(510005289,'Shades of Death - Royal Blood','/images/games/shadesofdeathroyalblood/shadesofdeathroyalblood81x46.gif',1100710,1000000345,'','false','/images/games/shadesofdeathroyalblood/shadesofdeathroyalblood16x16.gif',false,11323,'/images/games/shadesofdeathroyalblood/shadesofdeathroyalblood100x75.jpg','/images/games/shadesofdeathroyalblood/shadesofdeathroyalblood179x135.jpg','/images/games/shadesofdeathroyalblood/shadesofdeathroyalblood320x240.jpg','false','/images/games/thumbnails_med_2/shadesofdeathroyalblood130x75.gif','/exe/shadesofdeathroyalblood_57463879-setup.exe?lc=en&ext=shadesofdeathroyalblood_57463879-setup.exe','Figure out a dark mystery!','Explore the family castle and solve the dark mystery behind your father&rsquo;s death!','false',false,false,'shadesofdeathroyalblood_micros');ag(510005291,'Hide and Secret - The Lost World','/images/games/hideandsecretthelostworld/hideandsecretthelostworld81x46.gif',1000,1000000377,'','false','/images/games/hideandsecretthelostworld/hideandsecretthelostworld16x16.gif',false,11323,'/images/games/hideandsecretthelostworld/hideandsecretthelostworld100x75.jpg','/images/games/hideandsecretthelostworld/hideandsecretthelostworld179x135.jpg','/images/games/hideandsecretthelostworld/hideandsecretthelostworld320x240.jpg','false','/images/games/thumbnails_med_2/hideandsecretthelostworld130x75.gif','/exe/HideAndSecretTheLostWorld_64675848-setup.exe?lc=en&ext=HideAndSecretTheLostWorld_64675848-setup.exe','Save a damsel in distress!','Travel deep into the jungle to save a damsel and find secret treasure!','false',false,false,'hideandsecretthelostworld_micr');ag(510005292,'Homesteader','/images/games/homesteader/homesteader81x46.gif',1007,1000000127,'','false','/images/games/homesteader/homesteader16x16.gif',false,11323,'/images/games/homesteader/homesteader100x75.jpg','/images/games/homesteader/homesteader179x135.jpg','/images/games/homesteader/homesteader320x240.jpg','false','/images/games/thumbnails_med_2/homesteader130x75.gif','/exe/Homesteader_56767490-setup.exe?lc=en&ext=Homesteader_56767490-setup.exe','Unique match-3 gaming down on the farm!','Match three touching items, not necessarily in a row, to build a farm!','false',false,false,'homesteader_microsoftvistaxp_e');ag(510005301,'Margrave Manor Bundle 2-in-1','/images/games/margravemanorbundle2in1/margravemanorbundle2in181x46.gif',1100710,1000000371,'','false','/images/games/margravemanorbundle2in1/margravemanorbundle2in116x16.gif',false,11323,'/images/games/margravemanorbundle2in1/margravemanorbundle2in1100x75.jpg','/images/games/margravemanorbundle2in1/margravemanorbundle2in1179x135.jpg','/images/games/margravemanorbundle2in1/margravemanorbundle2in1320x240.jpg','false','/images/games/thumbnails_med_2/margravemanorbundle2in1130x75.gif','/exe/MargraveManorBundle2in1_47567483-setup.exe?lc=en&ext=MargraveManorBundle2in1_47567483-setup.exe','Two spooky hidden objects in one!','Two spooky hidden object adventures in Margrave Manor!','false',false,false,'margravemanorbundle2in1_micros');ag(510005302,'Blood and Ruby','/images/games/BloodandRuby/BloodandRuby81x46.gif',1100710,1000000352,'','false','/images/games/BloodandRuby/BloodandRuby16x16.gif',false,11323,'/images/games/BloodandRuby/BloodandRuby100x75.jpg','/images/games/BloodandRuby/BloodandRuby179x135.jpg','/images/games/BloodandRuby/BloodandRuby320x240.jpg','false','/images/games/thumbnails_med_2/BloodandRuby130x75.gif','/exe/BloodandRuby_46737856-setup.exe?lc=en&ext=BloodandRuby_46737856-setup.exe','Find your missing brother!','Use ancient magic and quick wits to find your missing brother!','false',false,true,'bloodandruby_microsoftvistaxp_');ag(510005303,'Stand O&rsquo;Food 3','/images/games/StandOFood3/StandOFood381x46.gif',1003,1000000382,'','false','/images/games/StandOFood3/StandOFood316x16.gif',false,11323,'/images/games/StandOFood3/StandOFood3100x75.jpg','/images/games/StandOFood3/StandOFood3179x135.jpg','/images/games/StandOFood3/StandOFood3320x240.jpg','false','/images/games/thumbnails_med_2/StandOFood3130x75.gif','/exe/StandOFood3_45680282-setup.exe?lc=en&ext=StandOFood3_45680282-setup.exe','Cater to clients in Tinseltown!','Expand your food chain to Tinseltown and cater to all new clients!','false',false,false,'standofood3_microsoftvistaxp_e');ag(510005304,'Fruits Inc','/images/games/FruitsInc/FruitsInc81x46.gif',110083820,1000000357,'9e7a0395-5db1-4ba7-ad24-0f6f03582d4b','false','/images/games/FruitsInc/FruitsInc16x16.gif',false,11323,'/images/games/FruitsInc/FruitsInc100x75.jpg','/images/games/FruitsInc/FruitsInc179x135.jpg','/images/games/FruitsInc/FruitsInc320x240.jpg','false','/images/games/thumbnails_med_2/FruitsInc130x75.gif','','Build Brooke’s Fruit Empire!','Help Brooke turn a small family farm into a fruit empire!','true',false,false,'fruitsinc_adobeflash9player_en');ag(510005311,'Silent Scream','/images/games/silentscreamthedancer/silentscreamthedancer81x46.gif',1000,1000000094,'','false','/images/games/silentscreamthedancer/silentscreamthedancer16x16.gif',false,11323,'/images/games/silentscreamthedancer/silentscreamthedancer100x75.jpg','/images/games/silentscreamthedancer/silentscreamthedancer179x135.jpg','/images/games/silentscreamthedancer/silentscreamthedancer320x240.jpg','false','/images/games/thumbnails_med_2/silentscreamthedancer130x75.gif','/exe/SilentScreamTheDancer_47378274-setup.exe?lc=en&ext=SilentScreamTheDancer_47378274-setup.exe','Search for Jennifer\'s daughter!','Help Jennifer solve a dark mystery and save her only daughter!','false',false,false,'silentscreamthedancer_microsof');ag(510005313,'Dream Chronicles Bundle 3-in-1','/images/games/dreamchroniclesbundle3in1/dreamchroniclesbundle3in181x46.gif',1000,1000000372,'','false','/images/games/dreamchroniclesbundle3in1/dreamchroniclesbundle3in116x16.gif',false,11323,'/images/games/dreamchroniclesbundle3in1/dreamchroniclesbundle3in1100x75.jpg','/images/games/dreamchroniclesbundle3in1/dreamchroniclesbundle3in1179x135.jpg','/images/games/dreamchroniclesbundle3in1/dreamchroniclesbundle3in1320x240.jpg','false','/images/games/thumbnails_med_2/dreamchroniclesbundle3in1130x75.gif','/exe/DreamChroniclesBundle3in1_43878265-setup.exe?lc=en&ext=DreamChroniclesBundle3in1_43878265-setup.exe','Solve puzzles in enchanted lands!','Solve puzzles in enchanted lands - three games in one download!','false',false,false,'dreamchroniclesbundle3in1_micr');ag(510005316,'Akhra: The Treasures','/images/games/akhra/akhra81x46.gif',1007,1000000180,'','false','/images/games/akhra/akhra16x16.gif',false,11323,'/images/games/akhra/akhra100x75.jpg','/images/games/akhra/akhra179x135.jpg','/images/games/akhra/akhra320x240.jpg','false','/images/games/thumbnails_med_2/akhra130x75.gif','/exe/akhra_48768433-setup.exe?lc=en&ext=akhra_48768433-setup.exe','Find hidden treasures in a fantastical world!','Journey into a fantastical world to find powerful artifacts and hidden treasures!','false',false,false,'akhra_microsoftvistaxp_en');ag(510005317,'Golden Trails 2','/images/games/goldentrails2thelostlegacy/goldentrails2thelostlegacy81x46.gif',1100710,1000000456,'','false','/images/games/goldentrails2thelostlegacy/goldentrails2thelostlegacy16x16.gif',false,11323,'/images/games/goldentrails2thelostlegacy/goldentrails2thelostlegacy100x75.jpg','/images/games/goldentrails2thelostlegacy/goldentrails2thelostlegacy179x135.jpg','/images/games/goldentrails2thelostlegacy/goldentrails2thelostlegacy320x240.jpg','false','/images/games/thumbnails_med_2/goldentrails2thelostlegacy130x75.gif','/exe/goldentrails2thelostlegacy_98765432-setup.exe?lc=en&ext=goldentrails2thelostlegacy_98765432-setup.exe','Uncover a long forgotten legacy!','Uncover a long forgotten legacy and an 18th-century love story!','false',false,false,'goldentrails2thelostlegacy_mic');ag(510005323,'Midnight Mysteries 3','/images/games/midnightmysteries3/midnightmysteries381x46.gif',1000,1000000417,'','false','/images/games/midnightmysteries3/midnightmysteries316x16.gif',false,11323,'/images/games/midnightmysteries3/midnightmysteries3100x75.jpg','/images/games/midnightmysteries3/midnightmysteries3179x135.jpg','/images/games/midnightmysteries3/midnightmysteries3320x240.jpg','false','/images/games/thumbnails_med_2/midnightmysteries3130x75.gif','/exe/midnightmysteries3_56456890-setup.exe?lc=en&ext=midnightmysteries3_56456890-setup.exe','Mark Twain’s ghost needs your help!','Help Mark Twain’s ghost unravel the mysteries of Shakespeare!','false',false,false,'midnightmysteries3_microsoftvi');ag(510005324,'Hodgepodge Hollow: A Potions Primer','/images/games/hodgepodgehollow/hodgepodgehollow81x46.gif',1000,1000000181,'','false','/images/games/hodgepodgehollow/hodgepodgehollow16x16.gif',false,11323,'/images/games/hodgepodgehollow/hodgepodgehollow100x75.jpg','/images/games/hodgepodgehollow/hodgepodgehollow179x135.jpg','/images/games/hodgepodgehollow/hodgepodgehollow320x240.jpg','false','/images/games/thumbnails_med_2/hodgepodgehollow130x75.gif','/exe/HodgepodgeHollow_43876783-setup.exe?lc=en&ext=HodgepodgeHollow_43876783-setup.exe','Recover a crafty gnome\'s lost treasure!','Help a crafty gnome seek out hidden ingredients and recipes!','false',false,false,'hodgepodgehollow_microsoftvist');ag(510005325,'Wedding Salon','/images/games/weddingsalon/weddingsalon81x46.gif',1000,1000000173,'','false','/images/games/weddingsalon/weddingsalon16x16.gif',false,11323,'/images/games/weddingsalon/weddingsalon100x75.jpg','/images/games/weddingsalon/weddingsalon179x135.jpg','/images/games/weddingsalon/weddingsalon320x240.jpg','false','/images/games/thumbnails_med_2/weddingsalon130x75.gif','/exe/WeddingSalon_83476435-setup.exe?lc=en&ext=WeddingSalon_83476435-setup.exe','Run Holly\'s wedding planning empire!','Run Holly\'s wedding planning empire and satisfy your yen for romance!','false',false,false,'weddingsalon_microsoftvistaxp_');ag(510005329,'Dreamland','/images/games/dreamland/dreamland81x46.gif',1100710,1000000457,'','false','/images/games/dreamland/dreamland16x16.gif',false,11323,'/images/games/dreamland/dreamland100x75.jpg','/images/games/dreamland/dreamland179x135.jpg','/images/games/dreamland/dreamland320x240.jpg','false','/images/games/thumbnails_med_2/dreamland130x75.gif','/exe/Dreamland_48756832-setup.exe?lc=en&ext=Dreamland_48756832-setup.exe','Save the world from an evil dwarf!','Save the world from an evil dwarf who haunts Dreamland!','false',false,false,'dreamland_microsoftvistaxp_en');ag(510005331,'Magical Gems','/images/games/MagicalGems/MagicalGems81x46.gif',110083820,1000000445,'65454bd6-0438-4bb6-8228-69ce6f16a55c','false','/images/games/MagicalGems/MagicalGems16x16.gif',false,11323,'/images/games/MagicalGems/MagicalGems100x75.jpg','/images/games/MagicalGems/MagicalGems179x135.jpg','/images/games/MagicalGems/MagicalGems320x240.jpg','false','/images/games/thumbnails_med_2/MagicalGems130x75.gif','','Battle evil wizards!','Battle evil wizards using your match 3 skills.','true',false,false,'magicalgems_adobeflash9player_');ag(510005332,'The Lost City - Chapter One','/images/games/thelostcitychapterone/thelostcitychapterone81x46.gif',0,1000000444,'','false','/images/games/thelostcitychapterone/thelostcitychapterone16x16.gif',false,11323,'/images/games/thelostcitychapterone/thelostcitychapterone100x75.jpg','/images/games/thelostcitychapterone/thelostcitychapterone179x135.jpg','/images/games/thelostcitychapterone/thelostcitychapterone320x240.jpg','false','/images/games/thumbnails_med_2/thelostcitychapterone130x75.gif','/exe/thelostcitychapterone_12356987-setup.exe?lc=en&ext=thelostcitychapterone_12356987-setup.exe','Discover the mysteries of the old world!','Find Timothy\'s father and discover the mysteries of the old world!','false',false,false,'thelostcitychapterone_microsof');ag(510005333,'Pioneer Lands','/images/games/pioneerlands/pioneerlands81x46.gif',1000,1000000454,'','false','/images/games/pioneerlands/pioneerlands16x16.gif',false,11323,'/images/games/pioneerlands/pioneerlands100x75.jpg','/images/games/pioneerlands/pioneerlands179x135.jpg','/images/games/pioneerlands/pioneerlands320x240.jpg','false','/images/games/thumbnails_med_2/pioneerlands130x75.gif','/exe/pioneerlands_65498723-setup.exe?lc=en&ext=pioneerlands_65498723-setup.exe','Conquer the wild, western frontier!','Conquer the wild frontier of America\'s Old West!','false',false,false,'pioneerlands_microsoftvistaxp_');ag(510005334,'Vampire Saga 2','/images/games/vampiresagawelcometohelllock/vampiresagawelcometohelllock81x46.gif',1000,1000000437,'','false','/images/games/vampiresagawelcometohelllock/vampiresagawelcometohelllock16x16.gif',false,11323,'/images/games/vampiresagawelcometohelllock/vampiresagawelcometohelllock100x75.jpg','/images/games/vampiresagawelcometohelllock/vampiresagawelcometohelllock179x135.jpg','/images/games/vampiresagawelcometohelllock/vampiresagawelcometohelllock320x240.jpg','false','/images/games/thumbnails_med_2/vampiresagawelcometohelllock130x75.gif','/exe/vampiresagawelcometohelllock_34567812-setup.exe?lc=en&ext=vampiresagawelcometohelllock_34567812-setup.exe','Find the way out of hell!','Find the way out of hell in this shocking supernatural thriller!','false',false,false,'vampiresagawelcometohelllock_m');ag(510005335,'Relics of Fate','/images/games/relicsoffate/relicsoffate81x46.gif',1100710,1000000132,'','false','/images/games/relicsoffate/relicsoffate16x16.gif',false,11323,'/images/games/relicsoffate/relicsoffate100x75.jpg','/images/games/relicsoffate/relicsoffate179x135.jpg','/images/games/relicsoffate/relicsoffate320x240.jpg','false','/images/games/thumbnails_med_2/relicsoffate130x75.gif','/exe/relicsoffate_10987654-setup.exe?lc=en&ext=relicsoffate_10987654-setup.exe','Help Penny rescue her father!','Help Penny rescue her father, a local PI gone missing!','false',false,false,'relicsoffate_microsoftvistaxp_');ag(510005344,'Fairy Tales','/images/games/fairytales/fairytales81x46.gif',1007,1000000428,'','false','/images/games/fairytales/fairytales16x16.gif',false,11323,'/images/games/fairytales/fairytales100x75.jpg','/images/games/fairytales/fairytales179x135.jpg','/images/games/fairytales/fairytales320x240.jpg','false','/images/games/thumbnails_med_2/fairytales130x75.gif','/exe/fairytales_87653467-setup.exe?lc=en&ext=fairytales_87653467-setup.exe','Real time match-3 quest!','A dynamic, real-time quest through a magical match-3 fairy tale!','false',false,false,'fairytales_microsoftvistaxp_en');ag(510005345,'World&rsquo;s Greatest Places Mahjong','/images/games/worldsgreatestplacesmahjong/worldsgreatestplacesmahjong81x46.gif',1007,1000000186,'','false','/images/games/worldsgreatestplacesmahjong/worldsgreatestplacesmahjong16x16.gif',false,11323,'/images/games/worldsgreatestplacesmahjong/worldsgreatestplacesmahjong100x75.jpg','/images/games/worldsgreatestplacesmahjong/worldsgreatestplacesmahjong179x135.jpg','/images/games/worldsgreatestplacesmahjong/worldsgreatestplacesmahjong320x240.jpg','false','/images/games/thumbnails_med_2/worldsgreatestplacesmahjong130x75.gif','/exe/worldsgreatestplacesmahjong_09123487-setup.exe?lc=en&ext=worldsgreatestplacesmahjong_09123487-setup.exe','Unique mahjong gaming in seven magnificent locations!','Play different types of mahjong in 7 gorgeous locations around the world!','false',false,false,'worldsgreatestplacesmahjong_mi');ag(510005347,'My Kingdom for the Princess III','/images/games/mykingdomfortheprincessiii/mykingdomfortheprincessiii81x46.gif',110127790,1000000472,'','false','/images/games/mykingdomfortheprincessiii/mykingdomfortheprincessiii16x16.gif',false,11323,'/images/games/mykingdomfortheprincessiii/mykingdomfortheprincessiii100x75.jpg','/images/games/mykingdomfortheprincessiii/mykingdomfortheprincessiii179x135.jpg','/images/games/mykingdomfortheprincessiii/mykingdomfortheprincessiii320x240.jpg','false','/images/games/thumbnails_med_2/mykingdomfortheprincessiii130x75.gif','/exe/mykingdomfortheprincess3_86787463-setup.exe?lc=en&ext=mykingdomfortheprincess3_86787463-setup.exe','Rebuild the kingdom as adventures continue!','Defeat the traitors and rebuild the kingdom as adventures continue!','false',false,false,'mykingdomfortheprincessiii_mic');ag(510005350,'Hobby Farm','/images/games/hobbyfarm/hobbyfarm81x46.gif',1000,1000000448,'','false','/images/games/hobbyfarm/hobbyfarm16x16.gif',false,11323,'/images/games/hobbyfarm/hobbyfarm100x75.jpg','/images/games/hobbyfarm/hobbyfarm179x135.jpg','/images/games/hobbyfarm/hobbyfarm320x240.jpg','false','/images/games/thumbnails_med_2/hobbyfarm130x75.gif','/exe/HobbyFarm_58763823-setup.exe?lc=en&ext=HobbyFarm_58763823-setup.exe','Manage Jill\'s island farm!','Harvest exotic fruits and manage livestock on Jill\'s island farm!','false',false,false,'hobbyfarm_microsoftvistaxp_en');ac(1002,'New','darkritual_microsoftvistaxp_en');ag(510005358,'Dark Ritual','/images/games/darkritual/darkritual81x46.gif',1002,1000000497,'','false','/images/games/darkritual/darkritual16x16.gif',false,11323,'/images/games/darkritual/darkritual100x75.jpg','/images/games/darkritual/darkritual179x135.jpg','/images/games/darkritual/darkritual320x240.jpg','false','/images/games/thumbnails_med_2/darkritual130x75.gif','/exe/DarkRitual_43785633-setup.exe?lc=en&ext=DarkRitual_43785633-setup.exe','Find a detective\'s missing sister!','Find a detective\'s missing sister in this hidden object puzzle adventure!','false',false,false,'darkritual_microsoftvistaxp_en');ag(510005359,'Fragile','/images/games/fragile/fragile81x46.gif',110083820,1000000449,'71acdc76-faec-4ba7-9fd9-4c23fc90a5c7','false','/images/games/fragile/fragile16x16.gif',false,11323,'/images/games/fragile/fragile100x75.jpg','/images/games/fragile/fragile179x135.jpg','/images/games/fragile/fragile320x240.jpg','false','/images/games/thumbnails_med_2/fragile130x75.gif','','Stack boxes and organize warehouses.','Take on the job of a warehouse crane operator.','true',false,false,'fragile_adobeflash9player_en');ag(510005361,'The Secret of Hildegards','/images/games/thesecretofhildegards/thesecretofhildegards81x46.gif',1100710,1000000191,'','false','/images/games/thesecretofhildegards/thesecretofhildegards16x16.gif',false,11323,'/images/games/thesecretofhildegards/thesecretofhildegards100x75.jpg','/images/games/thesecretofhildegards/thesecretofhildegards179x135.jpg','/images/games/thesecretofhildegards/thesecretofhildegards320x240.jpg','false','/images/games/thumbnails_med_2/thesecretofhildegards130x75.gif','/exe/TheSecretOfHildegards_64754387-setup.exe?lc=en&ext=TheSecretOfHildegards_64754387-setup.exe','Find Abigail\'s father and wake Adalar!','Help Abigail Hildegard find her father and wake Adalar from his dream!','false',false,false,'thesecretofhildegards_microsof');ag(510005362,'Shiver: The Vanishing Hitchhiker','/images/games/shivervanishinghitchhiker/shivervanishinghitchhiker81x46.gif',1000,1000000510,'','false','/images/games/shivervanishinghitchhiker/shivervanishinghitchhiker16x16.gif',false,11323,'/images/games/shivervanishinghitchhiker/shivervanishinghitchhiker100x75.jpg','/images/games/shivervanishinghitchhiker/shivervanishinghitchhiker179x135.jpg','/images/games/shivervanishinghitchhiker/shivervanishinghitchhiker320x240.jpg','false','/images/games/thumbnails_med_2/shivervanishinghitchhiker130x75.gif','/exe/ShiverVanishingHitchhiker_54674874-setup.exe?lc=en&ext=ShiverVanishingHitchhiker_54674874-setup.exe','Find a hitchhiker who&rsquo;s disappeared!','Track down a vanishing hitchhiker in a hidden object puzzle adventure!','false',false,false,'shivervanishinghitchhiker_micr');ag(510005371,'Corys Lunch Rush','/images/games/coryslunchrush/coryslunchrush81x46.gif',110127790,1000000338,'','false','/images/games/coryslunchrush/coryslunchrush16x16.gif',false,11323,'/images/games/coryslunchrush/coryslunchrush100x75.jpg','/images/games/coryslunchrush/coryslunchrush179x135.jpg','/images/games/coryslunchrush/coryslunchrush320x240.jpg','false','/images/games/thumbnails_med_2/coryslunchrush130x75.gif','/exe/coryslunchrush_56748463-setup.exe?lc=en&ext=coryslunchrush_56748463-setup.exe','Serve up some drive-thru fun!','Serve up some drive-thru fun with Cory at SC’s Restaurant!','false',false,false,'coryslunchrush_microsoftvistax');ag(510005373,'Princess Isabella II','/images/games/princessisabella2/princessisabella281x46.gif',1100710,1000000548,'','false','/images/games/princessisabella2/princessisabella216x16.gif',false,11323,'/images/games/princessisabella2/princessisabella2100x75.jpg','/images/games/princessisabella2/princessisabella2179x135.jpg','/images/games/princessisabella2/princessisabella2320x240.jpg','false','/images/games/thumbnails_med_2/princessisabella2130x75.gif','/exe/PrincessIsabella2_58810397-setup.exe?lc=en&ext=PrincessIsabella2_58810397-setup.exe','Defeat the witch to save the kingdom!','Defeat the witch once and for all to save the kingdom!','false',false,false,'princessisabella2_microsoftvis');ag(510005375,'Mystery of the Missing Brigantine','/images/games/mysteryofthemissingbrigantine/mysteryofthemissingbrigantine81x46.gif',1002,1000000302,'','false','/images/games/mysteryofthemissingbrigantine/mysteryofthemissingbrigantine16x16.gif',false,11323,'/images/games/mysteryofthemissingbrigantine/mysteryofthemissingbrigantine100x75.jpg','/images/games/mysteryofthemissingbrigantine/mysteryofthemissingbrigantine179x135.jpg','/images/games/mysteryofthemissingbrigantine/mysteryofthemissingbrigantine320x240.jpg','false','/images/games/thumbnails_med_2/mysteryofthemissingbrigantine130x75.gif','/exe/MysteryOfTheMissingBrigantine_65784743-setup.exe?lc=en&ext=MysteryOfTheMissingBrigantine_65784743-setup.exe','Save Jack and Elizabeth!','Save Jack and Elizabeth after they disappear in search of sunken treasure!','false',false,false,'mysteryofthemissingbrigantine_');ag(510005379,'Allora and the Broken Portal','/images/games/alloraandthebrokenportal/alloraandthebrokenportal81x46.gif',1000,1000000496,'','false','/images/games/alloraandthebrokenportal/alloraandthebrokenportal16x16.gif',false,11323,'/images/games/alloraandthebrokenportal/alloraandthebrokenportal100x75.jpg','/images/games/alloraandthebrokenportal/alloraandthebrokenportal179x135.jpg','/images/games/alloraandthebrokenportal/alloraandthebrokenportal320x240.jpg','false','/images/games/thumbnails_med_2/alloraandthebrokenportal130x75.gif','/exe/alloraandthebrokenportal_62936541-setup.exe?lc=en&ext=alloraandthebrokenportal_62936541-setup.exe','Repair the broken portal!','Repair the broken portal and save the powerful wizard\'s life!','false',false,false,'alloraandthebrokenportal_micro');ag(510005381,'Voodoo Whisperer','/images/games/voodoowhisperer_stnd/voodoowhisperer_stnd81x46.gif',1000,1000000527,'','false','/images/games/voodoowhisperer_stnd/voodoowhisperer_stnd16x16.gif',false,11323,'/images/games/voodoowhisperer_stnd/voodoowhisperer_stnd100x75.jpg','/images/games/voodoowhisperer_stnd/voodoowhisperer_stnd179x135.jpg','/images/games/voodoowhisperer_stnd/voodoowhisperer_stnd320x240.jpg','false','/images/games/thumbnails_med_2/voodoowhisperer_stnd130x75.gif','/exe/voodoowhisperer_82640175-setup.exe?lc=en&ext=voodoowhisperer_82640175-setup.exe','Wake New Orleans from a deep sleep!','Uncover the dark secrets of voodoo to wake New Orleans from a deep sleep!','false',false,false,'voodoowhisperer_microsoftvista');ag(510005385,'Herofy','/images/games/herofy/herofy81x46.gif',1007,1000000501,'','false','/images/games/herofy/herofy16x16.gif',false,11323,'/images/games/herofy/herofy100x75.jpg','/images/games/herofy/herofy179x135.jpg','/images/games/herofy/herofy320x240.jpg','false','/images/games/thumbnails_med_2/herofy130x75.gif','/exe/herofy_73650167-setup.exe?lc=en&ext=herofy_73650167-setup.exe','Guide your hero through dangerous dungeons!','Guide your hero through dangerous dungeons with puzzle-solving and match-3 gaming!','false',false,false,'herofy_microsoftvistaxp_en');ag(510005386,'Fate Of The Pharaoh','/images/games/fateofthepharaoh/fateofthepharaoh81x46.gif',110127790,1000000532,'','false','/images/games/fateofthepharaoh/fateofthepharaoh16x16.gif',false,11323,'/images/games/fateofthepharaoh/fateofthepharaoh100x75.jpg','/images/games/fateofthepharaoh/fateofthepharaoh179x135.jpg','/images/games/fateofthepharaoh/fateofthepharaoh320x240.jpg','false','/images/games/thumbnails_med_2/fateofthepharaoh130x75.gif','/exe/fateofthepharaoh_92659271-setup.exe?lc=en&ext=fateofthepharaoh_92659271-setup.exe','Build your glorious Egyptian empire!','Rebuild the glorious cities of Egypt in this strategic time management!','false',false,false,'fateofthepharaoh_microsoftvist');ag(510005387,'Epic Escapes','/images/games/epicescapesdarkseas/epicescapesdarkseas81x46.gif',1100710,1000000183,'','false','/images/games/epicescapesdarkseas/epicescapesdarkseas16x16.gif',false,11323,'/images/games/epicescapesdarkseas/epicescapesdarkseas100x75.jpg','/images/games/epicescapesdarkseas/epicescapesdarkseas179x135.jpg','/images/games/epicescapesdarkseas/epicescapesdarkseas320x240.jpg','false','/images/games/thumbnails_med_2/epicescapesdarkseas130x75.gif','/exe/epicescapesdarkseas_83519048-setup.exe?lc=en&ext=epicescapesdarkseas_83519048-setup.exe','Uncover secrets of a capsized ship!','Uncover secrets of a capsized ship in a hidden object puzzle adventure!','false',false,false,'epicescapesdarkseas_microsoftv');ag(510005390,'The Agency of Anomalies','/images/games/theagencyofanomalies/theagencyofanomalies81x46.gif',1002,1000000545,'','false','/images/games/theagencyofanomalies/theagencyofanomalies16x16.gif',false,11323,'/images/games/theagencyofanomalies/theagencyofanomalies100x75.jpg','/images/games/theagencyofanomalies/theagencyofanomalies179x135.jpg','/images/games/theagencyofanomalies/theagencyofanomalies320x240.jpg','false','/images/games/thumbnails_med_2/theagencyofanomalies130x75.gif','/exe/theagencyofanomalies_94619286-setup.exe?lc=en&ext=theagencyofanomalies_94619286-setup.exe','Join the Agency of Anomalies!','Become a special agent and investigate a secretive military hospital!','false',false,false,'theagencyofanomalies_microsoft');ag(510005396,'Hidden World','/images/games/hiddenworld/hiddenworld81x46.gif',110127790,1000000544,'','false','/images/games/hiddenworld/hiddenworld16x16.gif',false,11323,'/images/games/hiddenworld/hiddenworld100x75.jpg','/images/games/hiddenworld/hiddenworld179x135.jpg','/images/games/hiddenworld/hiddenworld320x240.jpg','false','/images/games/thumbnails_med_2/hiddenworld130x75.gif','/exe/hiddenworld_07193756-setup.exe?lc=en&ext=hiddenworld_07193756-setup.exe','Restore a ruined, once-beautiful land!','Use magic and manpower to restore a world destroyed by an evil wizard!','false',false,false,'hiddenworld_microsoftvistaxp_e');ag(510005401,'DreamWoods 2: Puzzle Adventure','/images/games/dreamwoods2/dreamwoods281x46.gif',1007,1000000123,'','false','/images/games/dreamwoods2/dreamwoods216x16.gif',false,11323,'/images/games/dreamwoods2/dreamwoods2100x75.jpg','/images/games/dreamwoods2/dreamwoods2179x135.jpg','/images/games/dreamwoods2/dreamwoods2320x240.jpg','false','/images/games/thumbnails_med_2/dreamwoods2130x75.gif','/exe/dreamwoods2_01847294-setup.exe?lc=en&ext=dreamwoods2_01847294-setup.exe','Enter a world of magical match-3 puzzles!','Enter a world of magical match-3 puzzles to defeat Emmy\'s enemies!','false',false,false,'dreamwoods2_microsoftvistaxp_e');ag(510005406,'Farm Frenzy - Viking Heroes','/images/games/farmfrenzyvikingheroes/farmfrenzyvikingheroes81x46.gif',110127790,1000000547,'','false','/images/games/farmfrenzyvikingheroes/farmfrenzyvikingheroes16x16.gif',false,11323,'/images/games/farmfrenzyvikingheroes/farmfrenzyvikingheroes100x75.jpg','/images/games/farmfrenzyvikingheroes/farmfrenzyvikingheroes179x135.jpg','/images/games/farmfrenzyvikingheroes/farmfrenzyvikingheroes320x240.jpg','false','/images/games/thumbnails_med_2/farmfrenzyvikingheroes130x75.gif','/exe/farmfrenzyvikingheroes_80232745-setup.exe?lc=en&ext=farmfrenzyvikingheroes_80232745-setup.exe','Raise ye olde animals!','Raise ye olde animals and produce ye olde goods!','false',false,false,'farmfrenzyvikingheroes_microso');ag(510005407,'The Flying Dutchman - In The Ghost Prison','/images/games/intheghostprison/intheghostprison81x46.gif',1007,1000000588,'','false','/images/games/intheghostprison/intheghostprison16x16.gif',false,11323,'/images/games/intheghostprison/intheghostprison100x75.jpg','/images/games/intheghostprison/intheghostprison179x135.jpg','/images/games/intheghostprison/intheghostprison320x240.jpg','false','/images/games/thumbnails_med_2/intheghostprison130x75.gif','/exe/intheghostprison_01644084-setup.exe?lc=en&ext=intheghostprison_01644084-setup.exe','Meet pirates, get the gold!','Challenge the pirate crew of the ghost ship, the Flying Dutchman!','false',false,false,'intheghostprison_microsoftvist');ag(510005408,'Hidden Mysteries: Notre Dame','/images/games/hiddenmysteriesnotredame/hiddenmysteriesnotredame81x46.gif',1002,1000000551,'','false','/images/games/hiddenmysteriesnotredame/hiddenmysteriesnotredame16x16.gif',false,11323,'/images/games/hiddenmysteriesnotredame/hiddenmysteriesnotredame100x75.jpg','/images/games/hiddenmysteriesnotredame/hiddenmysteriesnotredame179x135.jpg','/images/games/hiddenmysteriesnotredame/hiddenmysteriesnotredame320x240.jpg','false','/images/games/thumbnails_med_2/hiddenmysteriesnotredame130x75.gif','/exe/hiddenmysteriesnotredame_09812347-setup.exe?lc=en&ext=hiddenmysteriesnotredame_09812347-setup.exe','Find the Crown of Thorns!','Find the precious Crown of Thorns, missing from Notre Dame Cathedral!','false',false,false,'hiddenmysteriesnotredame_micro');ag(510005409,'My Life Story: Adventures','/images/games/mylifestoryadventures/mylifestoryadventures81x46.gif',1002,1000000562,'','false','/images/games/mylifestoryadventures/mylifestoryadventures16x16.gif',false,11323,'/images/games/mylifestoryadventures/mylifestoryadventures100x75.jpg','/images/games/mylifestoryadventures/mylifestoryadventures179x135.jpg','/images/games/mylifestoryadventures/mylifestoryadventures320x240.jpg','false','/images/games/thumbnails_med_2/mylifestoryadventures130x75.gif','/exe/mylifestoryadventures_02856739-setup.exe?lc=en&ext=mylifestoryadventures_02856739-setup.exe','Discover your life’s true calling!','Set off on a whimsical adventure to discover your true calling!','false',false,false,'mylifestoryadventures_microsof');ag(510005413,'Bubble Bonanza','/images/games/bubblebonanza/bubblebonanza81x46.gif',1002,1000000555,'','false','/images/games/bubblebonanza/bubblebonanza16x16.gif',false,11323,'/images/games/bubblebonanza/bubblebonanza100x75.jpg','/images/games/bubblebonanza/bubblebonanza179x135.jpg','/images/games/bubblebonanza/bubblebonanza320x240.jpg','false','/images/games/thumbnails_med_2/bubblebonanza130x75.gif','/exe/bubblebonanza_09176543-setup.exe?lc=en&ext=bubblebonanza_09176543-setup.exe','Destroy evil bubble creatures!','Save the world from evil bubble creatures in a marble-shooting match-3 arcade!','false',false,false,'bubblebonanza_microsoftvistaxp');ag(510005423,'Sphera','/images/games/sphera/sphera81x46.gif',1100710,1000000566,'','false','/images/games/sphera/sphera16x16.gif',false,11323,'/images/games/sphera/sphera100x75.jpg','/images/games/sphera/sphera179x135.jpg','/images/games/sphera/sphera320x240.jpg','false','/images/games/thumbnails_med_2/sphera130x75.gif','/exe/sphera_68310467-setup.exe?lc=en&ext=sphera_68310467-setup.exe','Embark on a dangerous journey!','Embark on a dangerous journey into a lonely young girl’s imagination!','false',false,false,'sphera_microsoftvistaxp_en');ag(510005425,'Rescue Frenzy','/images/games/rescuefrenzy/rescuefrenzy81x46.gif',1002,1000000587,'','false','/images/games/rescuefrenzy/rescuefrenzy16x16.gif',false,11323,'/images/games/rescuefrenzy/rescuefrenzy100x75.jpg','/images/games/rescuefrenzy/rescuefrenzy179x135.jpg','/images/games/rescuefrenzy/rescuefrenzy320x240.jpg','false','/images/games/thumbnails_med_2/rescuefrenzy130x75.gif','/exe/rescuefrenzy_09871234-setup.exe?lc=en&ext=rescuefrenzy_09871234-setup.exe','Guide courageous rescue workers!','Save a town before Mother Nature wipes it off the map!','false',false,false,'rescuefrenzy_microsoftvistaxp_');ag(510005430,'Dracula Love Kills','/images/games/draculalovekills/draculalovekills81x46.gif',1002,1000000591,'','false','/images/games/draculalovekills/draculalovekills16x16.gif',false,11323,'/images/games/draculalovekills/draculalovekills100x75.jpg','/images/games/draculalovekills/draculalovekills179x135.jpg','/images/games/draculalovekills/draculalovekills320x240.jpg','false','/images/games/thumbnails_med_2/draculalovekills130x75.gif','/exe/draculalovekills_83746501-setup.exe?lc=en&ext=draculalovekills_83746501-setup.exe','The Queen of Vampires is back!','The Queen of Vampires is back and determined to destroy the world!','false',false,false,'draculalovekills_microsoftvist');ag(510005432,'Dominion','/images/games/dominion/dominion81x46.gif',110015873,1000000540,'be39d5b5-9358-4075-97eb-204364b8228a','false','/images/games/dominion/dominion16x16.gif',false,11323,'/images/games/dominion/dominion100x75.jpg','/images/games/dominion/dominion179x135.jpg','/images/games/dominion/dominion320x240.jpg','false','/images/games/thumbnails_med_2/dominion130x75.gif','','Defense Game','Restore peace to the magical kingdom of Morphilia.','true',false,false,'dominion_adobeflash9player_en');ag(510005433,'Roads of Rome 2','/images/games/RoadsofRome2/RoadsofRome281x46.gif',110015873,1000000662,'bca78be3-dcd9-4e97-9b85-92a8ed07f2bf','false','/images/games/RoadsofRome2/RoadsofRome216x16.gif',false,11323,'/images/games/RoadsofRome2/RoadsofRome2100x75.jpg','/images/games/RoadsofRome2/RoadsofRome2179x135.jpg','/images/games/RoadsofRome2/RoadsofRome2320x240.jpg','false','/images/games/thumbnails_med_2/RoadsofRome2130x75.gif','','Lead Victorius\' Quest to Save Caesar!','Lead Victorius\' quest to save Caesar in a strategy and time management adventure!','true',false,false,'roadsofrome2_adobeflash9player');ag(510005435,'Tales from the Dragon Mountain','/images/games/talesfromthedragonmountain/talesfromthedragonmountain81x46.gif',1002,1000000192,'','false','/images/games/talesfromthedragonmountain/talesfromthedragonmountain16x16.gif',false,11323,'/images/games/talesfromthedragonmountain/talesfromthedragonmountain100x75.jpg','/images/games/talesfromthedragonmountain/talesfromthedragonmountain179x135.jpg','/images/games/talesfromthedragonmountain/talesfromthedragonmountain320x240.jpg','false','/images/games/thumbnails_med_2/talesfromthedragonmountain130x75.gif','/exe/talesfromthedragonmountain_09812367-setup.exe?lc=en&ext=talesfromthedragonmountain_09812367-setup.exe','Defeat Strix, the evil spirit!','Defeat the evil spirit Strix in a hidden object adventure!','false',false,false,'talesfromthedragonmountain_mic');ag(510005443,'Penguins Can Fly','/images/games/penguinscanfly/penguinscanfly81x46.gif',110015873,1000000490,'a6769dc6-9133-4d68-bf4f-8a22bb2ab88a','false','/images/games/penguinscanfly/penguinscanfly16x16.gif',false,11323,'/images/games/penguinscanfly/penguinscanfly100x75.jpg','/images/games/penguinscanfly/penguinscanfly179x135.jpg','/images/games/penguinscanfly/penguinscanfly320x240.jpg','false','/images/games/thumbnails_med_2/penguinscanfly130x75.gif','','Help the penguin to win!','Collect coins and fishes. Help the penguin to win!','true',false,false,'penguinscanfly_adobeflash9play');ag(510005448,'4 Elements II','/images/games/4elementsii/4elementsii81x46.gif',1002,1000000648,'','false','/images/games/4elementsii/4elementsii16x16.gif',false,11323,'/images/games/4elementsii/4elementsii100x75.jpg','/images/games/4elementsii/4elementsii179x135.jpg','/images/games/4elementsii/4elementsii320x240.jpg','false','/images/games/thumbnails_med_2/4elementsii130x75.gif','/exe/4elementsii_98767898-setup.exe?lc=en&ext=4elementsii_98767898-setup.exe','Set the fairies free!','Set the fairies free and restore the book of magic!','false',false,false,'4elementsii_microsoftvistaxp_e');ag(510005454,'Honey Words','/images/games/honeywords/honeywords81x46.gif',110015873,1000000567,'10d99ff1-7033-4ded-8f60-2bbe8a03f3a6','false','/images/games/honeywords/honeywords16x16.gif',false,11323,'/images/games/honeywords/honeywords100x75.jpg','/images/games/honeywords/honeywords179x135.jpg','/images/games/honeywords/honeywords320x240.jpg','false','/images/games/thumbnails_med_2/honeywords130x75.gif','','Turn words into sweet-sweet honey!','Turn words into sweet-sweet honey! Can you fill all the jars?','true',false,false,'honeywords_adobeflash9player_e');}
GameCatalog.CurrentProcessing();delete GameCatalog.CurrentProcessing;//::: PresenceCatalog 00:00:00.5156316
// Presence catalog namespace
if (window.PresenceCatalog == null) 
	PresenceCatalog = {};

// Lobby / Lobbies
PresenceCatalog.Lobbies = {};

PresenceCatalog.Lobbies.All = [];
PresenceCatalog.Lobbies.All.ByLobby = {};
PresenceCatalog.Lobbies.All.BySku = {};
PresenceCatalog.addLobby = function( lobbyID, numberOfPlayers )
{
	var newLobby = 
			{ 
				LobbyID : lobbyID,
				NumberOfPlayers : numberOfPlayers
			};
    this.Lobbies.All[this.Lobbies.All.length] = newLobby;
    this.Lobbies.All.ByLobby[newLobby.LobbyID] = newLobby;
}

PresenceCatalog.addLobbySku = function( sku, lobbyID, numberOfPlayers )
{
	var newLobby = 
			{ 
				LobbyID : lobbyID,
				NumberOfPlayers : numberOfPlayers
			};
    this.Lobbies.All[this.Lobbies.All.length] = newLobby;
    this.Lobbies.All.BySku[sku] = newLobby;
}

PresenceCatalog.addLobbySku2 = function( sku, lobbyID, numberOfPlayers, membersAutoPlayRoomURL, nonMembersAutoPlayRoomURL )
{
    var newLobby = 
            {
                LobbyID             : lobbyID,
				NumberOfPlayers     : numberOfPlayers,
				MembersRoomURL      : membersAutoPlayRoomURL,
                NonMembersRoomURL   : nonMembersAutoPlayRoomURL
            }
    this.Lobbies.All[this.Lobbies.All.length] = newLobby;
    this.Lobbies.All.BySku[sku] = newLobby;
}

// Room / Rooms
PresenceCatalog.Rooms = {};

PresenceCatalog.Rooms.All = [];
PresenceCatalog.Rooms.All.ByRoom = {};
PresenceCatalog.addRoom = function( roomID, numberOfPlayers )
{
	var newRoom = 
			{
				RoomID : roomID,
				NumberOfPlayers : numberOfPlayers
			};

    this.Rooms.All[this.Rooms.All.length] = newRoom;
    this.Rooms.All.ByRoom[newRoom.RoomID] = newRoom;
}

PresenceCatalog.Rooms.All.ByCategory = {};
PresenceCatalog.addCategory = function( categoryCODE,numberOfPlayers )
{
	var newCategory = 
			{
				CategoryCODE : categoryCODE,
				NumberOfPlayers : numberOfPlayers
			};

    this.Rooms.All.ByCategory[categoryCODE] = newCategory;
}

PresenceCatalog.getTopPlayedSkus = function(iTop) 
{
    var topSkus = new Array();
    var allSkus = new Array();
    for (sku in this.Lobbies.All.BySku)
    {
        var currElement = 
            {
                Sku             : sku,
                NumberOfPlayers : this.Lobbies.All.BySku[sku].NumberOfPlayers
            };
        allSkus[allSkus.length] = currElement;
    }
    allSkus.sort(PresenceCatalog.getTopPlayedSkus.sortSkus);
    
    for (index = 0; index < allSkus.length && index < iTop; ++index)
    {
        topSkus[topSkus.length] = allSkus[index].Sku;
    }
    return topSkus;
}

PresenceCatalog.getTopPlayedSkus.sortSkus = function(a, b)
{
    return b.NumberOfPlayers - a.NumberOfPlayers;
}

// place holder (the whole community)
PresenceCatalog.NumberOfPlayers = 0;
//::: Flash.js 00:00:00.5156316
Flash = Class.create();


/**
 * a list of all settings that are not coppied directly from the 
 * settings object to the rendered output, 
 * either because they are syntax related, or because they are for 
 * internal use
 */
Flash.nonAttributeSettings = ['targetElement', 'log', 'id'
							 ,'classid','codebase','type','pluginspage', 'src'
							 ];
/**
 * a list of all settings that must be presented as <param> in <object> syntax
 * @type Array
 */
Flash.objectParams = ['bgcolor','quality','wmode','base','menu'
                     ,'scale','swremote','loop','salign'
                     ,'devicefont','embedmovie','seemlesstabbing'
                     ,'allowFullScreen'
					 ,'flashvars','allowscriptaccess'];

/**
 * default settings 
 * @type Object
 */
Flash.defaultSettings = 
	{	classid		: "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	,	codebase	: "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
	,	type		: "application/x-shockwave-flash"
	,	pluginspage	: "http://www.macromedia.com/go/getflashplayer"
	}

/**
 * @param {String} sSwfUrl 
 *  The Url to the presented swf file
 * @param {Object(optional)} oSettings 
 *	Supports the folowing settings<ol>
 *  <li>height
 *  <li>width
 *  <li>menu
 *  <li>wmode
 *  <li>quality
 *  <li>allowScriptAccess
 *  <li>wmode
 *  <li>base 
 *  </ol>
 * @param {String(optional)} sNoSettingsAttributes
 * This optional parameter allows the oSettings parameter to be provided 
 * with properties that should not be copied as flash settings. <br>
 * The usage is when the passed object is used as a setting object for other uses,
 * and contain attributes that must not be coppied to the flash object
 */
Flash.prototype.initialize = function(sSwfUrl, oSettings, sNoSettingsAttributes)
{
	/**
	 * The displayed movie
	 * @type String
	 */
	this.swfUrl = sSwfUrl;
	/**
	 * the settings object
	 * @type Object
	 */
	this.settings = Object.extend({}, this.constructor.defaultSettings);
	sNoSettingsAttributes = "," + sNoSettingsAttributes + ",";
	var each;
	for(each in oSettings)
		if (sNoSettingsAttributes.indexOf("," + each + ",") == -1)
			this.settings[each] = oSettings[each];

	/**
	 * The logger
	 * @type Log4Js.Logger
	 */
	this.log = this.settings.log || new Log4Js.Logger(this.settings.id || this.settings.targetElement &&  this.settings.targetElement != document || this.swfUrl || "Blank Flash instance")
	delete this.settings.log;

	/**
	 * the target DOM Container (or its ID as a string)
	 * @type DOMContainer|String
	 */
	this.targetElement = this.settings.targetElement;
	delete this.settings.targetElement;

	/**
	 * Holds the syntax to use ( object | embed ), based on the detected browser type
	 * <code>object</code> syntax is used on IE based browsers, on Windows only, except Opera.<br>
	 * The var is initiated in {@link Flash#render} method.
	 * @type String
	 */
	this.useSyntax = null;

	/**
	 * The HTML prepared and returned by {@link Flash#render}
	 * @type String
	 */
	 this.HTML = null;

	/**
	 * Holds all the key-values of all attributes for the tag.
	 * key-value pairs are collected by the used syntax (object or embed)
	 * @type prototype:Hash
	 */
	this.attributes = $H();

	/**
	 * Holds all the key-values of all params for the tag
	 * key-value pairs are collected by the used syntax
	 * @type prototype:Hash
	 */
	this.params = $H();

	//if the targetElement and the swf are provided - perform the render 
	if (this.targetElement && this.swfUrl) 
	{
		this.render(this.targetElement);
	}

}
/**
 * returns the syntax for the run-time environment.
 * <code>object</code> syntax is used on IE based browsers, on Windows only, except Opera.<br>
 * @type String
 * @returns 'object' or 'embed', depening on the run-time environment
 * @overridable
 */
Flash.prototype.getTagSyntax = function()
{
	var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
	var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
	var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

	return (isIE && isWin && !isOpera)? 'object': 'embed';
}

/**
 * copy all supported attributes that are populated in settings to attributes
 * @private
 */
Flash.prototype.prv_prepareAttributes = function()
{
	var attribute; 
	for(attribute in this.settings)
	{
		if(Flash.nonAttributeSettings.indexOf(attribute) != -1) continue;
		this.attributes[attribute] = this.settings[attribute];
	}
}

/**
 * move attributes to param for '<object>' syntax
 * @private
 */
Flash.prototype.prv_moveAttributesToParams = function()
{

	var attribute;
	for (attribute in this.attributes)
	{
		if (typeof(this.attributes[attribute]) == 'function' ) continue;
		if( Flash.objectParams.indexOf( attribute.toLowerCase() ) != -1)
		{
			this.params[attribute] = this.attributes[attribute];
			delete this.attributes[attribute];
		}
	}
}

/**
 * emmits into the provided <codE>out</code> array the output of the 
 * attributes prepared at this.attributes according the prepared syntax
 * @private
 */
Flash.prototype.prv_renderAttributes = function(out)
{
	this.attributes.each(
		function(kv,i)
		{
			out[out.length] = ' ';
			out[out.length] = kv[0];
			out[out.length] = '="';
			out[out.length] = kv[1];
//			out[out.length] = escape(kv[1]);
			out[out.length] = '"';
		}
	);
	out[out.length] = ">\n";
}
/**
 *
 */
Flash.prototype.prv_renderParams = function(out)
{
	if(this.useSyntax != 'object') return;
	this.params.movie = this.swfUrl;
	this.params.each(
		function(kv,i)
		{
			out[out.length] = '<param name="';
			out[out.length] = kv[0];
			out[out.length] = '" value="';
			out[out.length] = kv[1];
			//out[out.length] = escape(kv[1]);
			out[out.length] = '"/>\n';
		}
	);
}
/**
 * bag of method references used to open the tag, according to the required syntax
 * on the constructor, the bag is overriden by the reference of the method that implements the required syntax.
 * @private
 */
Flash.prototype.prv_renderOpenTag = 
{	object: function(out)
			{
				out[out.length] = '<object classid="';
				out[out.length] = this.settings.classid;
				out[out.length] = '"\n\t codebase="'; 
				out[out.length] = this.settings.codebase;
				out[out.length] = '"\n\t id="'; 
				out[out.length] = this.objectID;
				out[out.length] = '"\n\t';
			}
,	embed : function(out)
			{
				out[0] = out[1] = out[2] = "";
				out.push('<embed type="');
				out.push(this.settings.type);
				out.push('" pluginspage="');
				out.push(this.settings.pluginspage);
				out.push('" name="');
				out.push(this.objectID);
 				out.push('" src="');
				out.push(this.swfUrl);
				out.push('"');
			}
}

/**
 * bag of method references used to close the tag, according to the required syntax
 * on the constructor, the bag is overriden by the reference of the method that implements the required syntax.
 * @private
 */
Flash.prototype.prv_renderCloseTag = 
{	object: function(out)
			{
				out[out.length] = "</object>";
			}

,	embed : function(out)
			{
				out.push("</embed>");
			}
}


/**
 * returns the HTML for the flash-tag in the syntax relevant for the run-time environment 
 * if target element is provided - renders the HTML into it.<br>
 * <code>targetElement</codE> can be provided as an argument, or as entry on <code>settings</code> arguments to the constructor.
 * The returned HTML is also kept on {@link Flash#HTML}.
 *
 * @param {String} targetElement
 * the ID of the DOM Container to render the Flash tag into.<br>
 * When not provided - <code>this.settings.targetElement</code> is used.
 *
 * @type String
 * @returns the prepared HTML for the flash tag
 */
Flash.prototype.render = function(targetElement)
{
	//detect the right syntax
	this.useSyntax = this.getTagSyntax();

	//get browser-dependent open and close tag method-references
	if(typeof(this.prv_renderOpenTag  ) != 'function') this.prv_renderOpenTag = this.prv_renderOpenTag[this.useSyntax];
	if(typeof(this.prv_renderCloseTag ) != 'function') this.prv_renderCloseTag = this.prv_renderCloseTag[this.useSyntax];

	//copy all supported attributes that are populated in settings to attributes
	this.prv_prepareAttributes();

	//move attributes to param for '<object>' syntax
	if (this.useSyntax == 'object')	this.prv_moveAttributesToParams();

	//find the target element;	
	if (!targetElement) 
		targetElement = 
			this.targetElement = 
				this.settings.targetElement || this.targetElement;

	//if the object is not in the DOM yet 
	if( targetElement && !$(targetElement) )
	{
		//if the name exists in postLoadRender collection - we're on the onLoad already
		if(!Flash.postLoadRender[targetElement])
		{
			Flash.postLoadRender[targetElement] =
				Flash.postLoadRender[Flash.postLoadRender.length] =
					this;
			return;
		}
	}

	//get the object
	targetElement = $(targetElement);

	//get or create objectID
	this.objectID = this.settings.id || ((targetElement)? targetElement.id + "_Flash" : "avatar_Flash");

	var out = [];
	this.prv_renderOpenTag(out);
	this.prv_renderAttributes(out);
	this.prv_renderParams(out);
	this.prv_renderCloseTag(out);

	out = out.join("");

	var o = $(this.objectID);
	if (o)
	{
		o.parentNode.removeChild(o);
	}

	if( targetElement === document)
		document.write(out);
	else if( $(targetElement) )
		targetElement.innerHTML = out;

	this.HTML = out;

	return out;
}
/**
 * a collection of all Flash instances that were provided 
 * a target-element and a swf name, but thier target was not 
 * found in the dom by the time of the eval of this file.
 * @type Array
 * @private
 */
Flash.postLoadRender = [];

/**
 * fires on load of the window. 
 * attached by Event.observe with the eval of this file
 */
Flash.renderPostLoad = function()
{
	var arr = Flash.postLoadRender;
	for(var i = 0 ; i < arr.length; i++) arr[i].render();
}
Event.observe(window, "load", Flash.renderPostLoad);


/**
 * gets a reference to the node in the dom of the <code>object</code> or <code>embed</code>
 *
 * @param {String(optional)} movieName
 * The ID of the object tag to retrieve. When not provided - assumes the current objectID.
 */
Flash.prototype.getFlashMovieObject = function (movieName)
{
	if( !movieName ) movieName = this.objectID;

	if (window.document[movieName]) 
	{
		return window.document[movieName];
	}
	if (navigator.appName.indexOf("Microsoft Internet")==-1)
	{
		if (document.embeds && document.embeds[movieName])
			return document.embeds[movieName]; 
	}
	else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
	{
		return document.getElementById(movieName);
	}
}//::: AvatarViewer 00:00:00.5312568

if(!window.GameCatalog)GameCatalog={};GameCatalog.AvatarViewer=Class.create("UA.User");GameCatalog.AvatarViewer.defaultSettings={movie:"/Community/avatars/2.0/FAV.swf",tinyAvatarCashedURL:undefined,tinyAvatarLiveURL:undefined,height:200,width:150,wmode:"transparent",base:"",quality:"high",bgcolor:"#ffffff",menu:false,allowscriptaccess:true,showTypes:""}
GameCatalog.AvatarViewer.internalSettings='channel,targetElement,nickname,cookieData,log,guestAvatarXML,tinyAvatarCashedURL,tinyAvatarLiveURL,movie,showTypes'
GameCatalog.AvatarViewer.prototype.initialize=function(oSettings)
{this.settings=Object.extend(GameCatalog.AvatarViewer.defaultSettings);this.settings=Object.extend(this.settings,oSettings||{});Claim.isString(this.settings.tinyAvatarCashedURL,"default setting [tinyAvatarCashedURL] is not initiated and not provided on oSettings constructor argument.")
Claim.isString(this.settings.tinyAvatarLiveURL,"default setting [tinyAvatarLiveURL] is not initiated and not provided on oSettings constructor argument.")
Claim.isString(this.settings.guestAvatarXML,"default setting [guestAvatarXML] is not initiated and not provided on oSettings constructor argument.")
this.log=this.settings.logger;if(typeof(this.log)=='string')this.log=new Log4Js.Logger("this.log");if(!this.log)this.log=new Log4Js.Logger("AvatarViewer");Claim.isTrue(this.log instanceof Log4Js.Logger,"settings.log can be ither a Log4Js.Logger or a string to be used as logger-name");this.log.debug("creating Flash worker-instance");this.fav=new Flash(this.settings.movie,this.settings,GameCatalog.AvatarViewer.internalSettings);}
GameCatalog.AvatarViewer.prototype.prv_isInternalSettings=function(sSettingName)
{return-1!=GameCatalog.AvatarViewer.internalSettings.indexOf(','+sSettingName.toLowerCase()+',');}
GameCatalog.AvatarViewer.prototype.getCookieData=function()
{return Clearance.getMagic(Clearance.UNCLASSIFIED);}
GameCatalog.AvatarViewer.prototype.useLiveProcessing=function()
{if(this.settings.nickname)
{return false;}
else
{return true;}}
GameCatalog.AvatarViewer.prototype.appendUserIdentification=function(baseUrl)
{if(this.settings.nickname)
{this.log.debug("nickname found on settings object: "+this.settings.nickname);baseUrl=Url.appendParamValue(baseUrl,"channel",this.settings.channel);baseUrl+=("&nickname="+encodeURIComponent(this.settings.nickname));}
else
{var magic=this.settings.cookieData||this.getCookieData();if(!magic)
{this.log.debug("no credentials nor nickname provided - guest avatar assumend");return this.settings.guestAvatarXML;}
this.log.debug("cookieData: "+magic);baseUrl=Url.appendParamValue(baseUrl,"cookiedata",magic);}
return baseUrl;}
GameCatalog.AvatarViewer.prototype.render=function(targetElement)
{if(!targetElement)targetElement=this.settings.targetElement;targetElement=$(targetElement);var useLiveProcessingURL=this.useLiveProcessing();var avatarBaseURLSetting=(useLiveProcessingURL)?"tinyAvatarLiveURL":"tinyAvatarCashedURL";var avatarURL=this.settings[avatarBaseURLSetting];this.log.debug("Selected avatarBaseURL : "+avatarURL);avatarURL=this.appendUserIdentification(avatarURL);this.log.debug("avatarURL : "+avatarURL);this.fav.settings.flashvars=["CurrentAvatarUrl=",escape(avatarURL),"&showmytypes=",escape(this.settings.showTypes)].join("");this.log.info("prepared flashvars: "+this.fav.settings.flashvars);this.fav.settings.flashvars=this.fav.settings.flashvars.replace(/https/gi,'http');this.log.info("flashvars:"+this.fav.settings.flashvars);this.HTML=this.fav.render(targetElement);this.log.debug("avatar viewer HTML: "+this.HTML.replace(/\</g,"&lt;"));return this.HTML;}//::: ChannelConfig 00:00:00.5312568

initLogger = new Log4Js.Logger("Catalog.Congfig"); //----------------------------------------------------------------------------

try{ 
	Claim.isObject(GameCatalog.AvatarViewer, "the script that defines GameCatalog.AvatarStudio must be initiated before the call to the script that configs catalog utils"); 
	Claim.isObject(GameCatalog.AvatarViewer.defaultSettings,"the script that defines GameCatalog.AvatarStudio.defaultSettings must be initiated before the call to the script that configs catalog utils"); 
	Object.extend
	( 
		GameCatalog.AvatarViewer.defaultSettings , 
		{
			tinyAvatarLiveURL : Url.appendParamValue(UA.User.prototype.GET_AVATAR_URL , "type","tiny") 
			,tinyAvatarCashedURL: Url.appendParamValue(UA.User.prototype.GET_CACHED_AVATAR_URL, "type", "tiny") 
			,guestAvatarXML : "/community/avatars/skins/defaultfederation//config/NoAvatar.xml"
			,showTypes : "~glasses~hair~face~skull~shirt~beard~background~body~jewelry~hats~"
			,movie : "/community/avatars/2.1/FAV.swf" ,channel : UA.CHANNEL 
		} 
	);

	GameCatalog.AvatarViewer.initiated = true; 
	}
	catch(e){ initLogger.warn("Failed initiating GameCatalog.AvatarViewer: " + Serialize(e) )
} 
//----------------------------------------------------------------------------
//::: Legacy JavaScript 00:00:00.5625072

/************ START /javascript/2100/TC.Utils.js ***********/


/* === TMP FIXES ON PRODUCT UTILS === */
//-=-=-=-=-=- Enhances on Object -=-=-=-=-=-
Object.clone = function(obj) {
    return this.extend({}, obj);
}
/**
* @param {variant} value
* @returns pseodo-JSON serialization of the variant
* @type string
*/
Object.serialize = function(value) {
    var arrObjs = [];
    // ser is defined here so it could see arrObjs, 
    // and make sure there is no endless recursion, 
    // or objects that are serialized twice in a same tree
    function ser(v) {
        switch (typeof (v)) {
            case 'NaN': return "NaN";
            case 'undefined': return "undefined";
            case 'boolean': return (v).toString();
            case 'number': return (isFinite(v)) ? (v).toString() : "\"Infinity\"";
            case 'string': return "\"" + v.replace(/\"/g, "\\\"") + "\"";
            case 'function': return "{function}";
        }
        // handle objects
        if (v == null) return "null";
        if (v instanceof Date) return "new Date(" + v.getTime() + ")";
        if (v instanceof Array) {
            var i, arr = [];

            if (GameCatalog.TagSkuLinks
			   && v.byWeight == GameCatalog.TagSkuLinks.prototype.byWeight
 			   )
                return "[GameCatalog.TagSkuLinks,length: " + v.length + "]";

            if (GameCatalog.SkuTagLinks
			   && v.byWeight == GameCatalog.SkuTagLinks.prototype.byWeight)
                return "[GameCatalog.SkuTagLinks,length: " + v.length + "]";

            for (i = 0; i < v.length; i++)
                arr[arr.length] = ser(v[i]);

            return "[" + arr.toString() + "]";
        }

        //serialize an unknown object
        // - prevent recursive serialization
        if (arrObjs.indexOf(v) != -1) {
            return "\"*ref" + ((v.id) ? "-id:" + v.id : ((v.name) ? "-name:" + v.name : ":" + v.toString())) + "\"";
        }
        arrObjs[arrObjs.length] = v;


        //handle html-dom-nodes
        if (v.parentNode && v.attributes && (v.children || v.childNodes) && v.tagName) {
            var i, e = { tagName: v.tagName
						, parent: v.parentNode.tagName
						, innerHTML: "\"" + v.innerHTML.replace(/"/g, "\\\"").replace(/</g, "&lt;") + "\""
            };
            for (i = 0; i < v.attributes.length; i++)
                if (v.attributes[i].value && v.attributes[i].value != "null")
                e[v.attributes[i].name] = v.attributes[i].value;

            return ser(e);
        }

        // - do the serializing...
        var each, arr = [];
        // Note: the for-each could throw for activeX objects and such
        try {
            for (each in v) {
                if (null !== v[each])
                    arr[arr.length] = each + ":" + ser(v[each]);
            }
            return "{" + arr.toString() + "}";

        } catch (ex) {
            return "\"-error in serializing: " + ex.message + "-\""
        }
    }

    return ser(value);
}

/**
* copies properties to destination from source only when they are totally undefined on the destination.
*
* @param {object} destination
*
* @param {object} source
*/
Object.safeExtend = function(destination, source) {
    for (property in source) {
        if (undefined === destination[property])
            destination[property] = source[property];
    }
    return destination;
}

//-=-=-=-=-=- /Enhances on Object -=-=-=-=-=-
//-=-=-=-=-=- Enhances on Class -=-=-=-=-=-
/**
* Creates a constructor function.
* When provided a parent - it createa a subclass of the provided parent,
* or throws an error.
* 
* @param {string|function(optional)} parent
*  The parent class name in string, or a reference to the parent class constructor
*/
// - fix: allow it to accept (parent) and link inheritance.
Class.create = function(parent) {
    var fConstr = function() {
        var arrCtors = [];
        var fConstructor = this.constructor;
        do {
            //fConstructor could be a system class that doesn't implement initialize
            if ('function' == typeof (fConstructor.prototype.initialize))
                arrCtors[arrCtors.length] = fConstructor.prototype.initialize;
            fConstructor = fConstructor.parentConstructor;
        }
        while (typeof (fConstructor) == 'function');

        for (var i = arrCtors.length; i-- > 0; ) {
            arrCtors[i].apply(this, arguments);
        }
    }

    if (parent) {
        return Class.linkInheritance(parent, fConstr);
    }

    return fConstr;
}
/**
* @param {function|object|string} parent
*  A parent class, an instance of it, or a string representing its class name
*
* @param {function} subclass
*  The subclass function
*/
// - new.
Class.linkInheritance = function(parent, subclass) {
    if (typeof (parent) == 'string')
        parent = eval(parent);
    Claim.check(typeof (parent) == 'object'
			   || typeof (parent) == 'function'
			   , "'parent' is a function or an object"
			   , "Class.linkInheritance(parent)")
    Claim.isFunction(subclass, "Class.linkInheritance(subclass)");

    //copy all static members
    subclass = Object.extend(subclass, parent);
    delete subclass.AsPrototype;

    //keep the parent constructor in parentConstructor
    subclass.parentConstructor = parent;

    //--THROWS FRIENDLY ERRORS WHEN MISUSED--
    subclass.prototype = Class.AsPrototype(parent);

    //override the 'constructor' attribute on the new prototype instance 
    //(originally it was the parent constructor)
    subclass.prototype.constructor = subclass;

    return subclass;
}
/**
* Mostly for internal use, but can be used to determine wether a class is inheritable.
* When the provided parameter is not inheritable - it throws an error.
*
* @param {string|function|object} fClass
*  A string evaluates to a class or a the class itselfs
*
* Function:
*  if
*		can be instantiated using a default constructor
* 			OR
* 		parent.AsPrototype() returns a valid instance
* 			OR
* 		parent === Object
*	  creates an instance, and puts initialize_base on it.
*
* String:
*  if	
*		evaluates to a valid class name
* 	carrSuperclasss recursively on evaluation's returned value
*
* Object: 
*  creates a shellow copy, and puts initialize_base on it.
*/
// - new.
Class.AsPrototype = function(fClass) {
    switch (typeof (fClass)) {
        case 'string':
            if (window[fClass] != null
			   && window[fClass] === eval(fClass)) {
                if (typeof (eval(fClass)) != 'function') throw new Error("'" + fClass + "' does not evaluates to a valid class");
                return Class.AsPrototype(eval(fClass));
            }
        case 'function':
            var oProto;
            if (fClass === Object) return {};

            if (typeof (fClass.AsPrototype) == 'function') {
                oProto = fClass.AsPrototype();
                if (typeof (oProto) != 'object') throw new Error("provided class implements.AsPrototype() but it did not return an instance.");
            }
            else {
                try {
                    oProto = new fClass();
                }
                catch (ex) {
                    throw new Error("Class.AsPrototype(fClass) Failed to instantiate 'fClass' with default constructor. \n\nError message: " + ex.message);
                }
            }
            return oProto;

        case 'object':
            return Object.extend({}, fClass);

        default:
            throw new Error("A prototype can be extracted only from one of the followings: \n\t- an object instance \n\t- a valid constractor function \n\t- a string evaluates to ither one of the above");
    }
}

/**
*
*/
Class.enhancePrototype = function(fClass, oInterface) {
    Claim.check(typeof (fClass) == 'function'
				, "Class.enhancePrototype(fClass,oInterface) - fClass"
				, "fClass must be a function"
				);
    Claim.check(oInterface && typeof (oInterface) == 'object'
				, "Class.enhancePrototype(fClass,oInterface) - oInterface"
				, "oInterface must be an object"
				);

    return Object.extend(fClass.prototype, oInterface);
}

/**
*
*/
Class.enhanceSingleton = function(oSingleton, oInterface) {
    Claim.check(oTargetClass && typeof (oTargetClass) == 'object' || typeof (oTargetClass) == 'function'
				, "Class.enhance(oSingleton)"
				, "oTargetClass must be a function"
				);
    Claim.check(oInterface && typeof (oInterface) == 'object'
				, "Class.enhancePrototype(fClass,oInterface) - oInterface"
				, "oInterface must be an object"
				);

    return Object.extend(oSingleton, oInterface);
}
Class.enhance = function(fClass /*, param1, param2, param3 ... */) {
    var oInterface;
    for (var i = 1; i < arguments.length; i++) {
        oInterface = arguments[i];
        try { fClass = this.enhanceSingleton(fClass, oInterface); } catch (ex) { }
        try { fClass.prototype = this.enhancePrototype(fClass, oInterface); } catch (ex) { }
    }
    return fClass;
}
//-=-=-=-=-=- /Enhances on Class -=-=-=-=-=-
//-=-=-=-=-=- Enhances on Element -=-=-=-=-=-
/**
* sets the text of the provided element, according to its tag-name
* input fields, text-area  - by .value
* the rest - innerHMTL
*
* @param {Element} e - the DOM element ID
* @param {string}	sText
*/
Element.setText = function(e, sText) {
    var tag = e.tagName.toUpperCase();
    switch (tag) {
        case "INPUT":
        case "TEXTAREA":
            e.value = sText;
            break;
        case "SELECT":
            //TODO: - decide what to do if the sText doesnt match any value of the select element
            e.value = sText;
            break;
        default: /*DIV, SPAN, TD, A, H1-H5, and all the rest*/
            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);
                }
            }
    }
}
/**
* gets the text of the provided element, according to its tag-name
* input fields, text-area  - by .value
* the rest - innerHMTL
*
* @param {Element} oElement - the DOM element ID
*/
Element.getText = function(oElement) {
    switch (oElement.tagName) {
        case "INPUT":
            if (oElement.type == "checkbox")
                return (oElement.checked) ? oElement.value : "";
            //no break! deliberated case sliding!
        case "TEXTAREA":
        case "SELECT":
            strTemplate = oElement.value;
            break;
        default: /*DIV,SPAN,H1-6,TD,CETNER,B,I,U,and all the rest*/
            strTemplate = oElement.innerHTML;
    }
}
//-=-=-=-=-=- /Enhances on Element -=-=-=-=-=-
//-=-=-=-=-=- Enhances on Log4Js -=-=-=-=-=-
/**
* Initiates a general cookie.
* To be pasted in the address bar like this:
*    Javascript:Log4Js.pop();
*
* @param {object(optional)} conf 
* The configuration object. When not provided - initiates a default one for popup.
*/
// - new.
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);
}
/**
* Adds a logging anchor by name
*
* @param {string} sClassName
* The name of the logged element
* 
* @param {string} enLEVEL
* The "enum" name of the warn level
*/
// - new.
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);
}
/**
* Removes an anchor by name
*
* @param {string} sClassName
* The name of the logged element
*/
// - new.
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);
}
/**
* stops the logging by clearing the log4js configuration.
* Done by setting the configuration to a single anchor - all, pointed to NONE.
*
*/
// - new.
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);
}
//-=-=-=-=-=- /Enhances on Log4Js -=-=-=-=-=-
//-=-=-=-=-=- Enhances on Claim -=-=-=-=-=-
/**
* Claims the provided object to be a function
* Throws an error if its not
*
* @param {object} object
* The tested object
*
* @param {string} comment
* String comment for the Error and for the log
*/
// - new.
Claim.isFunction = function(object, comment) {
    
    {
        Claim.check(typeof (object) == 'function'
               , "isFunction(" + Claim.valueType(object) + ")"
               , comment)
    } 
}
Claim.isLiveObject = function(object, comment) {
    Claim.check(null != object
				&& typeof (object) == 'object'
				, "isLiveObject(" + object + ")"
				, comment)
}
//-=-=-=-=-=- /Enhances on Claim -=-=-=-=-=-
//-=-=-=-=-=- Enhances on Cookies -=-=-=-=-=-
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("")));
}
//-=-=-=-=-=- /Enhances on Cookies -=-=-=-=-=-
/* === /TMP FIXES ON PRODUCT UTILS === */

// --- Enhance String.prototype -----------------------------------
/**
* An empty string constant
*/
String.empty = String.Empty = "";
/**
* Populates a template: replaces all provided place-holders in a string, with values.
*
* @param {object} oMapping
* A hash in which every key represents a place-holder in the string to be replaced with its correlating value
*/
String.prototype.populateTemplate = function(oMapping) {
    Claim.isObject(oMapping, "String.populateTemplate(..,oMapping,..)");

    var sTemplate, placehoder, replacement;

    sTemplate = String(this);

    for (placeholder in oMapping) {
        replacement = oMapping[placeholder];
        sTemplate = sTemplate.replace(new RegExp(placeholder, "g"), replacement);
    }
    return sTemplate;
}
String.prototype.beutifySerialization = function() {
    var out = []
	  , indent = ""
	  , i
	  , arr = this.split("");

    for (i = 0; i < arr.length; i++) {
        switch (arr[i]) {
            case "{":
                indent += "\t";
                out[out.length] = "\n" + indent;
                out[out.length] = arr[i] + "\t";
                break;
            case "}":
                out[out.length] = "\n" + indent;
                out[out.length] = arr[i] + "\t";
                indent = indent.substr(1);
                break;
            case "[":
                indent += "\t";
                out[out.length] = "\n" + indent;
                out[out.length] = arr[i] + "\t";
                break;
            case "]":
                out[out.length] = "\n" + indent;
                out[out.length] = arr[i] + "\t";
                indent = indent.substr(1);
                break;
            case ",":
                out[out.length] = "\n" + indent;
                out[out.length] = arr[i] + "\t";
                break;
            default:
                out[out.length] = arr[i];
        }
    }
    return out.join("");
}
/**
* Binds a template: replaces all indicated placeholders with data. 
* Data comes from data-properties on the oDataSource, 
* and the mapping between placeholders in the string and the data-properties 
* is provided in the oMapping parameter.
*
* @param {object} oMapping
* A hash, in which every key is a placeholder in the string, 
* and its correlating value can be:
* - A string representing a data-property on the data-srource in oDataSource
* - A function that returns value as a function of the oDataSource
* - Any other value will be casted to string to return the value, and the returned value will be used, regardles to the data-source.
*
* @param {object} oDataSource
* A data-object by which to bind the template
*
* @param {object(optional)} oLog
* When provided - the logging of this execution is emitted to the provided instance.
* Otherwise - to a casual instance, named "String.bindTemplate".
*/
String.prototype.bindTemplate = function(oMapping, oData, oLog) {
    Claim.isObject(oMapping, "String.bindTemplate(..,oMapping,..)");
    Claim.isObject(oData, "String.bindTemplate(..,oData)");

    var oDataSource = ('object' == typeof (oData.dataItem)) ? oData.dataItem : oData;

    var sTemplate, placehoder, attribute, replacment;
    var log = (oLog && oLog instanceof Log4Js.Logger) ? oLog : new Log4Js.Logger("String.bindTemplate");

    sTemplate = this.toString();

    for (placehoder in oMapping) {
        if (this.indexOf(placehoder) == -1) {
            log.debug("in bindTemplate(...) - placeholder '" + placehoder + "' is not found in bound template");
            continue;
        }

        attribute = oMapping[placehoder];
        if (undefined == attribute || null == attribute) {
            log.warn("in bindTemplate(...) oMapping dictionary specifies a placeholder without providing its data-attribute name: " + placehoder);
            continue;
        }

        switch (typeof (attribute)) {
            case 'function':
                try {
                    replacement = attribute(oDataSource, log);
                } catch (ex) {
                    log.error("String.bindTemplate - Error in mapping-handler for " + placehoder + " : " + attribute.toString());
                    throw ex;
                }
                break;

            case 'string':
                replacement = oDataSource[attribute];
                if ('function' == typeof (replacement)) {
                    replacement = replacement.apply(oDataSource);
                }
                else if (null == replacement) {
                    if (oData != oDataSource && null != oData[attribute]) {
                        replacement = oData[attribute];
                        if ('function' == typeof (replacement)) {
                            replacement = replacement.apply(oData)
                        }

                    }

                    if (null == replacement) {
                        log.warn("in bindTemplate(...) oMapping dictionary specifies a property that does not exist on the provided oDataSource. Placehoder: " + placehoder + ", using the name of the attribute: " + attribute);
                        replacement = attribute;
                    }

                }
                break;

            default:
                replacement = String(attribute);

        }

        //replacment = replacment.replace(/\$/g,"");
        sTemplate = sTemplate.replace(new RegExp(placehoder, "g"), replacement);
    }
    return sTemplate;
}
/**
* returns the string without spaces in the start or at the end.
*/
String.prototype.trim = function() {
    var iStart = -1, iEnd = this.length;
    while (this.charAt(++iStart) == ' ');
    while (this.charAt(--iEnd) == ' ');
    if (iStart == iEnd && this.charAt(iStart) != ' ') return this.substr(iStart, 1);
    return this.substring(iStart, iEnd + 1);
}

/**
* returns the current string padded on the left with the provided padding char to the specified length
* @param {string} c - the padding char
* @param {number} iLength - the length the padded string should reach
*/
String.prototype.leftPad = function(c, iLength) {
    s = this.toString();
    while (s.length < iLength) s = c + s;
    return s;
}
/**
* @param {String} substr The string to search
*/
String.prototype.contains = function(substr) {
    if (substr === undefined || substr === null) return false;
    return this.indexOf(substr) != -1;
}
// --- /Enhance String.prototype -----------------------------------

// --- Enhance Number.prototype -----------------------------------
//TODO: handle formatting of decimals. (0.34874873)
/**
* returns the formatted string swith comas.
**/
Number.milleSeperator = ",";
//Number.fragmentsSeperator = ".";
Number.prototype.format = function() {
    var iNumber = this;
    var sFormatted = "", psik = "";
    var s3Digits, i3Digits;
    while (iNumber > 0) {
        i3Digits = iNumber % 1000;

        s3Digits = String(i3Digits)

        iNumber = Math.floor(iNumber / 1000);
        if (iNumber > 0) {
            if (i3Digits < 100) {
                s3Digits = "0" + s3Digits;
                if (i3Digits < 10) {
                    s3Digits = "0" + s3Digits;
                }
            }
        }

        sFormatted = s3Digits + psik + sFormatted;
        psik = Number.milleSeperator;

    }

    return (sFormatted.length) ? sFormatted : "0";
}

/**
* returns the current number padded on the left with the provided padding char to the specified length
* @param {string} c - the padding char
* @param {number} iLength - the length the padded string should reach
* @param {number} iBase - the count base to format by it to string 
*/
Number.prototype.leftPad = function(c, iLength, iBase) {
    if (iBase === undefined) return this.toString().leftPad(c, iLength);

    iBase == parseInt(iBase);
    if (!iBase || iBase == NaN || iBase < 2) iBase == 10;

    return this.toString(iBase).leftPad(c, iLength);
}
// --- /Enhance Number.prototype -----------------------------------

// --- Enhance Array.prototype------------------------------------------------------------
/**
* gets a part of the array of a maximum size.<br>
* <a target="_blank" href="/Js/units/reference/_Infra/Array.htm#cut">see Ref-Impl</a>
* @returns a slice of the array, starting in the provided iStart, and of maximum iCount elements.
*
* @param {number} iStart    index to start from 
* @param {number} iCount    maximum elements to fetch
* 
* @type Array
*/
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);
}
// --- /Enhance Array.prototype------------------------------------------------------------

if (!window.Const) Const = {};
Object.extend(Const,
				{ UNSET_STRING: "-UNSET-STRING-"
				, UNSET_NUMBER: NaN
				, UNSET_OBJECT: undefined
				}
			 );



/* === TC Namesapce ============================================================ */
if (!window["TC"])
    window.TC = {};

/**
* Synonym for accessing the catalog by-sky hash
*/
TC.SKUs = GameCatalog.Game.All.BySku;

/**
* Synonym for accessing the catalog all-games-on-client array
*/
TC.SKUs.All = GameCatalog.Game.All;


/**
* Expects a data-object, with a property named "sku".
* If such sku exists in the catalog - it copies all game properties 
* from the catalog game instance to the provided object.
*
* @param {object} oTarget
* The data-object to extend
*
* @param {number(optional)} sku
* When no property "sku" defined on parameter oTarget - used as the sku to search by 
*
* @returns the enhanced object, or null when the sku does not exist in the catalog
*/
TC.SKUs.extendDataFromSKU = function(oTarget, sku) {
    if (oTarget.sku) sku = oTarget.sku;
    Claim.isNumber(parseInt(sku), 'TC.SKUs.extendDataFromSKU(...) - the sku of the game to enhance from should be provided ither as a property "sku" on the provided oTarget, or as a second parameter');

    var oGame = this[sku];
    if (!oGame)
        return null;

    return Object.extend(oTarget, oGame);
}



/**
* Synonym for accessing the catalog tags by internal-name hash
*/
if (GameCatalog.Tag) TC.Tags = GameCatalog.Tag.All;



// --- TC.OnlinePlayers -----------------------------------
/**
*
*/
TC.OnlinePlayers = {}
/**
*
*/
TC.OnlinePlayers.log = new Log4Js.Logger("TC.OnlinePlayers");
/*
* Defaults settings of the behavious of this component. For customization override
* the required property in the projectal phase
*/
TC.OnlinePlayers.settings = { onlinePlayersUnavailable: "N/A"
};
/**
*
*/
TC.OnlinePlayers.writeCommunity = function() {
    this.prv_writeOnlineNumber(PresenceCatalog);
}
/**
*
*/
TC.OnlinePlayers.writeByCategory = function(categoryCode) {
    var oByCat;
    try {
        oByCat = PresenceCatalog.Rooms.All.ByCategory[categoryCode];
    }
    catch (ex) {
        this.log.error("Exception in access to PresenceCatalog.Rooms.All.ByCategory[" + categoryCode + "]: " + ex.message);
    }
    this.prv_writeOnlineNumber(oByCat);

}
/**
*
*/
TC.OnlinePlayers.writeBySku = function(skuCode) {
    var oBySku;
    try {
        oBySku = PresenceCatalog.Lobbies.All.BySku[skuCode];
    }
    catch (ex) {
        this.log.error("Exception in access to PresenceCatalog.Lobbies.All.BySku[" + skuCode + " ]: " + ex.message);
    }

    this.prv_writeOnlineNumber(oBySku);

}
/**
*
*/
TC.OnlinePlayers.prv_writeOnlineNumber = function(oDataObject) {
    var sOut = this.settings.onlinePlayersUnavailable
    if (oDataObject && null != oDataObject.NumberOfPlayers) {
        sOut = oDataObject.NumberOfPlayers;
        this.log.info("Number Of ActivePlayers: " + sOut);
    }
    else {
        this.log.info("Number Of ActivePlayers not found. oDataObject:" + Object.serialize(oDataObject));
    }

    document.write(sOut);
}
TC.OnlinePlayers.writeByRoom = function(roomGuid) {
    
    {
        var oByRoom;
        try {
            oByRoom = PresenceCatalog.Rooms.All.ByRoom[roomGuid];
        }
        catch (ex) {
            this.log.error("Exception in access to PresenceCatalog.Rooms.All.ByRoom[" + roomGuid + "]: " + ex.message);
        }
        this.prv_writeOnlineNumber(oByRoom);
    } 
}
//----------------------------------------------------------------------------
TC.Omniture = {}
TC.Omniture.trackRemoteUrl = Const.UNSET_STRING;
//----------------------------------------------------------------------------


/**
* @requires Class => from prototype
* @requires Log4Net.Logger => from common
* @requires Object.serialize => currenly a projectile cross-project enhancement (attached).
* @interface
* Interface-implementation to enhance classes with event dispathching mechanism.
* The mechanism allows a single handler that returns a value, or an event stack.
* The mechanism has an error capturing mechanism that directs them to log.
*
* @CodeSampleStart
* //Usage:
* MyEventingClass = Class.create();
* MyEventingClass.prototype = Object.extend(MyEventingClass.prototype, IEventDispatcher);
*
* MyEventingClass.doSomethingThreeTimes = function(i)
* {
*	   i = (i)?i:0;
 
*     this.dispatch("onSomething",i);
*     this.dispatch("onSomething",i + 1, i);
*     this.r = this.dispatch("onSomething",i + 2, i + 1, i);
*	   this.dispatch("onFinish", this.r);
* }
* //example 1:
* obj = new MyEventingClass();
* obj.onSomething = function(){
*	  alert(arguments.toString());
*    return arguments[2];
* }
* obj.onFinish = function(result){
*    if(0 == result % 2 )
*		this.r += 1;
*
*	  alert("finishing with : "  + this.r);
* }
* obj.doSomethingThreeTimes( 23 );
*
* //example 2:
* obj = new MyEventingClass();
* obj.attachEvent("onSomething", function(){ alert("handler 1: " + arguments.toString());} );
* obj.attachEvent("onSomething", function(){ alert("handler 2: " + arguments.toString());} );
*
* obj.doSomethingThreeTimes( 23 );
* @CodeSampleEnd
*/

IEventDispatcher = {};

/**
* Accept the event name as the first parameter, and dispatches it with the rest of the arguments stack.
* Check for a registered event handler. 
* A handler could be a simple handler, or a handlers-stack.
* When the event has a single handler ? it can return value.
*
* Execution flow:
* When no event handler is found - nothing is done, and null is returned.
* When event handler is found -
* 1 - convert all arguments without the event name to a new array
* 2 - execute the handler with all the arguments on the new array
* 3 - when an event returns a value - it returns it.
*
* Throws: when the execution of the handler throws, what the handler thew.
*
* When the dispatched object features a Log4Js.Logger, 
* the following log entries are written on the objects logger:
*   - [info] no event handler is found
*	 - [info] success of the dispathed event, 
*	 - [error] error on execution of the event handler, 
*
* TODO: allow the event be not only a hanler but a handlers array too
*
* @param {string} sEventName
* The name of the hadler-reference property
*
* @param {*} arguments[1],arguments[2],arguments[3]...
* The arguments for the event handler
*/
IEventDispatcher.dispatch = function(sEventName/*, param1, param2, param3 ... */) {
    Claim.isString(sEventName, "IEventDispatcher.dispatch(sEventName, ...) - sEventName must be a string");

    //check for a registered event handler
    var fEventHandler = this[sEventName];
    var isHandlerStack = 'object' == typeof (fEventHandler)
						&& fEventHandler.constructor == Array;


    if ('function' != typeof (fEventHandler) && !isHandlerStack) {
        if (this.log instanceof Log4Js.Logger) this.log.info("Dispatch: Event " + sEventName + " is not implemented.");
        return;
    }

    //when event handler is found - convert all arguments without the event name to a new array
    var args = [];
    for (var i = 1; i < arguments.length; i++) {
        args[i - 1] = arguments[i];
    }

    // if the found handler is an event-stack - dispatch all of them, and there is no returned value.		
    if (isHandlerStack) {
        this.log.info("detected handlers stack for event: " + sEventName);
        for (var i = 0; i < fEventHandler.length; i++) {
            this.dispatchHandler(sEventName, fEventHandler[i], args);
        }
        return;
    }

    // if the found handler is a single function-reference - dispatch it, and there is no returned value.
    return this.dispatchHandler(sEventName, fEventHandler, args);
}
/**
* @private
* applies the provided handler on the current instance, with the provided argument-stack
* Errors and exceptions buble up, however, before that, if the current instance has a this.log as Log4Js.Logger - they are written to that log.
*
* @param {function} fEventHandler
* The function-reference to apply on the current instance
*
* @param {object} args
* The arguments stack of the function * 
*/
IEventDispatcher.dispatchHandler = function(sEventName, fEventHandler, args) {
    // execute the handler with all the rest of the arguments
    try {
        var retVal = fEventHandler.apply(this, args);
        //if(this.log instanceof Log4Js.Logger) this.log.info("after event " +sEventName+ ": " + Object.serialize(args) + ". returned value: " + retVal);
        return retVal;
    }
    catch (ex) {
        if (this.log instanceof Log4Js.Logger) this.log.error("event " + sEventName + " failed:" + Object.serialize(ex));
        if (this.ignoreEventErrors == true) return;
        throw ex;
    }
}

/**
* attaches the hanlder to the named event, using an event stack.
* The IEventDispatcher.dispatch knows to recognize this, and 
* applies the event stack by its registration order (LIFO).
* 
* @param {string} sEventName
* The name of the event
*
* @param {function} fHandler
* The handler function
*/
IEventDispatcher.attachEvent = function(sEventName, fHandler) {
    Claim.isString(sEventName, "IEventDispatcher.attachEvent(sEventName,..) - sEventName is expected to be a string representing the event name");
    Claim.isFunction(fHandler, "IEventDispatcher.attachEvent(...,fHandler) - fHandler is expected to be the event handler function");
    var oEvent = this[sEventName];

    if (oEvent === undefined || oEvent === null) {
        this[sEventName] = fHandler;
        return;
    }

    switch (typeof (oEvent)) {
        case 'function':
            oEvent = this[sEventName] = [this[sEventName]];
            /* !!no break!! deliberate case sliding. */
        case 'object':
            if (oEvent instanceof Array) {
                this[sEventName][this[sEventName].length] = fHandler;
                return;
            }

        default: //string, boolean, number, objects, and so on...
            sEventName += " is not an event, but: " + Object.serialize(oEvent);
            this.log.error(sEventName);
            throw new Error(sEventName);
    }
}

/**
* @namespace TC.Controls
*
*/
TC.Controls = {}
/**
* @private
* @returns a RegExp instance to execute a search of a simple containing tag in an HTML string
*
* @param {string} sTagName
* The name of the simple containinig tag to find
*/
TC.Controls.tagRegExpFinder = function(sTagName) {
    return new RegExp("\<" + sTagName + "\>([\\w\\W]*)\<\/" + sTagName + "\>", "gi");
}
/**
* @returns the HTML contained by the specified tag.
* The tag has to be simple, means - with no attributes or spaces between its tringular braces.
*
* @param {string} sHTMLString
* The HTML string to be searched in
*
* @param {string} sInnerTag
* The tag containing the text to extract from the big HTML string
*/
TC.Controls.getInnerTag = function(sHTMLString, sInnerTag) {
    try {
        return this.tagRegExpFinder(sInnerTag).exec(sHTMLString)[1];
    }
    catch (ex) {
        return null;
    }
}
/**
* @class TC.Controls.Repeater
* 
*
*/
TC.Controls.Repeater = Class.create();
TC.Controls.Repeater = Class.enhance(TC.Controls.Repeater, IEventDispatcher);
/**
* mapping of tag-names to template elements
*
*/
TC.Controls.Repeater.defaultParseTags = { header: "header"
										, item: "item"
										, alternateItem: "alternate"
										, seperator: "seperator"
										, footer: "footer"
										, noData: "noData"
};
/**
* @constructor
*
* @param {string} sTemplateString
*
* @param {Log4Js.Logger(optional)} oLog
*
* @param {object(optional)} oParseTags
*
*/
TC.Controls.Repeater.prototype.initialize = function(sTemplateString, oLog, oParseTags) {
    this.log = (oLog && oLog instanceof Log4Js.Logger) ? oLog : new Log4Js.Logger("Repeater");

    Claim.isString(sTemplateString, "sTemplateString is expected to be the template HTML string");
    this.templateString = sTemplateString;

    if (!oParseTags)
        oParseTags = Object.clone(this.constructor.defaultParseTags);
    else
        oParseTags = Object.extend(Object.clone(this.constructor.defaultParseTags), oParseTags);

    this.dispatch("onInit", oParseTags);

    this.templates = {};
    var each;
    for (each in oParseTags) {
        this.templates[each] = TC.Controls.getInnerTag(this.templateString, oParseTags[each]) || "";
        this.log.debug(each + "-template:" + this.templates[each].replace(/</g, "&lt;"));
    }

    this.dispatch("onLoad");
}
/**
*
*
*/
TC.Controls.Repeater.prototype.dataBind = function(oMapping, oDataSource) {
    if (oDataSource) this.dataSource = oDataSource;
    if (oMapping) this.bindMapping = oMapping;

    Claim.isLiveObject(this.bindMapping, "Mapping must be an object. Ither provide it as a first argument, or set the property: rpt.mapping");
    Claim.isArray(this.dataSource, "DataSource must be an array. Ither provide it as a second argument, or set the property: rpt.dataSource");
    var i, iIndex, arrBoundItems = [];

    this.dispatch("onDataBind", this.dataSource);

    for (i = 0; i < oDataSource.length; i++) {
        iIndex = arrBoundItems.length;
        var item = { dataItemIndex: i
					, itemIndex: iIndex
					, dataItem: oDataSource[i]
					, template: (this.templates.alternateItem && iIndex % 2) ? this.templates.alternateItem : this.templates.item
					, mapping: Object.clone(this.bindMapping)
					, skipItem: false
        }

        this.dispatch("onItemDataBound", item);
        if (true == item.skipItem)
            continue;

        arrBoundItems[arrBoundItems.length] = item.template.bindTemplate(item.mapping, item.dataItem);
    }

    this.content = { header: this.templates.header
					, seperator: this.templates.seperator
					, footer: this.templates.footer
					, items: arrBoundItems
					, noData: this.templates.noData
					, toString: function() {
					    return this.header
										 + ((this.items.length) ?
											 this.items.join(this.seperator) : this.noData
										   )
										 + this.footer;
					}
    };

    if (0 == this.content.items.length) {
        this.dispatch("onNoDataFound");
    }

    this.dispatch("onDataBound", this.content);

    return this.content;
}
/**
*
*
*/
TC.Controls.Repeater.prototype.render = function(oTargetElement, oMapping, oDataSource) {
    this.log.debug("Repeater - rendering");
    if (oTargetElement !== null) Claim.isObject(oTargetElement, "oTargetElement can be an HTML element or the document object, or null");

    if (!this.content
	   || oMapping && oDataSource)
        this.content = this.dataBind(oMapping, oDataSource);

    this.targetElement = oTargetElement;

    this.dispatch("onRender", this.content);

    var strHTML = this.content.toString();
    if (oTargetElement) {
        if (oTargetElement.write === document.write) {
            oTargetElement.write(strHTML);
        } else {
            Element.setText(oTargetElement, strHTML);
        }
    }

    this.log.info("Repeater - render complete");
    return strHTML;
}

/**
* Adds the specified url to the favorites list of IE or to the bookmark of Mozilla/Firefox
* @param {string} url
* the url to add to the favorites list of the cross-browser
* @param {string} displayName
* the display text of the url
*/
TC.AddFavorite = function(url, displayName) {

    if (window.external) {/* IE */
        window.external.AddFavorite(url, displayName);
    } else if (window.sidebar) { /* Mozilla */
        window.sidebar.addPanel(displayName, url, "");
    }
}


if (!window.UI) UI = {};
if (!UI.Avatar) UI.Avatar = {};
/**
*
* enum for avatar sizes
*/
UI.Avatar.Size = {};
UI.Avatar.Size.Studio = { name: "Studio" };
UI.Avatar.Size.Size150x200 = { width: 150, height: 200, name: "Size150x200" };
UI.Avatar.Size.Size124x165 = { width: 124, height: 165, name: "Size124x165" };
UI.Avatar.Size.Size86x115 = { width: 86, height: 115, name: "Size86x115" };
UI.Avatar.Size.Size98x131 = { width: 98, height: 131, name: "Size98x131" };
UI.Avatar.Size.Size65x87 = { width: 65, height: 87, name: "Size65x87" };
UI.Avatar.Size.Size24x24 = { width: 24, height: 24, name: "Size24x24" };
UI.Avatar.Size.Size48x48 = { width: 48, height: 48, name: "Size48x48" };

/************ END /javascript/2100/TC.Utils.js ***********/

/************ START /Javascript/2100/ClientMgr.js ***********/
/**
* General Constants
*/
if (!window.Const) Const = {};
Object.extend(Const,
				{ UNSET_STRING: "-UNSET-STRING-"
				}
			 );

/**
* ElementsGroup - a group of HTML elements distincted in the program by a provided 
* name that may be different from thier Html-Element ID.
* The elements are gathered on the this.elements collection, while the element IDs 
* are in this.elementIDs.
* 
* It features:
*  - managment of elements by logical names
*  - show and hide elements 
*  - onload events stack executed on window.onload
*/
ElementsGroup = Class.create();
/**
* The constructor expects a dictionary, pointing every element's programatic name 
* to its ID on the screen.
* The constructor scheduels a task for the window's load event, and once the HTML 
* document is loaded, it parses the provided dictionary, and obtains references to 
* all specified elements.
* Missing elements are reported in the log in WARN level.
* 
* @param {string}	p_screenElementsDictionary
*  dictionary of program-names as keys, and HTML element-ids as values.
*
* @param {string(optional)}  sInstanceName
*  The name of the ClientMgr instance (usually a singletone utilities class)
*  used for the Log4Js.Logger and for on-the-fly creation of an onload function
*  - Optional: when not provided, a random unique identifier is generated for internal use.
*/
ElementsGroup.prototype.initialize = function(p_elementsDictionary, sInstanceName) {
    //default sInstanceName - for "anonymous"
    if (!sInstanceName) sInstanceName = "ElementsGroup" + ((new Date()).getTime() + "_" + Math.random()).replace(".", "_");

    ElementsGroup.all[ElementsGroup.all.length] = this;
    if (parseInt(sInstanceName) != Number(sInstanceName)) {
        ElementsGroup.all[sInstanceName] = this;
    }

    this.log = new Log4Js.Logger(sInstanceName);
    this.instanceName = sInstanceName;
    this.elements = {};
    this.elementIDs = {};

    //prepare to and attach its onload
    this.prv_constructorTmpDictionary = p_elementsDictionary;
    this.onLoadHandlers = [function() {
        var oConstrDictionary = this.prv_constructorTmpDictionary;
        delete this.prv_constructorTmpDictionary;

        var anythingInDictionary;
        for (anythingInDictionary in oConstrDictionary) break;
        if (anythingInDictionary) {
            this.setElementIDs(oConstrDictionary);
        }
    }
						  ];
}
/**
* @private
* A dictionary of all element-groups, named by thier provided instance name
*/
ElementsGroup.all = [];
/**
* adds new or overrides an existing element to the 
* this.elements and this.elementIDs dictionaries
*
* @param {string} sElementName
*  Name of the element in the program
*
* @param {string} sElementID
*  projectal HTML element ID of the element
*/
ElementsGroup.prototype.setElementID = function(sElementName, sElementID) {
    this.elementIDs[sElementName] = sElementID;
    this.elements[sElementName] = $(sElementID);
}
/**
* adds or overrides managed elements names and thier HTML ids in the elementIDs dictionary
*
* @param {object} p_screenElementsDictionary
*  a dictionary of the managed element names as keys, and thier HTML element-ids as values.
*/
ElementsGroup.prototype.setElementIDs = function(p_elementsDictionary) {
    //if the preload has not occuded yet - add it to the constructor dictionary
    if (this.prv_constructorTmpDictionary) {
        Object.extend(this.prv_constructorTmpDictionary, p_elementsDictionary);
        return;
    }
    var element;
    for (element in p_elementsDictionary) {
        this.setElementID(element, p_elementsDictionary[element]);
    }
}
/**
* @private
*
* @param {string} sElementName
*	the name of the element in the program
*
* @param {string} sCallerInstance
* the caller function (for logging}
* - optional : Default value: "[ClientMgr].getMyElement(...)"
*/
ElementsGroup.prototype.getMyElement = function(sElementName, sCallerInstance) {	//default sCallerInstance
    if (!sCallerInstance) sCallerInstance = "[ElementsGroup].getMyElement(...)";

    //first - check the this.elements collection
    if (this.elements[sElementName]) {
        return this.elements[sElementName];
    }
    this.log.info(sCallerInstance + " doesn't have " + sCallerInstance + ".elements." + sElementName);

    //get managed element ID
    var sElementID = this.elementIDs[sElementName];
    if (sElementID == null) {
        this.log.warn(sCallerInstance + " was asked to show an unknown element: " + sElementName);
        return;
    }
    //get element
    var oElement = $(sElementID);
    if (oElement == null) {
        this.log.warn(sCallerInstance + " was asked to show an element that does not exist: " + sElementID);
        return;
    }

    return oElement;
}
/**
* shows a managed element by its logical name in the program.
*
* @param {string} sElementName
*  the name of the element in the program
*/
ElementsGroup.prototype.showElement = function(sElementName, displayVal) {

    var e = this.getMyElement(sElementName, "showElement");
    if (!e) return;
    if (displayVal == null)
        displayVal = "block";
    e.style.display = displayVal;

}
/**
* hides a managed element by its logical name in the program.
*
* @param {string} sElementName
*  the name of the element in the program
*/
ElementsGroup.prototype.hideElement = function(sElementName) {
    var e = this.getMyElement(sElementName, "hideElement");
    if (!e) return;
    e.style.display = "none";
}
/**
* API to add handlers to the onload events
*
* @param {function} fHandler
* A handler to dispatch from window.onload
*/
ElementsGroup.prototype.addOnLoadHandler = function(fHandler) {
    Claim.isFunction(fHandler, "[ElementsGroup].addOnloadHandler(fHandler) - fHandler must be a function");
    this.onLoadHandlers[this.onLoadHandlers.length] = fHandler;
}
/**
* @private
* Used in on-the-fly generated functions, attached to the window.onload event.
* The goal of this function is to allow sub-classes to have window.onload event 
* listenerss of thier own, and assure the execution sequence of the event handlers
* between events of the parent and events of the subclass.
* The first listener that is registered in the constructor is 
* ElementsGroup.prv_onLoad_handler_ref
*/
ElementsGroup.prototype.prv_onPageLoad = function() {
    var i;
    for (i = 0; i < this.onLoadHandlers.length; i++) {
        this.onLoadHandlers[i].call(this);
    }
}
/**
* @private
* static behavior, called from a function attached to Window.onload
* dispatches onPageLoad to all instances
*/
ElementsGroup.prv_observeWindowLoad_callback = function() {
    for (var i = 0; i < this.all.length; i++) {
        this.all[i].prv_onPageLoad();
    }
}

// Call onPageLoad on all instances created untill page-load event
Event.observe(window
			 , "load"
			 , function() {
			     ElementsGroup.prv_observeWindowLoad_callback();
			 }
			 );


//============================================================
/**
* LayersGroup is an ElementGroup that all its layers share the same screen space, 
* hence, a single layer is visible at a time, or non at all.
*/
LayersGroup = Class.create("ElementsGroup");
/**
*
*/
LayersGroup.prototype.initialize = function(p_screenElementsDictionary, sInstanceName) {
    this.layersIDs = this.elementsIDs;
    this.layers = this.elements;
}
/**
*
*/
LayersGroup.prototype.hideAll = function() {
    var each;
    for (each in this.elementIDs) {
        this.hideElement(each);
    }
}
/**
*
*/
LayersGroup.prototype.showLayer = function(sLayerName) {
    this.hideAll();
    this.showElement(sLayerName);
}
//==============================================
/**
* ClientMgr - class for managing client-side UI.
* Features utilities for:
*  - post/get/redirections
*  - show/hide HTML elements
*
* @param {string}  sInstanceName
*  The name of the ClientMgr instance (usually a singletone utilities class)
*  used for the Log4Js.Logger and for on-the-fly creation of an onload function
* 
* @param {string}	p_screenElementsDictionary
*  dictionary of program-names as keys, and HTML element-ids as values.
*/
ClientMgr = Class.create("ElementsGroup");
ClientMgr.prototype.initialize = function(p_globalElementsDictionary, sInstanceName) {
    //init the current URL
    var sUrl = location.href;
    //PATCH: - remove #anchor - overcome a bug of the infrastructure
    i = sUrl.lastIndexOf("#");
    if (i > -1 && i > sUrl.lastIndexOf("?") && i > sUrl.lastIndexOf("=")) {
        sUrl = sUrl.substr(0, i);
    }

    this.Url = Url.parse(sUrl);

    //windows collection
    this.windows = {};
    this.templates = {};
    //infra for close all windows in unload
    this.onPageUnloadHandlers = [ClientMgr.onPageUnload_handler_ref];
    Event.observe(window
				 , "unload"
				 , new Function("try{\n\t"
								+ this.instanceName + ".onPageUnload();\n"
								+ "}catch(ex){\n\t"
								+ "(new Log4Js.Logger('" + this.instanceName + "')).error('Error or Exception in " + this.instanceName + ".onPageUnload(): ' + (ex.description)?ex.description:ex );\n"
								+ "}"
								)
				 );
}
//===============================================
//---- PAGE NAVIGATION AND WINDOWS MANAGMENT ----
/**
* @private
* This is a dictionary for name in the program as key, and page-settings dictionary as values
* for windows the managed page uses.
* each window settings can contain URL and winSettings in case its used in a window.
* This collection is managed by the API: 
*	- ClientMgr.prototype.addManagedPage(...) 
*/
ClientMgr.prototype.pages = {};
/**
* Adds deffinition for a page in the managed window-deffinitions collection.
*
* @param {string} sName
*  the name of the page in the program
*
* @param {string} sUrl
*  the Url of the page
*
* @param {string(optional)} sWinSettings
* - optional: when not provided - the page does not open in a window, 
* but replaces the current page
*/
ClientMgr.prototype.addManagedPage = function(sName, sUrl, sWinSettings) {
    this.pages[sName] = { URL: sUrl
						, winSettings: sWinSettings
    };
}
/**
* Usefull for:
* - send the page to _top without conflicting IFrames security.
* - Submit a form to a provided URL with the provided parameters and form settings.
*
* @param {object|string} oFormAttributes
*  a key-value dictionary of form HTML attributes to be used to add or override to the default settings.
*  When the parameter is provided as string - it is assumed to be the 
*  'action' attribute, and the rest of the settings are taken from the default settings.
*  Default settings: 
*			- target = "_top"
*			- method = if oAdditionalParams is provided - "POST", otherwise - "GET"
*			- action = when oFormAttributes is provided as string
* 
* @param {object} oAdditionalParams
*	a key-value dictionary of required query-string parametes.
*  when an argument exists both in oParameters and in the sUrl 
*  as query-string parameter - the parameter in sUrl overrides.
*  - optional : functionality ignored when not provided.
*  when this parameter is provided, the default form-method is "POST"
*  otherwise - "GET".
*
*/
ClientMgr.prototype.submitToPage = function go(oFormAttributes, oAdditionalParams) {
    if (typeof (oFormAttributes) == 'string') {
        this.log.debug("ClientMgr.submitToPage got 'oFormAttributes' as string, assumed to be the oFormAttributes.action");
        oFormAttributes = { action: oFormAttributes };
    }
    else {
        if (oFormAttributes.URL && !oFormAttributes.action)
            oFormAttributes.action = oFormAttributes.URL;
        Claim.isString(oFormAttributes.action, "..submitToPage(oFormAttributes.action)");
    }

    //PATCH: - remove #anchor - overcome a bug of the infrastructure
    var sUrl = oFormAttributes.action;
    i = sUrl.lastIndexOf("#");
    if (i > -1 && i > sUrl.lastIndexOf("?") && i > sUrl.lastIndexOf("=")) {
        sUrl = sUrl.substr(0, i);
    }

    var oUrl = Url.parse(sUrl);
    oFormAttributes.action = oUrl.base;
    // use default settings for all settings not in oFormAttributes
    if (null == oFormAttributes.target) oFormAttributes.target = "_top";
    if (null == oFormAttributes.method) oFormAttributes.method = (oAdditionalParams != null) ? "POST" : "GET";

    //copy all settings to a newly created <FORM>
    var f = Object.extend(document.createElement("FORM")
						 , oFormAttributes
						 );
    //copy all parameters found in action URL to oAdditionalParams
    if (oAdditionalParams == null) oAdditionalParams = {};
    var oParams = Object.extend(oAdditionalParams, oUrl.params)

    //populate <FORM> with all fields found
    var e, paramName;
    for (paramName in oParams) {
        if (paramName == "") continue;

        e = Object.extend(document.createElement("INPUT")
						 , { type: "hidden"
							, name: paramName
							, value: oParams[paramName]
						 }
						 );
        f.appendChild(e);
    }

    //append and submit
    document.body.appendChild(f)
    f.submit();
}

/**
* @private
*  parses window settings string (as passed to window.open)
*
* @param {string} sSettings
*/
ClientMgr.prototype.prv_parseWindowSettingsString = function(sSettings) {
    if (!sSettings) return;
    Claim.isString(sSettings, "prv_parseWindowSettingsString(sSettings)");

    sSettings = sSettings.split(",");
    var oProps = {};
    for (var i = 0; i < sSettings.length; i++) {
        try {
            sSettings[i] = sSettings[i].split("=");
            oProps[sSettings[i][0].toLowerCase()] = sSettings[i][1];
        } catch (ex) { }
    }
    return oProps;
}
/**
* Opens a managed window
* - centalizes all windows to the center of the screen
* - focuses every opened window
* - allow supply window name from managed windows or directly a URL
* - allows page names and windows reuse, and allows anonymous windows
* - hold a reference to all used windows, so that when the page unloads, all windows can be closed
*
* @param {string} sWindowPage
*  The URL to populate the window with. The Url can contain Query-String parameters
* 
* @oParams {object} oQSParams
*  Parameters for to add to the URL Query-String.
*  When a parameter appears in the QS of the URL and in the oParams, 
*  the value in oParams overrides the one in the QS.
* 
* 
*/
ClientMgr.prototype.openWindow = function(sWindowPage, oQSParams, sWinID, sDefaultWinSettings) {
    Claim.isString(sWindowPage, this.instanceName + ".openWindow(sWindowPage) - sWindowPage is expected to be a URL in a string");

    if (!oQSParams) oQSParams = {};

    if (!sWinID) sWinID = sWindowPage;

    //TODO:
    var sUrl;
    if (this.pages[sWindowPage]) {
        sUrl = this.pages[sWindowPage].URL;
    } else {
        sUrl = sWindowPage;
        sWindowPage = sWindowPage.replace(/[^A-Z^a-z^0-9]*/g, "_");
    }

    //PATCH: - remove #anchor - overcome a bug of the infrastructure
    i = sUrl.lastIndexOf("#");
    if (i > -1 && i > sUrl.lastIndexOf("?") && i > sUrl.lastIndexOf("=")) {
        sUrl = sUrl.substr(0, i);
    }

    sUrl = Url.parse(sUrl);
    oQSParams = Object.extend(sUrl.params, oQSParams);
    delete oQSParams[""]; // work around 
    sUrl = Url.appendParams(sUrl.base, oQSParams);

    var sWinSettings;
    if (sDefaultWinSettings) {
        sWinSettings = sDefaultWinSettings;
    } else if (this.pages[sWindowPage]) {
        sWinSettings = this.pages[sWindowPage].winSettings;
    } //	else - do nothing...

    if (sWinSettings) {
        var oProps = this.prv_parseWindowSettingsString(sWinSettings);
        if (oProps.width && oProps.height) {
            var h = parseInt((screen.height - oProps.height) / 2);
            var w = parseInt((screen.width - oProps.width) / 2);
            sWinSettings += ",top=" + h + ",left=" + w;
        }
    }

    if (this.windows[sWinID] && !this.windows[sWinID].closed)
        this.windows[sWinID].close();
    this.windows[sWinID] = window.open(sUrl, sWindowPage, sWinSettings);
}
/**
* 
*/
ClientMgr.prototype.onPageUnload = function() {
    var i;
    for (i = 0; i < this.onPageUnloadHandlers.length; i++) {
        this.onPageUnloadHandlers[i].call(this);
    }
}
/**
* @private
* this is a STATIC member - a handler referece that is attached 
* dynamicly later to each instance
*/
ClientMgr.onPageUnload_handler_ref = function() {
    var sWinID;
    for (sWinID in this.windows) {
        try {
            this.windows[sWinID].close();
        } catch (e) { }
    }
}
//=========================================
//---- DATA_SOURCE-TO-SCREEN UTILITIES ----
ClientMgr.prototype.populateElement = function(sElementID, varValue) {
    var oElement = $(sElementID);
    if (!oElement) {
        this.log.warn("populateElement(..) sElementID specifies and element which does not exist:" + sElementID);
        return;
    }
    Element.setText(oElement, varValue);
}
/**
* populates the HTML elements whos IDs are the keys in the parameter oElementsDictionary
* while thier correlating values are the property-names on the parameter oDataSource.
*
* @param {object} oElementsDictionary
*  dictionary with HTML IDs as keys, and names of properties on oDataSource as values.
*
* @param {object} oDataSource
*  dictionary with property names as keys, and thier fetched data as values.
*/
ClientMgr.prototype.populateElements = function(oElementsDictionary, oDataSource) {
    Claim.isObject(oElementsDictionary, "[ClientMgr].populateElements(oElementsDictionary)");
    Claim.isObject(oDataSource, "[ClientMgr].populateElements(oDataSource)");
    var each, oElement, value;
    for (each in oElementsDictionary) {
        oElement = $(each);
        if (!oElement) {
            this.log.warn("populateElements(..) properties-dictionary specifies and element which does not exist:" + each);
            continue;
        }
        value = oDataSource[oElementsDictionary[each]];
        if (null == value) {
            this.log.warn("populateElements properties-dictionary askes for a property which does not exist. Element: " + each + ", Property: " + oElementsDictionary[each]);
            continue;
        }
        Element.setText(oElement, value);
    }
}
/**
* Populates the provided string-template by replacing the placeholders in the sTemplate 
* with values from the oDataSource. 
* The searched placeholders and the correlating values are matched according to the 
* provided oPlaceHoldersAttributesDictionary.
*
* @param {string} sTemplate
*  The template to populate. can be the template istelf as a string, or a template logical name
*
* @param {object} oPlaceHoldersAttributes
*  Dictionary that correlates place-holders in sTemplate as keys, and properties of oDataSource as values.
*
* @param {object} oDataSource
*  Data-Source object
*/
ClientMgr.prototype.populateStringTemplate = function(sTemplate, oPlaceHoldersAttributes, oDataSource) {
    Claim.isString(sTemplate, "[ClientMgr].populateStringTemplace(sTemplate,...)");
    Claim.isObject(oPlaceHoldersAttributes, "[ClientMgr].populateStringTemplace(..,oPlaceHoldersAttributes,..)");
    Claim.isObject(oDataSource, "[ClientMgr].populateStringTemplace(..,oDataSource)");


    //The template can be a string, or a template logical name
    if (this.templates[sTemplate])
        sTemplate = this.templates[sTemplate];

    var placehoder, attribute, replacment;

    for (placehoder in oPlaceHoldersAttributes) {
        attribute = oPlaceHoldersAttributes[placehoder];
        if (null == attribute) {
            this.log.warn("in populateStringTemplace(...) oPlaceHoldersAttributes dictionary specifies a placeholder without providing its data-attribute name: " + placehoder);
            continue;
        }
        replacement = oDataSource[attribute];
        if (null == replacement) {
            this.log.warn("in populateStringTemplace(...) oPlaceHoldersAttributes dictionary specifies a property that does not exist on the provided oDataSource. Placehoder: " + placehoder + ", attribute: " + attribute);
            continue;
        }
        //replacment = replacment.replace(/\$/g,"");
        sTemplate = sTemplate.replace(new RegExp(placehoder, "g"), replacement);
    }
    return sTemplate;
}
ClientMgr.openLink = function(link) {
    var wn = window.open(link, 'GameCenterMainWindow');
    wn.focus();
}
/************ END /Javascript/2100/ClientMgr.js ***********/


/************ START /Javascript/2100/Diamond/Profile.js ***********/
//Claim.isFunction(ClientMgr,"Missing script reference: /Javascript/ClientMgr.js\n required for Profile.js");
if (!ClientMgr) throw new Error('Missing script reference: src="/Javascript/ClientMgr.js\"n required for Profile.js');

if (!window.Const) Const = {};
Object.extend(Const,
				{ UNSET_STRING: "-UNSET-STRING-"
				, UNSET_NUMBER: NaN
				}
			 );
/**
* ProfileMgr
* 
* ProfileMgr.sendToAdapter(sCommand)
* ProfileMgr.sendToProfile()
* ProfileMgr.openGameHighScore(iSku)
* ProfileMgr.getUserDetails(p_propsDictionary)
* ProfileMgr.getAvatar(sHtmlElementID,eAvatarSize,sNoDataFoundHTML,sNotAvailableHTML)
* ProfileMgr.getGameBestScore(iSku, sScoreElementID, sNoDataFoundHTML, sNotAvailableHTML)
* ProfileMgr.getUserBestScore(iSku, sStringTemplate, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML)
* ProfileMgr.getUserOnlineGames(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, iMaxShownGames)
* ProfileMgr.getUserDownloadGames( sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, iMaxShownGames))
* ProfileMgr.getUserWornBadge(sBadgeTemplateString, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML)
*
* TODO - ProfileMgr.getInstalledGames(...) - TODO
*/
ProfileMgr = new ClientMgr({}
						  , "ProfileMgr");
/**
* contains default settings untill the ProfileMgr is initiated.
* Initiation must contain channel, and authenticationAdapter
* @type Object
*/
ProfileMgr.settings = {}
/**
* The channel. Its expected to be overide by ProfileMgr.init(settings)
* @type Number
*/
ProfileMgr.settings.channel = Const.UNSET_NUMBER;
/**
* The URL for the authentication adapter
* Its expected to be overide by ProfileMgr.init(settings)
* @type String
*/
ProfileMgr.settings.authenticationAdapter = Const.UNSET_STRING;
/**
* The URL of the page that the redirection to the profile sends to
* @type string
*/
ProfileMgr.settings.userProfile = "/Profile/ProfileSummary.aspx";
/**
* The size of the avatar in the page the ProfileMgr runs in
* @type UA.User.Avatar
*/
ProfileMgr.settings.avatarSize = "Size150x200";
/**
*
*/
ProfileMgr.settings.loginTarget = "_top";
/**
* A general handler for Failure on asynchronous calls from ProfileMgr
* @type Function
*/
ProfileMgr.settings.onProfileCallFailure = null;
/**
* A general handler for Timeout on asynchronous calls from ProfileMgr
* @type Function
*/
ProfileMgr.settings.onProfileCallTimeout = null;
/**
* The Url of the channel Homepage.
* Used when the Mgr sends to the adapter from a popup, while the parent window is closed.
*/
ProfileMgr.settings.channelHomePage = Const.UNSET_STRING;
/**
* A general error message, used when a connection error or server error occures.
*/
ProfileMgr.settings.noDataMessage = "<b>No data available</b>";
/**
* The current User - access to UserAccounts API
*/
ProfileMgr.user = new UA.User();
/**
* Returns true if the current user is logged as member, otherwise - false
* 
* @type boolean
*/
ProfileMgr.isMember = function() {
    return Clearance.isMember();
}

/**
* @param {object} oSettingsDictionary
* A settings dictionary specifying at least "channel" and "authenticationAdapter"
* can include any of the documented properties on the Profile.settings inner object
*/
ProfileMgr.init = function(oSettingsDictionary) {
    if (!this.isInitiated) {
        Claim.isObject(oSettingsDictionary, "ProfileMgr.init(oSettingsDictionary) - oSettingsDictionary must be an object");
        Claim.isNumber(oSettingsDictionary.channel, "ProfileMgr.init(oSettingsDictionary) - oSettingsDictionary.channel must be a number - describing the channel-id");
        Claim.isString(oSettingsDictionary.authenticationAdapter, "ProfileMgr.init(oSettingsDictionary) - oSettingsDictionary.authenticationAdapter must be a string - describing the authentication-adapter URL");
        Claim.isString(oSettingsDictionary.channelHomePage, "ProfileMgr.init(oSettingsDictionary) - oSettingsDictionary.channelHomePage must be a string - expected to be : the  URL for the homepage of the channel");

        this.log = new Log4Js.Logger("ProfileMgr")
        this.isInitiated = true;
    }

    this.set(oSettingsDictionary);

}
/**
* Logs-Off the current User, and redirects
* to the current page to dispose all cookies
*/
ProfileMgr.logOffCurrentUser = function() {
    this.log.info("logging off current user...");

    // clear any cookie-related QS parts
    var oUrl = Url.parse(location.href);
    var oRemovedQS = String("ui,cx,rx,ux,ax,cn,rn,un,an").split(",");
    for (var i = 0; i < oRemovedQS.length; i++)
        delete oUrl.params[oRemovedQS[i]];

    //patch over bug of Url.parse on no QS URLs
    delete oUrl.params[""]

    var sUrl = Url.appendParams(oUrl.base, oUrl.params);
    this.log.info("sending to URL: " + sUrl);

    Clearance.forget(sUrl);
}
/**
* @param {object} oSettingsDictionary
* can include any of the documented properties on the ProfileMgr.settings inner object
*/
ProfileMgr.set = function(oSettingsDictionary) {
    Object.extend(this.settings, oSettingsDictionary);
}
/**
* Sends the current page to the Authentication Adapter
*
* @param {string} sCommand
* Command passed to the adapter
*/
ProfileMgr.sendToAdapter = function(sCommand) {
    //assure userProfile 
    Claim.check(this.settings.authenticationAdapter != Const.UNSET_STRING, "ProfileMgr.sendToAdapter used without defining ProfileMgr.settings.authenticationAdapter");
    if (this.settings.authenticationAdapter == Const.UNSET_STRING)
        return alert("sendToAdapter used without defining settings.authenticationAdapter");

    if (sCommand == null || typeof (sCommand) != 'string') {
        sCommand = "login";
    }

    var submitSettings = { action: this.settings.authenticationAdapter
						 , method: "GET"
						 , target: this.settings.loginTarget
    }

    var sUrl = Url.parse(this.getReturnUrl());
    delete sUrl.params.channel;
    delete sUrl.params.lc;
    sUrl = Url.appendParams(sUrl.base, sUrl.params);

    var params = { command: sCommand.toLowerCase()
					, retUrl: sUrl
					, channel: this.settings.channel
    };

    //applicative submit to TOP or Opener-window without conflicting IFrames/Windows security
    this.submitToPage(submitSettings, params);

    //in case the method is called from A.onclick
    return false;
}
/**
* Sends the current page to the User-Profile page
*/
ProfileMgr.sendToProfile = function() {
    //assure userProfile 
    Claim.check(this.settings.userProfile != Const.UNSET_STRING, "ProfileMgr.settings.userProfile", "ProfileMgr.settings.userProfile is not set");

    //applicative submit to TOP or Opener-window  
    //without conflicting IFrames/Windows security
    this.submitToPage({ action: this.settings.userProfile
						, target: this.settings.loginTarget
    }
					 );
}
/**
* @private
* When the Mgr runs in the GC - returns the location of the current page.
* When the Mgr runs in popup - tries to retrieve the Url of the parent, 
* or returns ProfileMgr.settings.channelHomePage on failure.
* Used when the sendToAdapter is called on the popup, to retrieve the return URL.
*
* Also - @private.
* wrap function - in cirtain browser versions and settings security issues 
* hide inner attributes of variables on parent and opener windows.
* This wrap allows calling a function on the window itself.
*/
ProfileMgr_getReturnUrl = function() { return ProfileMgr.getReturnUrl(); }
ProfileMgr.getReturnUrl = function() {
    Claim.isTrue(this.isInitiated, "ProfileMgr.getReturnUrl() was called before initiating ProfileMgr. \n\nSee ProfileMgr.init(oSettingsDictionary)");
    // when running in popup - use opener
    if (window.opener) {
        try {
            return window.opener.ProfileMgr_getReturnUrl()
        }
        catch (ex) {
            this.log.warn("ProfileMgr.getReturnUrl() failed to retrieve location from the opener window. channel-home used instead: " + this.settings.channelHomePage + ". Exception: " + Object.serialize(ex));
            return this.settings.channelHomePage;
        }
    }
    // Use highest IFRAME with a ProfileMgr instance
    if (window.parent != window) {
        this.log.info("ProfileMgr.getReturnUrl() - Parent window detected");
        try {
            return window.parent.ProfileMgr_getReturnUrl()
        }
        catch (ex) {
            switch (typeof (ex)) {
                case 'object': /*explorer*/
                    this.log.debug("ProfileMgr.getReturnUrl() - Parent window detected, assumed Explorer-based browser ");
                    if (ex.number == -2146827850 /*doesn't support this property*/
						|| ex.number == -2146823281 /*is null or not an object*/
						) {
                        this.log.warn("widow.parent.ProfileMgr_getReturnUrl() is not found on parent window. Code runs in IFrame on a page of the partner. Exception: " + Object.serialize(ex));
                    }
                    else {
                        this.log.warn("ProfileMgr.getReturnUrl() failed to retrieve location from the parent window for unexpected reason. Channel-home used instead: " + this.settings.channelHomePage + ". Exception: " + Object.serialize(ex));
                        return this.settings.channelHomePage;
                    }
                    break;
                case 'string': /* FireFox/Mozilla */
                    this.log.debug("ProfileMgr.getReturnUrl() - Parent window detected, assumed Mozilla-based browser ");

                    /** 
                    * the identifier of the exception is the message FF/Mozila use for permission denied:
                    * "Permission denied to get property Window.ProfileMgr_getReturnUrl"
                    * However, the words "Permission denied to get property" can be localized, 
                    * that leaves us only the property name...
                    */
                    if (ex.indexOf("Window.ProfileMgr_getReturnUrl") != -1) {
                        this.log.warn("widow.parent.ProfileMgr_getReturnUrl() is not found on parent window. Code runs in IFrame on a page of the partner. Exception: " + ex);
                    }
                    else {
                        this.log.warn("ProfileMgr.getReturnUrl() failed to retrieve location from the parent window for unexpected reason. Channel-home used instead: " + this.settings.channelHomePage + ". Exception: " + ex);
                        return this.settings.channelHomePage;
                    }
                    break;
            }
        }
    }

    var sUrl = this.Url.full;
    //PATCH: - remove #anchor - overcome a bug of the infrastructure
    i = sUrl.lastIndexOf("#");
    if (i > -1 && i > sUrl.lastIndexOf("?") && i > sUrl.lastIndexOf("=")) {
        sUrl = sUrl.substr(0, i);
    }
    return sUrl;


}
/**
* High-Score - to open popup of user high-score of his worn badge
*/
ProfileMgr.addManagedPage("HighScore", "/Orange2.0/App/GameHighScore.aspx", "width=611,height=440,status=no,scrollbars=yes,toolbar=no,menubar=no,location=no,resizeable=no");
/**
* Opens the high-score Page
*/
ProfileMgr.openGameHighScore = function(iSku) {
    var oParams = Object.extend({}, this.Url.params);
    if (iSku) {
        oParams.sku = iSku;
    }
    this.openWindow("HighScore", oParams, { method: "GET" });
}
/**
* Fetches and Populates the User-Details to the HTML elements, 
* as specified by the provided dictionary.
* The dictionary is expected to contain HTML element-IDs as keys, 
* and User-Details properties as values.
*
* @param {object} p_propsDictionary
* Supported properties as values 
* according to the product UA.User.getDetails.
* Known by the time of this update:
*  - age            - gender
*  - nickname       - birthDayOfMonth
*  - birthMonth     - birthYear
*  - country        - zipCode
*
* Uses a subclass of UA.USer as worker class.
* It is described right bellow.
*/
ProfileMgr.getUserDetails = function(p_propsDictionary, oEvents) {
    var ud = new ProfileMgr.UserDetails(p_propsDictionary);
    ud = Object.extend(ud, oEvents);
    ud.apply();
}
//--ProfileMgr.UserDetails-----------------------------------------------------------------
/**
* A worker class that fetches user details.
*/
ProfileMgr.UserDetails = Class.create("UA.User");
ProfileMgr.UserDetails = Class.enhance(ProfileMgr.UserDetails, IEventDispatcher);
ProfileMgr.UserDetails.prototype.initialize = function(pPropsDictionary, fFailure, fTimeout) {
    Claim.isObject(pPropsDictionary, "UserDetails.get(pPropsDictionary) - pPropsDictionary is expected to be an object");

    this.log = new Log4Js.Logger("ProfileMgr.UserDetails");

    this.detailsPropDictionary = pPropsDictionary;
}
ProfileMgr.UserDetails.prototype.apply = function() {
    this.GetUserDetails(this.onSuccess
							, this.onFailure
							, this.onTimeout);
}
ProfileMgr.UserDetails.prototype.onSuccess = function(data) {
    this.log.debug("onSuccess(" + Object.serialize(data) + ")");

    this.dispatch("onDataBind", data);

    ProfileMgr.populateElements(/*oElementsDictionary*/this.detailsPropDictionary
									, /*oDataSource		  */data
									);
    this.log.debug("onSuccess is complete");
}
ProfileMgr.UserDetails.prototype.onFailure = function(r) { this.log.error('FAILURE on ProfileMgr.UserDetails.get()'); }
ProfileMgr.UserDetails.prototype.onTimeout = function(r) { this.log.error('TIMEOUT on ProfileMgr.UserDetails.get()'); }
ProfileMgr.UserDetails.get = function(pPropsDictionary, fFailure, fTimeout, oUser) {
    new ProfileMgr.UserDetails(pPropsDictionary, fFailure, fTimeout, oUser);
}
//--/ProfileMgr.UserDetails------------------------------------------------------------
/**
* ProfileMgr.getAvatar
* gets the avatar of the user, and sets it's HTML to the provided sHtmlElementID.
* The size of the avatar can be specified by the optional eAvatarSize
*
* @param {string} sHtmlElementID
*
* @param {Object(optional)} oSettings
* Any settings, configurations, HTML-attributes or Flash-Params we want to pass on.
*
*/
ProfileMgr.getAvatar = function(sHtmlElementID, oSettings, oEvents) {
    Claim.isString(sHtmlElementID, "sHtmlElementID is expected to be the ID of the target element");
    oSettings = oSettings || {};

    ua = new GameCatalog.AvatarViewer(oSettings);
    ua = Object.extend(ua, oEvents);
    ua.render(sHtmlElementID);
}

/**
* ProfileMgr.getAvatarStudio
* gets the avatar of the user, and sets it's HTML to the provided sHtmlElementID.
* The size of the avatar can be specified by the optional eAvatarSize
*
* @param {string} sHtmlElementID
*
* @param {Object(optional)} oSettings
* Any settings, configurations, HTML-attributes or Flash-Params we want to pass on.
*
*/
ProfileMgr.getAvatarStudio = function(sHtmlElementID, oSettings, oEvents) {
    Claim.isString(sHtmlElementID, "sHtmlElementID is expected to be the ID of the target element");
    oSettings = oSettings || {};

    ua = new GameCatalog.AvatarStudio(sHtmlElementID, oSettings);
    ua = Object.extend(ua, oEvents);
    ua.apply();

}

/**
* ProfileMgr.getGameBestScore
* Populates the cummunity best score of the provided SKU in to the element specified by ID.
*
* @param {number} iSku
* The Sku of the queried game
*
* @param {string} sElementID
* The HTML element ID to feed the top-score into 
*
*  @param {string(optional)} sNoDataFoundHTML
*  HTML to populate target-element when server returms with no data
*  - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*
*  @param {string(optional)} sNotAvailableHTML
*  HTML to populate target-element when there is a problem with the server's response
*  - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*/
ProfileMgr.getGameBestScore = function(iSku, sScoreElementID, sNoDataFoundHTML, sNotAvailableHTML, oEvents) {
    var gbs = new ProfileMgr.GameBestScore(iSku
										  , sScoreElementID
										  , sNoDataFoundHTML || this.settings.noDataMessage
										  , sNotAvailableHTML || this.settings.noDataMessage
										  );
    gbs = Object.extend(gbs, oEvents);
    gbs.apply();
}
//--ProfileMgr.GameBestScore------------------------------------------------------------
/**
* A worker class that feches game community high-score
*/
ProfileMgr.GameBestScore = Class.create("UA.Game");
ProfileMgr.GameBestScore = Class.enhance(ProfileMgr.GameBestScore, IEventDispatcher);
ProfileMgr.GameBestScore.prototype.toString = function() {
    return "[UA.Game] extension: GameBestScore";
}
ProfileMgr.GameBestScore.prototype.initialize = function(iSku, sScoreElementID, sNoDataFoundHTML, sNotAvailableHTML) {
    Claim.isString(sScoreElementID, "ProfileMgr.GameBestScore(sScoreElementID,...) - sScoreElementID must be a string")
    Claim.isObject($(sScoreElementID), "ProfileMgr.GameBestScore(sScoreElementID,...) - sScoreElementID must be a string representing an HTML element ID")
    Claim.isString(sNoDataFoundHTML, "ProfileMgr.GameBestScore(...,sNoDataFoundHTML,...) - must be a string, expected HTML for no-data-found case")
    Claim.isString(sNotAvailableHTML, "ProfileMgr.GameBestScore(...,sNotAvailableHTML) - must be a string, expected HTML for no-data-available case")

    this.log = new Log4Js.Logger("ProfileMgr.GameBestScore");

    this.oTargetElement = $(sScoreElementID);
    this.noDataFound = sNoDataFoundHTML;
    this.notAvailable = sNotAvailableHTML;

}
ProfileMgr.GameBestScore.prototype.apply = function() {
    this.GetGameHighScores( /*mode	*/""
								, /*iAmount	*/1
								, /*period	*/UA.Game.Scores.Periods.EVER
								, /*fSuccess*/this.onSuccess
								, /*fFailure*/this.onFailureOrTimeout
								, /*fTimeout*/this.onFailureOrTimeout);
}
ProfileMgr.GameBestScore.prototype.onSuccess = function(data) {
    this.log.info("onSuccess with this data: " + Object.serialize(data));
    if (!data || !data.TopScores || !data.TopScores[0] || !data.TopScores[0].Score) {
        this.log.error("GameBestScore did not get game best-score data. Object.serialize(data): " + Object.serialize(data));
        Element.setText(this.oTargetElement, this.noDataFound);
        return;
    }

    this.dispatch("onDataBind", data);

    Element.setText(this.oTargetElement, Number(data.TopScores[0].Score).format());
}
ProfileMgr.GameBestScore.prototype.onFailureOrTimeout = function(r) {
    this.log.error('FAILURE or TIMEOUT on ProfileMgr.GameBestScore.get()');
    Element.setText(this.oTargetElement, this.sNotAvailableHTML);
}
//--/ProfileMgr.GameBestScore------------------------------------------------------------

/**
* ProfileMgr.getUserBestScore
* Gets the user's best score to the provided game, and populates the target element
* using the provided template
*	
* @param {number} iSku
* The Sku of the queried game
*
* @param {string} sStringTemplate
* The template of the populated element
* 
* @param {object} oPlaceHoldersDictionary
* A dictionary with place-holders in the template as keys, 
* and the expected value-propreties for these places from the server's response as values
* 
* @param {string} sTargetElementID
* The HTML element ID to feed the top-score into 
*
* @param {string(optional)} sNoDataFoundHTML
* HTML to populate target-element when server returms with no data
* - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*
* @param {string(optional)} sNotAvailableHTML
* HTML to populate target-element when there is a problem with the server's response
* - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*/
ProfileMgr.getUserBestScore = function(iSku, sStringTemplate, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML, oEvents) {
    var ubs = new ProfileMgr.UserBestScore(iSku
											, sStringTemplate
											, oPlaceHoldersDictionary
											, sTargetElementID
											, sNoDataFoundHTML || this.settings.noDataMessage
											, sNotAvailableHTML || this.settings.noDataMessage
											);
    ubs = Object.extend(ubs, oEvents);
    ubs.apply();
}
//--ProfileMgr.getUserBestScore------------------------------------------------------------
/**
* A worker class that feches game user high-score
*/
ProfileMgr.UserBestScore = Class.create("UA.Game");
ProfileMgr.UserBestScore = Class.enhance(ProfileMgr.UserBestScore, IEventDispatcher);
ProfileMgr.UserBestScore.prototype.toString = function() {
    return "[UA.Game] extension: UserBestScore";
}
ProfileMgr.UserBestScore.prototype.initialize = function(iSku, sStringTemplate, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML) {
    Claim.isString(sStringTemplate, "UserBestScore.initialize - sStringTemplate must be a string");
    Claim.isObject(oPlaceHoldersDictionary, "UserBestScore.initialize - oPlaceHoldersDictionary  must be an object");
    Claim.isString(sTargetElementID, "UserBestScore.prototype.initialize - sTargetElementID must be a string");
    Claim.isObject($(sTargetElementID), "UserBestScore.prototype.initialize - sTargetElementID must be a string describing an HTML element ID");
    Claim.isString(sNoDataFoundHTML, "ProfileMgr.UserBestScore(...,sNoDataFoundHTML,...) - must be a string, expected HTML for no-data-found case")
    Claim.isString(sNotAvailableHTML, "ProfileMgr.UserBestScore(...,sNotAvailableHTML) - must be a string, expected HTML for no-data-available case")

    this.log = new Log4Js.Logger("ProfileMgr.UserBestScore");


    this.userBestScoreTemplate = sStringTemplate;
    this.userBestScorePlaceHoldersDictionary = oPlaceHoldersDictionary;
    this.oTargetElement = $(sTargetElementID);
    this.noDataFound = sNoDataFoundHTML;
    this.notAvailable = sNotAvailableHTML;


}
/**
* sends the request
*/
ProfileMgr.UserBestScore.prototype.apply = function() {
    this.GetUserHighScore( /* mode:		*/null
							 , /* fSuccess: */this.onSuccess
							 , /* fFailure: */this.onFailureOrTimeout
							 , /* fTimeout: */this.onFailureOrTimeout
							 );
}
/**
* @param {object} data
* expeced properties on data (provided by infra): 
*   - userHighScore    - userRanking
*   - userPosition
*/
ProfileMgr.UserBestScore.prototype.onSuccess = function(dataUA) {

    this.log.info("onSuccess with this Data: " + Object.serialize(dataUA));

    if (!dataUA.userPosition && !dataUA.userHighScore && !dataUA.userRanking) {
        Element.setText(this.oTargetElement, this.noDataFound);
        return;
    }

    var data = Object.extend({}, dataUA);

    data.userPosition = (!data.userPosition) ? "&nbsp" : "(" + data.userPosition + ")";
    data.userRankingImgUrl = (data.userRanking == null) ? "" : TC.UserMedals.getMedalByRanking(data.userRanking).img;
    data.userHighScoreFormatted = Number(data.userHighScore).format();

    this.log.debug("pre populating template with : " + Object.serialize(data));

    this.dispatch("onDataBind", data);

    var strHTML = ProfileMgr.populateStringTemplate(this.userBestScoreTemplate
														, this.userBestScorePlaceHoldersDictionary
														, data
														);
    Element.setText(this.oTargetElement, strHTML);
}
ProfileMgr.UserBestScore.prototype.onFailureTimeout = function() {
    this.log.error('FAILURE or TIMEOUT on UserBestScore.get()');
    Element.setText(this.oTargetElement, this.notAvailable);
}
//--/ProfileMgr.GameBestScore------------------------------------------------------------
/**
* ProfileMgr.getUserOnlineGames
* Gets the user's recent online games, and populates them into the target element, 
* in the format of the provided game-template. 
*
* @param {string} sTemplatesString
* The template for each found game 
* 
* @param {object} oPlaceHoldersDictionary
* A dictionary with place-holders in the template as keys, 
* and the expected value-propreties for these places from the server's response as values
*
* @param {string} sTargetElementID
* The HTML element ID to feed the top-score into 
*
* @param {number(optional)} oParams
* The max displayed games.
* - optiona: When not provided - all fetched games are shown.
*
*/
ProfileMgr.getUserOnlineGames = function(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, oParams, oEvents) {
    var uog = new ProfileMgr.UserOnlineGames(sTemplatesString
											, oPlaceHoldersDictionary
											, sTargetElementID
											, oParams
											);
    uog = Object.extend(uog, oEvents);
    uog.apply();
}
//--ProfileMgr.UserOnlineGames------------------------------------------------------------
ProfileMgr.UserOnlineGames = Class.create("UA.User");
ProfileMgr.UserOnlineGames = Class.enhance(ProfileMgr.UserOnlineGames, IEventDispatcher);
ProfileMgr.UserOnlineGames.prototype.initialize = function(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, oParams) {
    Claim.isString(sTemplatesString, "ProfileMgr.UserOnlineGames(GameTemplateString,...) must be a string");
    Claim.isObject(oPlaceHoldersDictionary, "ProfileMgr.UserOnlineGames(...,oPlaceHoldersDictionary,...) must be an object");
    Claim.isString(sTargetElementID, "ProfileMgr.UserOnlineGames(...,sTargetElementID,...) must be a string");
    Claim.isObject($(sTargetElementID), "ProfileMgr.UserOnlineGames(...,sTargetElementID,...) must be a string describing an HTML element");

    if (!oParams) oParams = {};

    //backward compatibility - iMaxShownGames as a "default" parameter
    if (parseInt(oParams)) oParams = { maxGames: parseInt(oParams) };

    this.params = Object.extend(this.params, oParams);

    if (oParams.maxGames) this.maxDisplayedGames = oParams.maxGames;

    this.log = new Log4Js.Logger("ProfileMgr.UserOnlineGames");

    this.repeater = new TC.Controls.Repeater(sTemplatesString
												, this.log
												, { error: "error" }
												);
    this.repeater.boss = this;
    this.repeater._dispatch = this.repeater.dispatch;
    this.repeater.dispatch = function() {
        this.log.info("ProfileMgr.UserOnlineGames.repeater - dispatching " + arguments[0]);
        if (this[arguments[0]])
            return this._dispatch.apply(this, arguments);

        return this.boss.dispatch.apply(this.boss, arguments);
    }

    this.templates = this.repeater.templates;

    if (0 == this.templates.noData.length) this.templates.noData = ProfileMgr.settings.noDataMessage;
    if (0 == this.templates.error.length) this.templates.error = ProfileMgr.settings.noDataMessage;

    this.templatePlaceHoldersDictionary = oPlaceHoldersDictionary;
    this.oTargetElement = $(sTargetElementID);
}
ProfileMgr.UserOnlineGames.prototype.apply = function() {
    this.GetUserGames(this.onSuccess
						 , this.onFailureOrTimeout
						 , this.onFailureOrTimeout);
}
ProfileMgr.UserOnlineGames.prototype.toString = function() {
    return "[UA.User] extension: UserOnlineGames";
}
ProfileMgr.UserOnlineGames.prototype.prv_repeater_onItemDataBound = function(item) {
    if (!TC.SKUs.extendDataFromSKU(item.dataItem, item.dataItem.gameSku)) {
        item.skipItem = true;
        this.log.info(item.dataItem.sku + " was reported as recent user online game, but is not found in games catalog");
    }

    this.boss.dispatch("onItemDataBound", item);
}
ProfileMgr.UserOnlineGames.prototype.onSuccess = function(data) {
    this.log.info("onSuccess with this Data: " + Object.serialize(data));

    var arrGames = data.Games;
    if (this.maxDisplayedGames && arrGames.length > this.maxDisplayedGames)
        arrGames = arrGames.slice(0, this.maxDisplayedGames);

    this.repeater.onItemDataBound = this.prv_repeater_onItemDataBound;
    this.repeater.dataBind(this.templatePlaceHoldersDictionary, arrGames);

    this.repeater.render(this.oTargetElement);
    return;
}
ProfileMgr.UserOnlineGames.prototype.onFailureOrTimeout = function() {
    this.log.error("FAILURE or TIMEOUT on ProfileMgr.UserOnlineGames");
    Element.setText(this.oTargetElement, this.templates.error);
}
//--/ProfileMgr.UserOnlineGames------------------------------------------------------------

/**
*
*/
ProfileMgr.getUserDownloadGames = function(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, oSettings, oEvents) {
    if (!oSettings.channel) oSettings.channel = this.settings.channel;

    var udg = new ProfileMgr.UserDownloadGames(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, oSettings);
    udg = Object.extend(udg, oEvents);
    udg.apply();
}

//--ProfileMgr.UserDownloadGames------------------------------------------------------------
ProfileMgr.UserDownloadGames = Class.create();
ProfileMgr.UserDownloadGames = Class.enhance(ProfileMgr.UserDownloadGames, IEventDispatcher);
ProfileMgr.UserDownloadGames.prototype.toString = function() {
    return "[ProfileMgr.UserDownloadGames]";
}
ProfileMgr.UserDownloadGames.prototype.initialize = function(sTemplatesString, oPlaceHoldersDictionary, sTargetElementID, oSettings) {
    Claim.isString(sTemplatesString, "ProfileMgr.UserDownloadGames(...,GameTemplateString,...) must be a string");
    Claim.isObject(oPlaceHoldersDictionary, "ProfileMgr.UserDownloadGames(...,oPlaceHoldersDictionary,...) must be an object");
    Claim.isString(sTargetElementID, "ProfileMgr.UserDownloadGames(...,sTargetElementID,...) must be a string");
    Claim.isObject($(sTargetElementID), "ProfileMgr.UserDownloadGames(...,sTargetElementID,...) must be a string describing an HTML element");

    if (!oSettings) oSettings = {};
    Claim.isScalar(oSettings.channel, "ProfileMgr.UserDownloadGames(.../oSettings.channel) must be the channel-code or codes");
    this.channel = oSettings.channel;

    this.log = new Log4Js.Logger("ProfileMgr.UserDownloadGames");

    this.maxDisplayedGames = oSettings.showMaxGames || 10;

    this.repeater = new TC.Controls.Repeater(sTemplatesString, this.log);
    this.repeater.boss = this;
    this.repeater._dispatch = this.repeater.dispatch;
    this.repeater.dispatch = function() {
        this.log.info("ProfileMgr.UserOnlineGames.repeater - dispatching " + arguments[0]);
        if (this[arguments[0]])
            return this._dispatch.apply(this, arguments);

        return this.boss.dispatch.apply(this.boss, arguments);
    }

    this.templatePlaceHoldersDictionary = oPlaceHoldersDictionary;
    this.oTargetElement = $(sTargetElementID);
}
ProfileMgr.UserDownloadGames.prototype.apply = function() {
    var data = ProfileMgr.getInstalledGames(this.channel)
    if (!data.games.length) {
        this.log.info("No downloadable games are found.");
    }
    this.onPopulate(data);
}
ProfileMgr.UserDownloadGames.prototype.prv_repeater_onItemDataBound = function(item) {
    if (!TC.SKUs.extendDataFromSKU(item.dataItem)) {
        this.log.info(item.dataItem.sku + " is installed for channel " + ProfileMgr.settings.channel + " but is not found in games catalog");
        item.skipItem = true;
    }

    this.boss.dispatch("onItemDataBound", item);
}
ProfileMgr.UserDownloadGames.prototype.onPopulate = function(data) {

    this.log.info("populating downloadable games with this Data: " + Object.serialize(data));

    var arrGames = data.games;
    if (this.maxDisplayedGames && arrGames.length > this.maxDisplayedGames)
        arrGames = arrGames.slice(0, this.maxDisplayedGames);

    this.repeater.onItemDataBound = this.prv_repeater_onItemDataBound;
    this.repeater.dataBind(this.templatePlaceHoldersDictionary, arrGames);

    this.repeater.render(this.oTargetElement);
    return;
}
//--/ProfileMgr.UserDownloadGames------------------------------------------------------------

/**
* ProfileMgr.getUserWornBadge
* Gets the user worn badge, and populates the target element using the worn 
* badge's properties and the badge HTML template.
*
* @param {string} sBadgeTemplateString
* The template for the user's worn badge 
*
* @param {object} oPlaceHoldersDictionary
* A dictionary with place-holders in the template as keys, 
* and the expected value-propreties for these places from the server's response as values

* @param {string} sTargetElementID
* The HTML element ID to feed the top-score into 
*
* @param {string(optional)} sNoDataFoundHTML
* HTML to populate target-element when server returms with no data
* - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*
* @param {string(optional)} sNotAvailableHTML
* HTML to populate target-element when there is a problem with the server's response
* - optional: When not provided, ProfileMgr.settings.noDataMessage is used
*/
ProfileMgr.getUserWornBadge = function(sBadgeTemplateString, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML, oEvents) {
    var ub = new ProfileMgr.UserBadge(sBadgeTemplateString, oPlaceHoldersDictionary, sTargetElementID
									, sNoDataFoundHTML || this.settings.noDataMessage
									, sNotAvailableHTML || this.settings.noDataMessage
									);
    ub = Object.extend(ub, oEvents);
    ub.apply();
}
//--ProfileMgr.UserBadge------------------------------------------------------------
ProfileMgr.UserBadge = Class.create("UA.User");
ProfileMgr.UserBadge = Class.enhance(ProfileMgr.UserBadge, IEventDispatcher);
ProfileMgr.UserBadge.prototype.toString = function() {
    return "[UA.User] extension: UserBadge";
}
ProfileMgr.UserBadge.prototype.initialize = function(sBadgeTemplateString, oPlaceHoldersDictionary, sTargetElementID, sNoDataFoundHTML, sNotAvailableHTML) {
    Claim.isString(sBadgeTemplateString, "UserBadge.prototype.initialize(sTargetElementID, oPlaceHoldersDictionary, sBadgeTargetElementID) - sBadgeTemplateString must be a string");
    Claim.isObject(oPlaceHoldersDictionary, "UserBadge.prototype.initialize(sTargetElementID, oPlaceHoldersDictionary, sBadgeTargetElementID) - oPlaceHoldersDictionary must be an object");
    Claim.isString(sTargetElementID, "UserBadge.prototype.initialize(sTargetElementID, oPlaceHoldersDictionary, sBadgeTargetElementID) - sBadgeTargetElementID must be a string");
    Claim.isObject($(sTargetElementID), "UserBadge.prototype.initialize(sTargetElementID, oPlaceHoldersDictionary, sBadgeTargetElementID) - sBadgeTargetElementID must be a string describing an HTML element ID");
    Claim.isString(sNoDataFoundHTML, "ProfileMgr.UserBadge(...,sNoDataFoundHTML,...) - must be a string, expected HTML for no-data-found case")
    Claim.isString(sNotAvailableHTML, "ProfileMgr.UserBadge(...,sNotAvailableHTML) - must be a string, expected HTML for no-data-available case")

    this.log = new Log4Js.Logger("ProfileMgr.UserBadge");

    this.oTargetElement = $(sTargetElementID);
    this.noDataFound = sNoDataFoundHTML;
    this.notAvailable = sNotAvailableHTML;
    this.medalsStringTemplate = sBadgeTemplateString;
    this.medalsPlaceHoldersDictionary = oPlaceHoldersDictionary;

}
ProfileMgr.UserBadge.prototype.apply = function() {
    this.GetHighestMedal(this.onSuccess
							, this.onFailure
							, this.onTimeout);
}
ProfileMgr.UserBadge.prototype.onSuccess = function(data) {
    this.log.info("ProfileMgr.serBadge.onSuccess - got data: " + Object.serialize(data));

    var game = TC.SKUs[data.gameSku];
    if (!game) {
        this.log.error("Game sku " + data.gameSku + " is not found.");
        Element.setText(this.oTargetElement, this.notAvailable);
        return;
    }
    this.log.info("getUserWornBadge - user badge game: " + Object.serialize(game));
    this.log.info("data.userRanking:" + data.userRanking + ", TC.UserMedals.getMedalByRanking(data.userRanking):" + Object.serialize(TC.UserMedals.getMedalByRanking(data.userRanking)));

    data.badgeGameSku = game.sku;
    data.badgeGameName = game.name;
    data.badgeGameUrl = game.gamePageURL;
    data.badgeImgUrl = TC.UserMedals.getMedalByRanking(data.userRanking).img;

    this.dispatch("onDataBind", data);

    var sHTML = ProfileMgr.populateStringTemplate(this.medalsStringTemplate
													 , this.medalsPlaceHoldersDictionary
													 , data
													 );
    Element.setText(this.oTargetElement, sHTML);
}
ProfileMgr.UserBadge.prototype.onFailure = function(response) {
    this.log.error("FAILURE on ProfileMgr.UserBadge");

    if (response.Status == 'PERSONAL_DETAILS_NOT_FOUND') {
        this.log.warn("PERSONAL_DETAILS_NOT_FOUND on UserBadge");
        Element.setText(this.oTargetElement, this.noDataFound);
    }
    else {
        this.log.warn("Error on UserBadge: " + response.Status);
        Element.setText(this.oTargetElement, this.notAvailable);
    }
}
ProfileMgr.UserBadge.prototype.onTimeout = function(request) {
    this.log.error("TIMEOUT on ProfileMgr.UserBadge");
    Element.setText(this.oTargetElement, this.notAvailable);
}
//--/ProfileMgr.UserBadge------------------------------------------------------------
/**
* ProfileMgr.getInstalledGames
* 
* @param {Number|String(optional)} The channel-code or comma-delimited-string of channel-codes
* When not provided - the channel that is initiated into ProfileMgr is used.
*/
ProfileMgr.getInstalledGames = function(channel) {
    channel = channel || this.settings.channel;
    return getGamesListByChannel(channel)
}
//----------------------------------------------------------------------------------

/**
* Centralizes the applicativity of the user's Avatar
*/
ProfileMgr.Avatar = {}
/**
* id of the HTML id
*/
ProfileMgr.Avatar.id = "mainFAV"
/**
* supported emotions array
*/
ProfileMgr.Avatar.Emotions = ["Happy"
							 , "Sad"
							 ];
ProfileMgr.Avatar.Emotions.Happy = 0
ProfileMgr.Avatar.Emotions.Sad = 1


ProfileMgr.Avatar = {};


/**
* initiates the ProfileMgr.Avatar object
* 
* @param {string(optional)} sAvatarID
* - optional: when not provided, the default in ProfileMgr.Avatar.id is used.
*/
ProfileMgr.Avatar.init = function(sAvatarID) {
    if (!this.log) this.log = new Log4Js.Logger("ProfileMgr.Avatar");

    if (sAvatarID) this.id = sAvatarID;
    if (!this.id) {
        this.log.warn("avatar object ID is not set");
        return;
    }
    if (navigator.appName.indexOf("Netscape") != -1) {
        this.log.info("netscape detected.");
        this.objFAV = document.embeds[this.id];
        return;
    }
    else {
        this.objFAV = $(this.id);
    }
}
ProfileMgr.addOnLoadHandler(
	function() {
	    ProfileMgr.Avatar.init();
	}
);
/**
* Sets emotion to the active avater
*
* @param {string} sEmotion
* The emotion be to set
*/
ProfileMgr.Avatar.be = function(sEmotion) {
    Claim.isString(sEmotion, "ProfileMgr.Avatar.be(sEmotion) - sEmotion must be a string, expectedly - describing a supported emotion");
    if (null == this.Emotions[sEmotion]) {
        this.log.warn("ProfileMgr.Avatar.be(sEmotion) - invalid emotion is used: " + sEmotion);
        return;
    }
    this.objFAV.SetVariable("val", sEmotion);
    this.objFAV.SetVariable("command", "changeEmotion");
}
/**
* sets the zoom of the avatar
* 
* @param {string} sZoom
* The zoom to be set
*/
ProfileMgr.Avatar.zoom = function(sZoom) {
    Claim.isString(zoom, "ProfileMgr.Avatar.be(zoom) - zoom must be a string, expectedly - describing a supported zoom rate");

    this.objFAV.SetVariable("val", sZoom);
    this.objFAV.SetVariable("command", "setZoom");
}
/**
* Sets the avatar emotion to Happy
*/
ProfileMgr.Avatar.beHappy = function() {
    this.be("Happy");
}
/**
* Sets the avatar emotion to Sad
*/
ProfileMgr.Avatar.beSad = function() {
    this.be("Sad");
}



//--------------------------------------------------------
// SEATLE PORTLET AVATAR ON CLICK API
avatarOnClick = function() { }
/************ END /Javascript/2100/Diamond/Profile.js ***********/


/************ START /Javascript/2100/UserMedals.js ***********/
//-------------------------------------------------------
/** 
*  TC = Type C namespace
*/
if (window["TC"] == null) {
    TC = {};
}
//-------------------------------------------------------
TC.UserMedals = Class.create();
/**
* Normal  Ranking: 0 = best 1 = last
* Reverse Ranking: 1 = best 0 = last
**/
TC.UserMedals.reverseRanking = true;
/**
* Array of all medal-levels
**/
TC.UserMedals.All = [];
/**
* adds a new ranking level
*
* @param {double} sImg
* a number between 0 to 1 that ranks level of users in comparison to 
* thier community
*
* @param {string} sImg
* Relative path to the user-medal image
**/
TC.UserMedals.addRankingLevel = function(dblRanking, sImg) {
    var oLevel = new TC.UserMedals(dblRanking, sImg)
    this.All[this.All.length] = oLevel;
    this.All.sort();
}
/**
* Returns the Ranking Level by the user ranking
*
* @param {double} dblRanking
* The ranking of the user
**/
TC.UserMedals.getMedalByRanking = function(dblRanking) {
    var i;

    if (this.reverseRanking)
        dblRanking = 1 - dblRanking;

    for (i = 0; i < this.All.length; i++)
        if (dblRanking <= this.All[i].ranking)
        return this.All[i];
}
/**
*@private
* Constructor of Ranking-Level object
*
* @param {double} dblRanking
* @param {string} sImg
* The ranking of the user
**/
TC.UserMedals.prototype.initialize = function(dblRanking, sImg) {
    this.img = sImg;
    this.ranking = dblRanking;
}
/**
* @private
* override of  Object.toString(), for the Array.sort()
**/
TC.UserMedals.prototype.toString = function() {
    return this.ranking;
}
/**
* MpRanking class stores the images of the ranking levels for the mp
**/
TC.MpRanking = Class.create();
/**
* Array of all ranking-levels
**/
TC.MpRanking.All = [];
/**
* Holds the maximum upper bound for the ranking (2000+)
*/
TC.MpRanking.MaximumRanking = {};
/**
*@private
* Constructor of Ranking-Level object
*
* @param {integer} score
* @param {string} image
* The ranking of the user
**/
TC.MpRanking.prototype.initialize = function(score, image) {
    this.score = score;
    this.image = image;
}
/**
* adds a new ranking level for multiplayer game
*
* @param {integer} score
* @param {string} image
**/
TC.MpRanking.addRankingLevel = function(score, image) {
    var oLevel = new TC.MpRanking(score, image);
    this.All[this.All.length] = oLevel;
}
/**
* adds a the upper bound ranking level for multiplayer game
*
* @param {integer} score
* @param {string} image
**/
TC.MpRanking.addMaximumRankingLevel = function(score, image) {
    this.MaximumRanking = new TC.MpRanking(score, image);
}
/**
* Returns the Ranking Level by the user score
*
* @param {integer} score
* The ranking of the user
**/
TC.MpRanking.getMpRankingByScore = function(score) {
    for (var i = 0; i < this.All.length; i++) {
        if (score <= this.All[i].score)
            return this.All[i];
    }
    if (this.MaximumRanking && score >= this.MaximumRanking.score)
        return this.MaximumRanking;
    return null;
}

/************ END /Javascript/2100/UserMedals.js ***********/


//:::Membership Static 00:00:00.5625072

Membership={};Membership.AccountReturnedStatus={};Membership.AccountReturnedStatus.OK=0;Membership.AccountReturnedStatus.ACCOUNT_ERROR=1;Membership.AccountReturnedStatus.INVALID_PARAMETERS=2;Membership.AccountReturnedStatus.USER_LOGGED_OFF=4;Membership.AccountReturnedStatus.USERNAME_PASSWORD_MISMATCH=8;Membership.AccountReturnedStatus.USER_BLOCKED=16;Membership.AccountReturnedStatus.USERNAME_USED=32;Membership.AccountReturnedStatus.NICKNAME_USED=64;Membership.AccountReturnedStatus.ACCOUNT_NOT_CREATED=128;Membership.AccountReturnedStatus.CAPTCHA_MISMATCH=256;Membership.Params={};Membership.Params.ERROR_CODE='errorCode';Membership.Params.CHANNEL_CODE='channel';Membership.Params.LANGUAGE_CODE='lc';Membership.Params.USERNAME='username';Membership.Params.EMAIL='email';Membership.Params.PASSWORD='password';Membership.Params.CURRENT_PASSWORD='currentPassword';Membership.Params.REMEMBER='remember';Membership.Params.RETURN_URL='retUrl';Membership.Params.FAIL_URL='failUrl';Membership.Params.THANK_URL='thankUrl';Membership.Params.COMMAND='cmd';Membership.Params.TAB='tab';Membership.Params.VERIFY_EMAIL='verifyEmail';Membership.Params.IS_BASIC='isBasic';Membership.loginUrl;Membership.directLoginUrl;Membership.createAccountUrl;Membership.resetPasswordUrl;Membership.guestLoginUrl;Membership.userInfo={};Membership.userInfo.profileSummaryUrl;Membership.userInfo.personalInfoUrl;Membership.userInfo.fasUrl;Membership.userInfo.tokensUrl;Membership.userInfo.recentGamesUrl;Membership.userInfo.highscoresUrl;Membership.userInfo.userPassUrl;Membership.userInfo.billingDetails
Membership.userInfo.editBillingDetails
Membership.emailRegex;Membership.loginPasswordRegex;Membership.channelCode;Membership.languageCode;Membership.getFinalUrl=function(target,thankUrl,retUrl,failUrl,additionalParameters)
{var params;if(additionalParameters)
params=additionalParameters;else
params={};if(thankUrl)
params[Membership.Params.THANK_URL]=thankUrl;if(retUrl)
params[Membership.Params.RETURN_URL]=retUrl;if(failUrl)
params[Membership.Params.FAIL_URL]=failUrl;params[Membership.Params.CHANNEL_CODE]=Membership.channelCode;params[Membership.Params.LANGUAGE_CODE]=Membership.languageCode;var oTarget=Url.parse(target);oTarget.withClearanceParams=true;Object.extend(oTarget.params,params);var finalTarget=Url.relativeUrl(oTarget);var user=new UA.User();if(!user.IsLoggedOn())
finalTarget+='&ui=none';return finalTarget;}
Membership.getFinalDirectLoginUrl=function(target,thankUrl,retUrl,failUrl,username,password,remember,additionalParameters)
{var params;if(additionalParameters)
params=additionalParameters;else
params={};params[Membership.Params.USERNAME]=username;params[Membership.Params.PASSWORD]=password;params[Membership.Params.REMEMBER]=remember;var finalTarget=Membership.getFinalUrl(target,thankUrl,retUrl,failUrl,params);return finalTarget;}
Membership.isValidUsername=function(username)
{var isValid=Membership.usernameRegex.test(username);return isValid;}
Membership.isValidLoginPassword=function(password)
{var isValid=Membership.loginPasswordRegex.test(password);return isValid;}
Membership.DirectLogin=function(retUrl,failUrl,username,password,rememberMe,isBasic)
{var params={};params[Membership.Params.IS_BASIC]=isBasic;var directLoginUrl=Membership.getFinalDirectLoginUrl(Membership.directLoginUrl,null,retUrl,failUrl,username,password,rememberMe,params);location.href=directLoginUrl;}
Membership.DirectBasicRegistration=function(retUrl,failUrl,useInternalThankPage,username,password,rememberMe,email)
{var params={};params[Membership.Params.USERNAME]=username;params[Membership.Params.PASSWORD]=password;params[Membership.Params.EMAIL]=email;params[Membership.Params.REMEMBER]=rememberMe;params[Membership.Params.IS_BASIC]=true;var thankUrl=useInternalThankPage?null:retUrl;var directCreateAccountUrl=Membership.getFinalUrl(Membership.directCreateAccountUrl,thankUrl,retUrl,failUrl,params);location.href=directCreateAccountUrl;}
Membership.DirectChangePassword=function(retUrl,failUrl,oldPass,newPass)
{var params={};params[Membership.Params.CURRENT_PASSWORD]=oldPass;params[Membership.Params.PASSWORD]=newPass;var directUpdateUrl=Membership.getFinalUrl(Membership.directUpdateUrl,null,retUrl,failUrl,params);location.href=directUpdateUrl;}
Membership.DirectForgotPassword=function(retUrl,failUrl,useInternalThankPage,username,verifyEmail)
{var params={};params[Membership.Params.USERNAME]=username;params[Membership.Params.VERIFY_EMAIL]=verifyEmail;var thankUrl=useInternalThankPage?null:retUrl;var directForgotPasswordUrl=Membership.getFinalUrl(Membership.directForgotPasswordUrl,thankUrl,retUrl,failUrl,params);location.href=directForgotPasswordUrl;}
//:::Membership Init 00:00:00.5781324

// TODO: Change the hard coded strings to use the consts
Membership.loginUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=login";
Membership.logoutUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=logout";
Membership.directLoginUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=directlogin";
Membership.createAccountUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=createaccount";
Membership.directCreateAccountUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=directcreateaccount";
Membership.forgotPasswordUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=forgotpass";
Membership.directForgotPasswordUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=directforgotpass";
Membership.guestLoginUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=loginguest";
Membership.directUpdateUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=directupdate";
Membership.userInfo.profileSummaryUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=profilesummary";
Membership.userInfo.personalInfoUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=personalinfo";
Membership.userInfo.fasUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=fas";
Membership.userInfo.tokensUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=tokens";
Membership.userInfo.recentGamesUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=recentgames";
Membership.userInfo.highscoresUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=highscores";
Membership.userInfo.userPassUrl = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=userpass";
Membership.userInfo.billingDetails = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=billingdetails";
Membership.userInfo.editBillingDetails = "https://secure.betaregion.omiverify.com/membership/3000/App/JCT/EntryPoint.aspx?cmd=edit&tab=editbillingdetails";

Membership.usernameRegex = new RegExp('([a-zA-Z0-9_\\-\\.]+)@(([[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})$');
Membership.loginPasswordRegex = new RegExp('/^\\S.{5,11}$/');

Membership.channelCode = 110445270;
var lowerCaseLangCode = 'en';
lowerCaseLangCode = lowerCaseLangCode.toLowerCase();
Membership.languageCode = lowerCaseLangCode;


//::: Omniture Web Analysis 00:00:00.5937576


/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_objectID;function s_c2fe(f){var x='',s=0,e,a,b,c;while(1){e=
f.indexOf('"',s);b=f.indexOf('\\',s);c=f.indexOf("\n",s);if(e<0||(b>=
0&&b<e))e=b;if(e<0||(c>=0&&c<e))e=c;if(e>=0){x+=(e>s?f.substring(s,e):
'')+(e==c?'\\n':'\\'+f.substring(e,e+1));s=e+1}else return x
+f.substring(s)}return f}function s_c2fa(f){var s=f.indexOf('(')+1,e=
f.indexOf(')'),a='',c;while(s>=0&&s<e){c=f.substring(s,s+1);if(c==',')
a+='","';else if(("\n\r\t ").indexOf(c)<0)a+=c;s++}return a?'"'+a+'"':
a}function s_c2f(cc){cc=''+cc;var fc='var f=new Function(',s=
cc.indexOf(';',cc.indexOf('{')),e=cc.lastIndexOf('}'),o,a,d,q,c,f,h,x
fc+=s_c2fa(cc)+',"var s=new Object;';c=cc.substring(s+1,e);s=
c.indexOf('function');while(s>=0){d=1;q='';x=0;f=c.substring(s);a=
s_c2fa(f);e=o=c.indexOf('{',s);e++;while(d>0){h=c.substring(e,e+1);if(
q){if(h==q&&!x)q='';if(h=='\\')x=x?0:1;else x=0}else{if(h=='"'||h=="'"
)q=h;if(h=='{')d++;if(h=='}')d--}if(d>0)e++}c=c.substring(0,s)
+'new Function('+(a?a+',':'')+'"'+s_c2fe(c.substring(o+1,e))+'")'
+c.substring(e+1);s=c.indexOf('function')}fc+=s_c2fe(c)+';return s");'
eval(fc);return f}function s_gi(un,pg,ss){var c="function s_c(un,pg,s"
+"s){var s=this;s.wd=window;if(!s.wd.s_c_in){s.wd.s_c_il=new Array;s."
+"wd.s_c_in=0;}s._il=s.wd.s_c_il;s._in=s.wd.s_c_in;s._il[s._in]=s;s.w"
+"d.s_c_in++;s.m=function(m){return (''+m).indexOf('{')<0};s.fl=funct"
+"ion(x,l){return x?(''+x).substring(0,l):x};s.co=function(o){if(!o)r"
+"eturn o;var n=new Object,x;for(x in o)if(x.indexOf('select')<0&&x.i"
+"ndexOf('filter')<0)n[x]=o[x];return n};s.num=function(x){x=''+x;for"
+"(var p=0;p<x.length;p++)if(('0123456789').indexOf(x.substring(p,p+1"
+"))<0)return 0;return 1};s.rep=function(x,o,n){var i=x.indexOf(o);wh"
+"ile(x&&i>=0){x=x.substring(0,i)+n+x.substring(i+o.length);i=x.index"
+"Of(o,i+n.length)}return x};s.ape=function(x){var s=this,i;x=x?s.rep"
+"(escape(''+x),'+','%2B'):x;if(x&&s.charSet&&s.em==1&&x.indexOf('%u'"
+")<0&&x.indexOf('%U')<0){i=x.indexOf('%');while(i>=0){i++;if(('89ABC"
+"DEFabcdef').indexOf(x.substring(i,i+1))>=0)return x.substring(0,i)+"
+"'u00'+x.substring(i);i=x.indexOf('%',i)}}return x};s.epa=function(x"
+"){var s=this;return x?unescape(s.rep(''+x,'+',' ')):x};s.pt=functio"
+"n(x,d,f,a){var s=this,t=x,z=0,y,r;while(t){y=t.indexOf(d);y=y<0?t.l"
+"ength:y;t=t.substring(0,y);r=s.m(f)?s[f](t,a):f(t,a);if(r)return r;"
+"z+=y+d.length;t=x.substring(z,x.length);t=z<x.length?t:''}return ''"
+"};s.isf=function(t,a){var c=a.indexOf(':');if(c>=0)a=a.substring(0,"
+"c);if(t.substring(0,2)=='s_')t=t.substring(2);return (t!=''&&t==a)}"
+";s.fsf=function(t,a){var s=this;if(s.pt(a,',','isf',t))s.fsg+=(s.fs"
+"g!=''?',':'')+t;return 0};s.fs=function(x,f){var s=this;s.fsg='';s."
+"pt(x,',','fsf',f);return s.fsg};s.c_d='';s.c_gdf=function(t,a){var "
+"s=this;if(!s.num(t))return 1;return 0};s.c_gd=function(){var s=this"
+",d=s.wd.location.hostname,n=s.fpCookieDomainPeriods,p;if(!n)n=s.coo"
+"kieDomainPeriods;if(d&&!s.c_d){n=n?parseInt(n):2;n=n>2?n:2;p=d.last"
+"IndexOf('.');if(p>=0){while(p>=0&&n>1){p=d.lastIndexOf('.',p-1);n--"
+"}s.c_d=p>0&&s.pt(d,'.','c_gdf',0)?d.substring(p):d}}return s.c_d};s"
+".c_r=function(k){var s=this;k=s.ape(k);var c=' '+s.d.cookie,i=c.ind"
+"exOf(' '+k+'='),e=i<0?i:c.indexOf(';',i),v=i<0?'':s.epa(c.substring"
+"(i+2+k.length,e<0?c.length:e));return v!='[[B]]'?v:''};s.c_w=functi"
+"on(k,v,e){var s=this,d=s.c_gd(),l=s.cookieLifetime,t;v=''+v;l=l?(''"
+"+l).toUpperCase():'';if(e&&l!='SESSION'&&l!='NONE'){t=(v!=''?parseI"
+"nt(l?l:0):-60);if(t){e=new Date;e.setTime(e.getTime()+(t*1000))}}if"
+"(k&&l!='NONE'){s.d.cookie=k+'='+s.ape(v!=''?v:'[[B]]')+'; path=/;'+"
+"(e&&l!='SESSION'?' expires='+e.toGMTString()+';':'')+(d?' domain='+"
+"d+';':'');return s.c_r(k)==v}return 0};s.eh=function(o,e,r,f){var s"
+"=this,b='s_'+e+'_'+s._in,n=-1,l,i,x;if(!s.ehl)s.ehl=new Array;l=s.e"
+"hl;for(i=0;i<l.length&&n<0;i++){if(l[i].o==o&&l[i].e==e)n=i}if(n<0)"
+"{n=i;l[n]=new Object}x=l[n];x.o=o;x.e=e;f=r?x.b:f;if(r||f){x.b=r?0:"
+"o[e];x.o[e]=f}if(x.b){x.o[b]=x.b;return b}return 0};s.cet=function("
+"f,a,t,o,b){var s=this,r;if(s.apv>=5&&(!s.isopera||s.apv>=7))eval('t"
+"ry{r=s.m(f)?s[f](a):f(a)}catch(e){r=s.m(t)?s[t](e):t(e)}');else{if("
+"s.ismac&&s.u.indexOf('MSIE 4')>=0)r=s.m(b)?s[b](a):b(a);else{s.eh(s"
+".wd,'onerror',0,o);r=s.m(f)?s[f](a):f(a);s.eh(s.wd,'onerror',1)}}re"
+"turn r};s.gtfset=function(e){var s=this;return s.tfs};s.gtfsoe=new "
+"Function('e','var s=s_c_il['+s._in+'];s.eh(window,\"onerror\",1);s."
+"etfs=1;var c=s.t();if(c)s.d.write(c);s.etfs=0;return true');s.gtfsf"
+"b=function(a){return window};s.gtfsf=function(w){var s=this,p=w.par"
+"ent,l=w.location;s.tfs=w;if(p&&p.location!=l&&p.location.host==l.ho"
+"st){s.tfs=p;return s.gtfsf(s.tfs)}return s.tfs};s.gtfs=function(){v"
+"ar s=this;if(!s.tfs){s.tfs=s.wd;if(!s.etfs)s.tfs=s.cet('gtfsf',s.tf"
+"s,'gtfset',s.gtfsoe,'gtfsfb')}return s.tfs};s.ca=function(){var s=t"
+"his,imn='s_i_'+s.fun;if(s.d.images&&s.apv>=3&&(!s.isopera||s.apv>=7"
+")&&(s.ns6<0||s.apv>=6.1)){s.ios=1;if(!s.d.images[imn]&&(!s.isns||(s"
+".apv<4||s.apv>=5))){s.d.write('<im'+'g name=\"'+imn+'\" height=1 wi"
+"dth=1 border=0 alt=\"\">');if(!s.d.images[imn])s.ios=0}}};s.mr=func"
+"tion(sess,q,ta){var s=this,dc=s.dc,t1=s.trackingServer,t2=s.trackin"
+"gServerSecure,ns=s.visitorNamespace,unc=s.rep(s.fun,'_','-'),imn='s"
+"_i_'+s.fun,im,b,e,rs='http'+(s.ssl?'s':'')+'://'+(t1?(s.ssl&&t2?t2:"
+"t1):((ns?ns:(s.ssl?'102':unc))+'.'+(s.dc?s.dc:112)+'.2o7.net'))+'/b"
+"/ss/'+s.un+'/1/H.9-pdv-2/'+sess+'?[AQB]&ndh=1'+(q?q:'')+(s.q?s.q:''"
+")+'&[AQE]';if(s.isie&&!s.ismac){if(s.apv>5.5)rs=s.fl(rs,4095);else "
+"rs=s.fl(rs,2047)}if(s.ios||s.ss){if (!s.ss)s.ca();im=s.wd[imn]?s.wd"
+"[imn]:s.d.images[imn];if(!im)im=s.wd[imn]=new Image;im.src=rs;if(rs"
+".indexOf('&pe=')>=0&&(!ta||ta=='_self'||ta=='_top'||(s.wd.name&&ta="
+"=s.wd.name))){b=e=new Date;while(e.getTime()-b.getTime()<500)e=new "
+"Date}return ''}return '<im'+'g sr'+'c=\"'+rs+'\" width=1 height=1 b"
+"order=0 alt=\"\">'};s.gg=function(v){var s=this;return s.wd['s_'+v]"
+"};s.glf=function(t,a){if(t.substring(0,2)=='s_')t=t.substring(2);va"
+"r s=this,v=s.gg(t);if(v)s[t]=v};s.gl=function(v){var s=this;s.pt(v,"
+"',','glf',0)};s.gv=function(v){var s=this;return s['vpm_'+v]?s['vpv"
+"_'+v]:(s[v]?s[v]:'')};s.havf=function(t,a){var s=this,b=t.substring"
+"(0,4),x=t.substring(4),n=parseInt(x),k='g_'+t,m='vpm_'+t,q=t,v=s.li"
+"nkTrackVars,e=s.linkTrackEvents;s[k]=s.gv(t);if(s.lnk||s.eo){v=v?v+"
+"','+s.vl_l:'';if(v&&!s.pt(v,',','isf',t))s[k]='';if(t=='events'&&e)"
+"s[k]=s.fs(s[k],e)}s[m]=0;if(t=='visitorID')q='vid';else if(t=='page"
+"URL')q='g';else if(t=='referrer')q='r';else if(t=='vmk')q='vmt';els"
+"e if(t=='charSet'){q='ce';if(s[k]&&s.em==2)s[k]='UTF-8'}else if(t=="
+"'visitorNamespace')q='ns';else if(t=='cookieDomainPeriods')q='cdp';"
+"else if(t=='cookieLifetime')q='cl';else if(t=='variableProvider')q="
+"'vvp';else if(t=='currencyCode')q='cc';else if(t=='channel')q='ch';"
+"else if(t=='campaign')q='v0';else if(s.num(x)) {if(b=='prop')q='c'+"
+"n;else if(b=='eVar')q='v'+n;else if(b=='hier'){q='h'+n;s[k]=s.fl(s["
+"k],255)}}if(s[k]&&t!='linkName'&&t!='linkType')s.qav+='&'+q+'='+s.a"
+"pe(s[k]);return ''};s.hav=function(){var s=this;s.qav='';s.pt(s.vl_"
+"t,',','havf',0);return s.qav};s.lnf=function(t,h){t=t?t.toLowerCase"
+"():'';h=h?h.toLowerCase():'';var te=t.indexOf('=');if(t&&te>0&&h.in"
+"dexOf(t.substring(te+1))>=0)return t.substring(0,te);return ''};s.l"
+"n=function(h){var s=this,n=s.linkNames;if(n)return s.pt(n,',','lnf'"
+",h);return ''};s.ltdf=function(t,h){t=t?t.toLowerCase():'';h=h?h.to"
+"LowerCase():'';var qi=h.indexOf('?');h=qi>=0?h.substring(0,qi):h;if"
+"(t&&h.substring(h.length-(t.length+1))=='.'+t)return 1;return 0};s."
+"ltef=function(t,h){t=t?t.toLowerCase():'';h=h?h.toLowerCase():'';if"
+"(t&&h.indexOf(t)>=0)return 1;return 0};s.lt=function(h){var s=this,"
+"lft=s.linkDownloadFileTypes,lef=s.linkExternalFilters,lif=s.linkInt"
+"ernalFilters;lif=lif?lif:s.wd.location.hostname;h=h.toLowerCase();i"
+"f(s.trackDownloadLinks&&lft&&s.pt(lft,',','ltdf',h))return 'd';if(s"
+".trackExternalLinks&&(lef||lif)&&(!lef||s.pt(lef,',','ltef',h))&&(!"
+"lif||!s.pt(lif,',','ltef',h)))return 'e';return ''};s.lc=new Functi"
+"on('e','var s=s_c_il['+s._in+'],b=s.eh(this,\"onclick\");s.lnk=s.co"
+"(this);s.t();s.lnk=0;if(b)return this[b](e);return true');s.bc=new "
+"Function('e','var s=s_c_il['+s._in+'],f;if(s.d&&s.d.all&&s.d.all.cp"
+"pXYctnr)return;s.eo=e.srcElement?e.srcElement:e.target;eval(\"try{i"
+"f(s.eo&&(s.eo.tagName||s.eo.parentElement||s.eo.parentNode))s.t()}c"
+"atch(f){}\");s.eo=0');s.ot=function(o){var a=o.type,b=o.tagName;ret"
+"urn (a&&a.toUpperCase?a:b&&b.toUpperCase?b:o.href?'A':'').toUpperCa"
+"se()};s.oid=function(o){var s=this,t=s.ot(o),p=o.protocol,c=o.oncli"
+"ck,n='',x=0;if(!o.s_oid){if(o.href&&(t=='A'||t=='AREA')&&(!c||!p||p"
+".toLowerCase().indexOf('javascript')<0))n=o.href;else if(c){n=s.rep"
+"(s.rep(s.rep(s.rep(''+c,\"\\r\",''),\"\\n\",''),\"\\t\",''),' ','')"
+";x=2}else if(o.value&&(t=='INPUT'||t=='SUBMIT')){n=o.value;x=3}else"
+" if(o.src&&t=='IMAGE')n=o.src;if(n){o.s_oid=s.fl(n,100);o.s_oidt=x}"
+"}return o.s_oid};s.rqf=function(t,un){var s=this,e=t.indexOf('='),u"
+"=e>=0?','+t.substring(0,e)+',':'';return u&&u.indexOf(','+un+',')>="
+"0?s.epa(t.substring(e+1)):''};s.rq=function(un){var s=this,c=un.ind"
+"exOf(','),v=s.c_r('s_sq'),q='';if(c<0)return s.pt(v,'&','rqf',un);r"
+"eturn s.pt(un,',','rq',0)};s.sqp=function(t,a){var s=this,e=t.index"
+"Of('='),q=e<0?'':s.epa(t.substring(e+1));s.sqq[q]='';if(e>=0)s.pt(t"
+".substring(0,e),',','sqs',q);return 0};s.sqs=function(un,q){var s=t"
+"his;s.squ[un]=q;return 0};s.sq=function(q){var s=this,k='s_sq',v=s."
+"c_r(k),x,c=0;s.sqq=new Object;s.squ=new Object;s.sqq[q]='';s.pt(v,'"
+"&','sqp',0);s.pt(s.un,',','sqs',q);v='';for(x in s.squ)s.sqq[s.squ["
+"x]]+=(s.sqq[s.squ[x]]?',':'')+x;for(x in s.sqq)if(x&&s.sqq[x]&&(x=="
+"q||c<2)){v+=(v?'&':'')+s.sqq[x]+'='+s.ape(x);c++}return s.c_w(k,v,0"
+")};s.wdl=new Function('e','var s=s_c_il['+s._in+'],r=true,b=s.eh(s."
+"wd,\"onload\"),i,o,oc;if(b)r=this[b](e);for(i=0;i<s.d.links.length;"
+"i++){o=s.d.links[i];oc=o.onclick?\"\"+o.onclick:\"\";if((oc.indexOf"
+"(\"s_gs(\")<0||oc.indexOf(\".s_oc(\")>=0)&&oc.indexOf(\".tl(\")<0)s"
+".eh(o,\"onclick\",0,s.lc);}return r');s.wds=function(){var s=this;i"
+"f(s.apv>3&&(!s.isie||!s.ismac||s.apv>=5)){if(s.b&&s.b.attachEvent)s"
+".b.attachEvent('onclick',s.bc);else if(s.b&&s.b.addEventListener)s."
+"b.addEventListener('click',s.bc,false);else s.eh(s.wd,'onload',0,s."
+"wdl)}};s.vs=function(x){var s=this,v=s.visitorSampling,g=s.visitorS"
+"amplingGroup,k='s_vsn_'+s.un+(g?'_'+g:''),n=s.c_r(k),e=new Date,y=e"
+".getYear();e.setYear(y+10+(y<1900?1900:0));if(v){v*=100;if(!n){if(!"
+"s.c_w(k,x,e))return 0;n=x}if(n%10000>v)return 0}return 1};s.dyasmf="
+"function(t,m){if(t&&m&&m.indexOf(t)>=0)return 1;return 0};s.dyasf=f"
+"unction(t,m){var s=this,i=t?t.indexOf('='):-1,n,x;if(i>=0&&m){var n"
+"=t.substring(0,i),x=t.substring(i+1);if(s.pt(x,',','dyasmf',m))retu"
+"rn n}return 0};s.uns=function(){var s=this,x=s.dynamicAccountSelect"
+"ion,l=s.dynamicAccountList,m=s.dynamicAccountMatch,n,i;s.un.toLower"
+"Case();if(x&&l){if(!m)m=s.wd.location.host;if(!m.toLowerCase)m=''+m"
+";l=l.toLowerCase();m=m.toLowerCase();n=s.pt(l,';','dyasf',m);if(n)s"
+".un=n}i=s.un.indexOf(',');s.fun=i<0?s.un:s.un.substring(0,i)};s.sa="
+"function(un){s.un=un;if(!s.oun)s.oun=un;else if((','+s.oun+',').ind"
+"exOf(un)<0)s.oun+=','+un;s.uns()};s.t=function(){var s=this,trk=1,t"
+"m=new Date,sed=Math&&Math.random?Math.floor(Math.random()*100000000"
+"00000):tm.getTime(),sess='s'+Math.floor(tm.getTime()/10800000)%10+s"
+"ed,yr=tm.getYear(),vt=tm.getDate()+'/'+tm.getMonth()+'/'+(yr<1900?y"
+"r+1900:yr)+' '+tm.getHours()+':'+tm.getMinutes()+':'+tm.getSeconds("
+")+' '+tm.getDay()+' '+tm.getTimezoneOffset(),tfs=s.gtfs(),ta='',q='"
+"',qs='';s.uns();if(!s.q){var tl=tfs.location,x='',c='',v='',p='',bw"
+"='',bh='',j='1.0',k=s.c_w('s_cc','true',0)?'Y':'N',hp='',ct='',pn=0"
+",ps;if(s.apv>=4)x=screen.width+'x'+screen.height;if(s.isns||s.isope"
+"ra){if(s.apv>=3){j='1.1';v=s.n.javaEnabled()?'Y':'N';if(s.apv>=4){j"
+"='1.2';c=screen.pixelDepth;bw=s.wd.innerWidth;bh=s.wd.innerHeight;i"
+"f(s.apv>=4.06)j='1.3'}}s.pl=s.n.plugins}else if(s.isie){if(s.apv>=4"
+"){v=s.n.javaEnabled()?'Y':'N';j='1.2';c=screen.colorDepth;if(s.apv>"
+"=5){bw=s.d.documentElement.offsetWidth;bh=s.d.documentElement.offse"
+"tHeight;j='1.3';if(!s.ismac&&s.b){s.b.addBehavior('#default#homePag"
+"e');hp=s.b.isHomePage(tl)?\"Y\":\"N\";s.b.addBehavior('#default#cli"
+"entCaps');ct=s.b.connectionType}}}else r=''}if(s.pl)while(pn<s.pl.l"
+"ength&&pn<30){ps=s.fl(s.pl[pn].name,100)+';';if(p.indexOf(ps)<0)p+="
+"ps;pn++}s.q=(x?'&s='+s.ape(x):'')+(c?'&c='+s.ape(c):'')+(j?'&j='+j:"
+"'')+(v?'&v='+v:'')+(k?'&k='+k:'')+(bw?'&bw='+bw:'')+(bh?'&bh='+bh:'"
+"')+(ct?'&ct='+s.ape(ct):'')+(hp?'&hp='+hp:'')+(p?'&p='+s.ape(p):'')"
+"}if(s.usePlugins)s.doPlugins(s);var l=s.wd.location,r=tfs.document."
+"referrer;if(!s.pageURL)s.pageURL=s.fl(l?l:'',255);if(!s.referrer)s."
+"referrer=s.fl(r?r:'',255);if(s.lnk||s.eo){var o=s.eo?s.eo:s.lnk;if("
+"!o)return '';var p=s.gv('pageName'),w=1,t=s.ot(o),n=s.oid(o),x=o.s_"
+"oidt,h,l,i,oc;if(s.eo&&o==s.eo){while(o&&!n&&t!='BODY'){o=o.parentE"
+"lement?o.parentElement:o.parentNode;if(!o)return '';t=s.ot(o);n=s.o"
+"id(o);x=o.s_oidt}oc=o.onclick?''+o.onclick:'';if((oc.indexOf(\"s_gs"
+"(\")>=0&&oc.indexOf(\".s_oc(\")<0)||oc.indexOf(\".tl(\")>=0)return "
+"''}ta=n?o.target:1;h=o.href?o.href:'';i=h.indexOf('?');h=s.linkLeav"
+"eQueryString||i<0?h:h.substring(0,i);l=s.linkName?s.linkName:s.ln(h"
+");t=s.linkType?s.linkType.toLowerCase():s.lt(h);if(t&&(h||l))q+='&p"
+"e=lnk_'+(t=='d'||t=='e'?s.ape(t):'o')+(h?'&pev1='+s.ape(h):'')+(l?'"
+"&pev2='+s.ape(l):'');else trk=0;if(s.trackInlineStats){if(!p){p=s.g"
+"v('pageURL');w=0}t=s.ot(o);i=o.sourceIndex;if(s.gg('objectID')){n=s"
+".gg('objectID');x=1;i=1}if(p&&n&&t)qs='&pid='+s.ape(s.fl(p,255))+(w"
+"?'&pidt='+w:'')+'&oid='+s.ape(s.fl(n,100))+(x?'&oidt='+x:'')+'&ot='"
+"+s.ape(t)+(i?'&oi='+i:'')}}if(!trk&&!qs)return '';if(s.p_r)s.p_r();"
+"var code='';if(trk&&s.vs(sed))code=s.mr(sess,(vt?'&t='+s.ape(vt):''"
+")+s.hav()+q+(qs?qs:s.rq(s.un)),ta);s.sq(trk?'':qs);s.lnk=s.eo=s.lin"
+"kName=s.linkType=s.wd.s_objectID=s.ppu='';return code};s.tl=functio"
+"n(o,t,n){var s=this;s.lnk=s.co(o);s.linkType=t;s.linkName=n;s.t()};"
+"s.ssl=(s.wd.location.protocol.toLowerCase().indexOf('https')>=0);s."
+"d=document;s.b=s.d.body;s.n=navigator;s.u=s.n.userAgent;s.ns6=s.u.i"
+"ndexOf('Netscape6/');var apn=s.n.appName,v=s.n.appVersion,ie=v.inde"
+"xOf('MSIE '),o=s.u.indexOf('Opera '),i;if(v.indexOf('Opera')>=0||o>"
+"0)apn='Opera';s.isie=(apn=='Microsoft Internet Explorer');s.isns=(a"
+"pn=='Netscape');s.isopera=(apn=='Opera');s.ismac=(s.u.indexOf('Mac'"
+")>=0);if(o>0)s.apv=parseFloat(s.u.substring(o+6));else if(ie>0){s.a"
+"pv=parseInt(i=v.substring(ie+5));if(s.apv>3)s.apv=parseFloat(i)}els"
+"e if(s.ns6>0)s.apv=parseFloat(s.u.substring(s.ns6+10));else s.apv=p"
+"arseFloat(v);s.em=0;if(String.fromCharCode){i=escape(String.fromCha"
+"rCode(256)).toUpperCase();s.em=(i=='%C4%80'?2:(i=='%U0100'?1:0))}s."
+"sa(un);s.vl_l='visitorID,vmk,ppu,charSet,visitorNamespace,cookieDom"
+"ainPeriods,cookieLifetime,pageName,pageURL,referrer,currencyCode,pu"
+"rchaseID';s.vl_t=s.vl_l+',variableProvider,channel,server,pageType,"
+"campaign,state,zip,events,products,linkName,linkType';for(var n=1;n"
+"<51;n++)s.vl_t+=',prop'+n+',eVar'+n+',hier'+n;s.vl_g=s.vl_t+',track"
+"DownloadLinks,trackExternalLinks,trackInlineStats,linkLeaveQueryStr"
+"ing,linkDownloadFileTypes,linkExternalFilters,linkInternalFilters,l"
+"inkNames';if(pg)s.gl(s.vl_g);s.ss=ss;if(!ss){s.wds();s.ca()}}",
l=window.s_c_il,n=navigator,u=n.userAgent,v=n.appVersion,e=v.indexOf(
'MSIE '),m=u.indexOf('Netscape6/'),a,i,s;if(l)for(i=0;i<l.length;i++){
s=l[i];if(s.oun==un)return s;else if(s.fs(s.oun,un)){s.sa(un);return s
}}if(e>0){a=parseInt(i=v.substring(e+5));if(a>3)a=parseFloat(i)}
else if(m>0)a=parseFloat(u.substring(m+10));else a=parseFloat(v);if(a
>=5&&v.indexOf('Opera')<0&&u.indexOf('Opera')<0){eval(c);return new
s_c(un,pg,ss)}else s=s_c2f(c);return s(un,pg,ss)}



//::: Omniture Web Analysis 00:00:00.6250080

String.prototype.trim=function(){var spacesRegEx=/^[ \t\n]+|[ \t\n]+$/g;return this.replace(spacesRegEx,"");}
if(!window.GameCatalog)
GameCatalog={};if(!GameCatalog.WebAnalysis)
GameCatalog.WebAnalysis={};if(!GameCatalog.WebAnalysis.SiteTracking)
GameCatalog.WebAnalysis.SiteTracking={};GameCatalog.WebAnalysis.SiteTracking.GetInternalID=function()
{return Url.here.params.intID||'';}
GameCatalog.WebAnalysis.SiteTracking.Replacer=function(str)
{this.rep=function(a)
{var result=GameCatalog.WebAnalysis.SiteTracking.Replacer.symbols[a]();if(result==null||result==undefined)
return a;else
return result;}
if(str===undefined||str===null)
return'';return(str+'').replace(/(%%[^%]*%%)/g,this.rep).trim();}
GameCatalog.WebAnalysis.SiteTracking.hashCurrentSParams={};GameCatalog.WebAnalysis.SiteTracking.PreparePageParams=function(pageName,data)
{var pageData=GameCatalog.WebAnalysis.SiteTracking[pageName];if(pageData==null&&data!=null)
pageData=data;else if(pageData==null&&data==null)
return;GameCatalog.WebAnalysis.SiteTracking.ClearParams();for(p in pageData)
{if(typeof(pageData[p])=='function')
{try{s[p]=pageData[p]();}
catch(ex)
{s[p]="";}}
else
s[p]=pageData[p];GameCatalog.WebAnalysis.SiteTracking.hashCurrentSParams[p]="";}}
GameCatalog.WebAnalysis.SiteTracking.trackCustomLinkClicked=function(obj,linkName,data)
{if(obj==null||obj==undefined)
return;GameCatalog.WebAnalysis.SiteTracking.PreparePageParams("GameShellCustomLink",data);var lt=obj.href!=null?s.lt(obj.href):"";if(lt==""){s.tl(obj,'o',linkName);}}
GameCatalog.WebAnalysis.SiteTracking.submitEvent=function(pageName,data)
{GameCatalog.WebAnalysis.SiteTracking.PreparePageParams(pageName,data);s.t();}
GameCatalog.WebAnalysis.SiteTracking.ClearParams=function()
{for(p in GameCatalog.WebAnalysis.SiteTracking.hashCurrentSParams)
{delete s[p];}
GameCatalog.WebAnalysis.SiteTracking.hashCurrentSParams={};}
function GetScriptSrcQueryString()
{var src="";var pageName=GetPageName();src="pagefilename="+pageName;src+="&"+document.location.search.substr(1);return src;}
function GetPageName()
{var name=document.location.pathname.split("/")[document.location.pathname.split("/").length-1].split(".")[0];if(name)
name=name.toLowerCase();return name||"homepage";}
function getCookie(name){var index=document.cookie.indexOf(name+"=");if(index==-1)return null;index=document.cookie.indexOf("=",index)+1;var endstr=document.cookie.indexOf(";",index);if(endstr==-1)endstr=document.cookie.length;return unescape(document.cookie.substring(index,endstr));}
function setCookie(name,value,expiration){GameCatalog.WebAnalysis.SiteTracking.setCookie(name,value,expiration)}
GameCatalog.WebAnalysis.SiteTracking.setCookie=function(name,value,expiration)
{try{var strDate=new String();strDate=value.toString();while(strDate.indexOf(" ")!=-1){strDate=strDate.replace(" ","%20");}
while(strDate.indexOf(":")!=-1){strDate=strDate.replace(":","%3A");}
strDate=strDate.replace("+","%2B");strDate=strDate.replace("-","%2D");var today=new Date();var expiry=new Date(today.getTime()+expiration*24*60*60*1000);if(strDate!=null&&strDate!=""){document.cookie=name+"="+strDate+"; expires="+expiry.toGMTString();}}
catch(er){}}
function omnitureLogDownloadCover(gameCode,gameName)
{GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownloadCover(gameCode,gameName);}
GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownloadCover=function(gameCode,gameName)
{var expirationPeriod=180
var today=new Date();try{GameCatalog.WebAnalysis.SiteTracking.setCookie(gameCode,today,expirationPeriod);s.linkType="d";s.events="event1";s.eVar11=GameCatalog.WebAnalysis.SiteTracking.DownloadOmnitureFormattedDate();s.tl(this,"d",gameName);}
catch(er){}}
function DownloadOmnitureFormattedDate()
{return GameCatalog.WebAnalysis.SiteTracking.DownloadOmnitureFormattedDate();}
GameCatalog.WebAnalysis.SiteTracking.DownloadOmnitureFormattedDate=function()
{var date=new Date();hours=date.getUTCHours();minutes=date.getUTCMinutes();seconds=date.getUTCSeconds();var suffix="AM";if(hours>=12){suffix="PM";hours=hours-12;}
if(hours==0){hours=12;}
if(minutes<10)
minutes="0"+minutes
if(seconds<10)
seconds="0"+seconds
return(date.getUTCMonth()+1)+"/"+date.getUTCDate()+"/"+date.getUTCFullYear()+" "+hours+":"+minutes+":"+seconds+" "+suffix;}
function logDownload(gameCode,omnitureChannel){GameCatalog.WebAnalysis.SiteTracking.logDownload(gameCode,omnitureChannel);}
GameCatalog.WebAnalysis.SiteTracking.logDownload=function(gameCode,omnitureChannel)
{s.linkName=gameCode;s.products=";"+gameCode;GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownloadCover(gameCode,gameCode);}
function omnitureLogDownload(gameCode,omnitureChannel,gameReportName){return GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownload(gameCode,omnitureChannel,gameReportName);}
GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownload=function(gameCode,omnitureChannel,gameReportName)
{try{s.linkName=gameReportName;s.products=";"+gameReportName;GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownloadCover(gameCode,gameReportName);}
catch(er){}
return true;}
function omnitureLogDownload_Real(gameCode,omnitureChannel,gameName,catName,dlDateTime){return GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownload_Real(gameCode,omnitureChannel,gameName,catName,dlDateTime);}
GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownload_Real=function(gameCode,omnitureChannel,gameName,catName,dlDateTime)
{try{s.linkName=gameName;s.products=catName+";"+gameName;GameCatalog.WebAnalysis.SiteTracking.omnitureLogDownloadCover(gameCode,gameName);}
catch(e){}
return true;}
function getTimeBucket(oDate)
{try{var today=new Date();var downloadDate=new Date(oDate);var timeGap
timeGap=((today.getTime()-downloadDate.getTime())/(60*60*1000))
var timeBucket
if(downloadDate.getTime()==0||isNaN(timeGap)){timeBucket="Unknown";}else if(timeGap>=0&&timeGap<1){timeBucket="0-1 Hours";}else if(timeGap>=1&&timeGap<2){timeBucket="1-2 Hours";}else if(timeGap>=2&&timeGap<4){timeBucket="2-4 Hours";}else if(timeGap>=4&&timeGap<6){timeBucket="4-6 Hours";}else if(timeGap>=6&&timeGap<12){timeBucket="6-12 Hours";}else if(timeGap>=12&&timeGap<24){timeBucket="1 Day";}else if(timeGap>=1*24&&timeGap<2*24){timeBucket="2 Days";}else if(timeGap>=2*24&&timeGap<3*24){timeBucket="3 Days";}else if(timeGap>=3*24&&timeGap<4*24){timeBucket="4 Days";}else if(timeGap>=4*24&&timeGap<5*24){timeBucket="5 Days";}else if(timeGap>=5*24&&timeGap<6*24){timeBucket="6 Days";}else if(timeGap>=6*24&&timeGap<7*24){timeBucket="7 Days";}else if(timeGap>=1*24*7&&timeGap<2*24*7){timeBucket="1-2 Weeks";}else if(timeGap>=2*24*7&&timeGap<4*24*7){timeBucket="2-4 Weeks";}else if(timeGap>=1*24*7*4&&timeGap<2*24*7*4){timeBucket="1-2 Months";}else{timeBucket=" > 2 Months";}
return timeBucket;}
catch(er){return"Unknown";}}
//::: Omniture Web Analysis 00:00:00.6406332
GameCatalog.Mediator = {

 _pageStateChanged  : function(newStateData)
                         {
                         
//                            var params = {
//                                    pageName            : newStateData,
//                                    loginStatus         : UA.User.prototype.IsLoggedOn(),
//                                    userStatus          : FishhookCentral.InitResults.IsSubscribed,
//                                    oberonUserId        : FishhookCentral.InitResults.userGuid,
//                                    username            : FishhookCentral.InitResults.Nickname,
//                                    hasFreeTrial        : FishhookCentral.InitResults.HasFreeTrial
//                            };

                               GameCatalog.WebAnalysis.SiteTracking.submitEvent(newStateData);
                         }
                         
}

Event.observe(window, "load", function(){GameCatalog.Mediator._pageStateChanged(GetPageName())}, false);



// Report downloads using WebAnalysis 
function GameCenterOmnitureLogDownload(gameCode, gameName,catName) {
	return omnitureLogDownload_Real(gameCode, null, gameName, catName, null);
}

//::: DynamicGizmos
var O = window.O || {};
O.Model = O.Model || {};

