free2playgamebox=new (function() {
	/** @copyright www.gamona.de 2009 **/
	this.init=function(node,config) {
		if (!config) config={};
		this.node=node;
		this.loadConfig(config);
		this.loadSources();
		this.loaded=true;
		this.start();
	}; /* init() */
	this.loadConfig=function(config){
		this.config={};
		this.tab=1;
		this.config.tabs=2; 
		this.page=1;
		this.config.pages=5; 
		this.config.staticmode=true;
		if (typeof config.staticmode !== "undefined") this.config.staticmode=config.staticmode;
		
		this.config.retrydelay=500; 
		if (config.retrydelay) this.config.retrydelay=config.retrydelay;
		
		if (config.tabs) this.config.tabs=config.tabs;
		if (config.pages) this.config.pages=config.pages;
		
		this.config.hostdata="www.gamona.de"; 
		this.config.hoststatic="www.free2play.de"; 
		
		if (config.hostdata) this.config.hostdata=config.hostdata;
		if (config.hoststatic) this.config.hoststatic=config.hoststatic;
		
		this.config.tab1Url="http://" + this.config.hostdata + "/gameslider?format=html&limit=" + this.config.pages + "&type=redaktion";
		this.config.tab2Url="http://" + this.config.hostdata + "/gameslider?format=html&limit=5&type=top5";
		this.config.cssUrl="http://" + this.config.hoststatic + "/external/gamebox/default.css";
		this.config.jqueryUrl="http://" + this.config.hoststatic + "/external/jquery.min.js";	
		
		if (config.tab1Url) this.config.tab1Url=config.tab1Url;
		if (config.tab2Url) this.config.tab2Url=config.tab2Url;
		if (config.cssUrl) this.config.cssUrl=config.cssUrl;
		if (config.jqueryUrl) this.config.jqueryUrl=config.jqueryUrl;
	}; /* loadConfig() */
	this.start=function(){
		if (typeof jQuery != 'undefined') this.render();
		else window.setTimeout(this.startCallback(), this.config.retrydelay);
	}; /* start() */
	this.startCallback=function(){
		var _this=this;
		return function(){
			_this.start.apply(_this);
		} ;
	}; /* startCallback() */
	this.render=function(){
		this.nodes={};
		this.nodes["gamebox"]=jQuery('<div class="f2p-gamebox" style="display: none;"></div>');
		this.nodes["head"]=jQuery('<div class="f2p-head"><a class="f2p-head-logo" href="http://www.free2play.de" target="_blank"><span>free2play</span></a></div>');
		this.nodes["index"]=jQuery('<div class="f2p-index"></div>');
		this.nodes["content"]=jQuery('<div class="f2p-content"></div>');
		this.nodes["foot"]=jQuery('<div class="f2p-foot"><a class="f2p-foot-slogan" href="http://www.free2play.de" target="_blank"><span>mehr auf free2play.de</span></a></div>');
		this.nodes["tab-1-i"]=jQuery('<div class="f2p-tab" id="f2p-tab-1-i">Tipps der Redaktion</div>');
		this.nodes["tab-2-i"]=jQuery('<div class="f2p-tab" id="f2p-tab-2-i">Top 5</div>');
		this.nodes["tab-1-c"]=jQuery('<div class="f2p-tab" id="f2p-tab-1-c"></div>');
		this.nodes["tab-2-c"]=jQuery('<div class="f2p-tab" id="f2p-tab-2-c"></div>');
		
		this.nodes["gamebox"].append(this.nodes["head"]);
		this.nodes["gamebox"].append(this.nodes["index"]);
			this.nodes["index"].append(this.nodes["tab-1-i"]);
			this.nodes["index"].append(this.nodes["tab-2-i"]);
		this.nodes["gamebox"].append(this.nodes["content"]);
			this.nodes["content"].append(this.nodes["tab-1-c"]);
			this.nodes["content"].append(this.nodes["tab-2-c"]);
		this.nodes["gamebox"].append(this.nodes["foot"]);
		
		this.node.innerHTML="";
		this.nodes["gamebox"].appendTo(this.node);
		
		if ( ! this.config.staticmode ) {
			/* everything on one domain? never */ 
				this.nodes["tab-1-c"].load(this.config.tab1Url,null,this.addPagingCallback());
				this.nodes["tab-2-c"].load(this.config.tab2Url,null);
		} else {
			/* cross side scripting save */
			jQuery(this.getPage1()).appendTo(this.nodes["tab-1-c"]);
			jQuery(this.getPage2()).appendTo(this.nodes["tab-2-c"]);
			this.addPaging();
		}
		
		this.nodes["tab-1-i"].click(this.selectTabCallback(1));
		this.nodes["tab-2-i"].click(this.selectTabCallback(2));
		
		this.selectTab(1);
	}; /* render() */
	this.selectTab=function(index){
		this.nodes["gamebox"].removeClass("f2p-tab-selected-" + this.tab);
		this.tab=index;
		if (this.tab>this.config.tabs) this.tab=1;
		if (this.tab<1) this.tab=this.config.tabs;		
		this.nodes["gamebox"].addClass("f2p-tab-selected-" + this.tab);
	}; /* selectTab() */
	this.selectTabCallback=function(index){
		var _this=this;
		var _index=index;
		return function(){
			_this.selectTab.apply(_this,[_index]);
		};
	}; /* selectTabCallback() */
	this.addPaging=function(){
		this.nodes["f2p-paging"]=jQuery('<div class="f2p-paging"></div>');
		this.nodes["f2p-prev"]=jQuery('<div class="f2p-prev"><span>prev</span></div>');
		this.nodes["f2p-next"]=jQuery('<div class="f2p-next"><span>next</span></div>');
		this.nodes["f2p-paging"].append(this.nodes["f2p-prev"]);
		this.nodes["f2p-paging"].append(this.nodes["f2p-next"]);
		this.nodes["tab-1-c"].append(this.nodes["f2p-paging"]);
		this.nodes["f2p-prev"].click(this.pageNavigationCallback(-1));
		this.nodes["f2p-next"].click(this.pageNavigationCallback(+1));
		this.nodes["f2p-prev"]
			.mouseover(function(){jQuery(this).addClass("hover");})
			.mousedown(function(){jQuery(this).addClass("active");})
			.mouseup(function(){jQuery(this).removeClass("active");})
			.mouseout(function(){jQuery(this).removeClass("hover").removeClass("active");});
		this.nodes["f2p-next"]
			.mouseover(function(){jQuery(this).addClass("hover");})
			.mousedown(function(){jQuery(this).addClass("active");})
			.mouseup(function(){jQuery(this).removeClass("active");})
			.mouseout(function(){jQuery(this).removeClass("hover").removeClass("active");});
		this.gameNodes=jQuery(".f2p-game",this.nodes["tab-1-c"]);
		this.pages=this.gameNodes.size(); 
		this.newpage=Math.round(Math.random()*this.pages); 
		this.pageNavigation(this.newpage-this.page);
	}; /* addPaging() */
	this.addPagingCallback=function(){
		var _this=this;
		return function(){
			_this.addPaging.apply(_this);
		} ;
	}; /* addPagingCallback() */	
	this.pageNavigation=function(offset){
		this.page+=offset; 
		if (this.page>this.pages) this.page=1;
		if (this.page<1) this.page=this.pages;
		for (var p=1; p<= this.pages; p++) {
			if (p==this.page)
				jQuery("#f2p-tab-1-c .f2p-game-" + p).addClass("f2p-game-current");
			else
				jQuery("#f2p-tab-1-c .f2p-game-" + p).removeClass("f2p-game-current");
		}
	}; /* pageNavigation() */
	this.pageNavigationCallback=function(offset){
		var _this=this;
		var _offset=offset;
		return function(){
			_this.pageNavigation.apply(_this,[_offset]);
		};
	}; /* pageNavigationCallback() */	
	this.loadSources=function(){
			this.loaded=false;
			this.cssloaded=false;

		if (typeof jQuery == 'undefined') {
			var script=document.createElement('script');
			script.setAttribute("src", this.config.jqueryUrl);
			script.setAttribute("type","text/javascript");
			script.setAttribute("charset", "utf-8");
			document.getElementsByTagName("head")[0].appendChild(script);
		};
		if (!this.cssloaded){
			var style=document.createElement("link");
			style.setAttribute("rel", "stylesheet");
			style.setAttribute("type", "text/css");
			style.setAttribute("charset", "utf-8");
			style.setAttribute("href", this.config.cssUrl)
			document.getElementsByTagName("head")[0].appendChild(style);		
			this.cssloaded=true;
		};
	}; /* loadSources() */	
	this.getPage1=function(){
		return '<div class="f2p-game f2p-game-1"><div class="f2p-game-pos"><span>1</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/bet-and-race/game" target="_blank">Bet and Race</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/bet-and-race/game" target="_blank"><img src="http://gamona-images.de/202831/crop,475,180,0,0/scale,278,105,outside/4db8f7de769868057c3680dac296ee6c.jpg" border="0" title="Bet and Race"></a></div><div class="f2p-game-descr">Rennspiel, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="https://www.betandrace.com/registration/registration.aspx?key=QPIovqA%2bZLWst5AozqxNbUNZGB52cg5jEoDze5r7bzcy6BaPvnzCEw%3d%3d" target="_blank"></a></div></div><div class="f2p-game f2p-game-2"><div class="f2p-game-pos"><span>2</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/case-white/game" target="_blank">Case White</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/case-white/game" target="_blank"><img src="http://gamona-images.de/214196/crop,475,180,0,0/scale,278,105,outside/169765129d5b42f40462975b74df0948.jpg" border="0" title="Case White"></a></div><div class="f2p-game-descr">Rundenbasierte Strategie, History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/casewhite/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-3"><div class="f2p-game-pos"><span>3</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/castlefight/game" target="_blank">Castlefight</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/castlefight/game" target="_blank"><img src="http://gamona-images.de/211315/crop,475,180,0,0/scale,278,105,outside/828642825be428f7889f085bc5792087.jpg" border="0" title="Castlefight"></a></div><div class="f2p-game-descr">Echtzeitstrategie, Mittelalter</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/castlefight2/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-4"><div class="f2p-game-pos"><span>4</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/dark-orbit/game" target="_blank">Dark Orbit</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/dark-orbit/game" target="_blank"><img src="http://gamona-images.de/202830/crop,475,180,0,0/scale,278,105,outside/5c604f02c02d56b751dafc75b92d6c2c.jpg" border="0" title="Dark Orbit"></a></div><div class="f2p-game-descr">Action, Strategie, Sci-Fi/Weltraum</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://darkorbit.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-5"><div class="f2p-game-pos"><span>5</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/deepolis/game" target="_blank">Deepolis</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/deepolis/game" target="_blank"><img src="http://gamona-images.de/202833/crop,475,180,0,0/scale,278,105,outside/49fb4c0222780560ca687bbb6df4e8ee.jpg" border="0" title="Deepolis"></a></div><div class="f2p-game-descr">Action, Strategie, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://deepolis.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-6"><div class="f2p-game-pos"><span>6</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/desert-blitz/game" target="_blank">Desert Blitz</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/desert-blitz/game" target="_blank"><img src="http://gamona-images.de/211306/crop,475,180,0,0/scale,278,105,outside/a49d0fc1e43ce3f27859b91f424bd6f2.jpg" border="0" title="Desert Blitz"></a></div><div class="f2p-game-descr">Strategie, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/desertblitz/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-7"><div class="f2p-game-pos"><span>7</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/dragonica/game" target="_blank">Dragonica</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/dragonica/game" target="_blank"><img src="http://gamona-images.de/202848/crop,475,180,0,0/scale,278,105,outside/ec32ed7cd20c7f4730d91dbd24371455.jpg" border="0" title="Dragonica"></a></div><div class="f2p-game-descr">MMORPG, Fantasy/Anime</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://statistics.gpotato.eu/Tracking/BannerForReg.aspx?CD=0201380201&RTN=http://de.dragonica.gpotato.eu/ad/" target="_blank"></a></div></div><div class="f2p-game f2p-game-8"><div class="f2p-game-pos"><span>8</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/fantasy-tennis/game" target="_blank">Fantasy Tennis</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/fantasy-tennis/game" target="_blank"><img src="http://gamona-images.de/203815/crop,475,180,0,0/scale,278,105,outside/77a9e124e05aa43a3afa88a4d4f6c2ec.jpg" border="0" title="Fantasy Tennis"></a></div><div class="f2p-game-descr">MMORPG, Sport, Fantasy/Sport</div><div class="f2p-game-lang"></div><div class="f2p-game-play"><a href="http://fantasytennis.de.alaplaya.net/landingpage/GamonaFT" target="_blank"></a></div></div><div class="f2p-game f2p-game-9"><div class="f2p-game-pos"><span>9</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/fantasy-tennis-season-2/game" target="_blank">Fantasy Tennis Season 2</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/fantasy-tennis-season-2/game" target="_blank"><img src="http://gamona-images.de/202160/crop,475,180,0,0/scale,278,105,outside/d077c9a19010d4c9315240f0e53cfc6d.jpg" border="0" title="Fantasy Tennis Season 2"></a></div><div class="f2p-game-descr">MMORPG, Sport, Fantasy/Sport</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://fantasytennis.de.alaplaya.net/landingpage/GamonaFT" target="_blank"></a></div></div><div class="f2p-game f2p-game-10"><div class="f2p-game-pos"><span>10</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/fiesta-online/game" target="_blank">Fiesta Online</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/fiesta-online/game" target="_blank"><img src="http://gamona-images.de/202931/crop,475,180,0,0/scale,278,105,outside/315b2486aaff205cd771cc8725567aac.jpg" border="0" title="Fiesta Online"></a></div><div class="f2p-game-descr">MMORPG</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://fo.gamigogames.de/gamona" target="_blank"></a></div></div><div class="f2p-game f2p-game-11"><div class="f2p-game-pos"><span>11</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/florensia/game" target="_blank">Florensia</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/florensia/game" target="_blank"><img src="http://gamona-images.de/202159/crop,475,180,0,0/scale,278,105,outside/03c85af56e4e8790c45f44264c44599a.jpg" border="0" title="Florensia"></a></div><div class="f2p-game-descr">MMORPG, Anime</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://www.florensia-online.com/pages/landingpage-gamonarev" target="_blank"></a></div></div><div class="f2p-game f2p-game-12"><div class="f2p-game-pos"><span>12</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/gladiatoren-2/game" target="_blank">Gladiatoren 2</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/gladiatoren-2/game" target="_blank"><img src="http://gamona-images.de/202873/crop,475,180,0,0/scale,278,105,outside/4fddc656a4faa482a1dd113fcc032ef6.jpg" border="0" title="Gladiatoren 2"></a></div><div class="f2p-game-descr">Action, History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://gladiatoren2.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-13"><div class="f2p-game-pos"><span>13</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/kiez-king/game" target="_blank">Kiez King</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/kiez-king/game" target="_blank"><img src="http://gamona-images.de/214209/crop,475,180,0,0/scale,278,105,outside/fa9f6534961ff59f7de83c68353967f3.jpg" border="0" title="Kiez King"></a></div><div class="f2p-game-descr">Aufbau, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/kiezking/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-14"><div class="f2p-game-pos"><span>14</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/last-chaos/game" target="_blank">Last Chaos</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/last-chaos/game" target="_blank"><img src="http://gamona-images.de/216817/crop,475,180,0,0/scale,278,105,outside/a9dc5c13cacfcd0cd8a2aee6d5dfc886.jpg" border="0" title="Last Chaos"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://lc.gamigogames.de/gamona" target="_blank"></a></div></div><div class="f2p-game f2p-game-15"><div class="f2p-game-pos"><span>15</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/level-r/game" target="_blank">Level R</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/level-r/game" target="_blank"><img src="http://gamona-images.de/203143/crop,475,180,0,0/scale,278,105,outside/b002ff8dd22cd44c00530b926c38f226.jpg" border="0" title="Level R"></a></div><div class="f2p-game-descr">MMORPG, Rennspiel, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://lr.gamigogames.de/gamona" target="_blank"></a></div></div><div class="f2p-game f2p-game-16"><div class="f2p-game-pos"><span>16</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/mission-cobra/game" target="_blank">Mission Cobra</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/mission-cobra/game" target="_blank"><img src="http://gamona-images.de/211305/crop,475,180,0,0/scale,278,105,outside/39a741d99e23a301ae1a65502bbd037b.jpg" border="0" title="Mission Cobra"></a></div><div class="f2p-game-descr">Action, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/mission-cobra/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-17"><div class="f2p-game-pos"><span>17</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/neo-steam/game" target="_blank">Neo Steam</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/neo-steam/game" target="_blank"><img src="http://gamona-images.de/211482/crop,475,180,0,0/scale,278,105,outside/1a09f174720aae233af3d34fc4295ed2.jpg" border="0" title="Neo Steam"></a></div><div class="f2p-game-descr">MMORPG</div><div class="f2p-game-lang"></div><div class="f2p-game-play"><a href="http://ns.gamigogames.de/gamona" target="_blank"></a></div></div><div class="f2p-game f2p-game-18"><div class="f2p-game-pos"><span>18</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/pirates-1709/game" target="_blank">Pirates 1709</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/pirates-1709/game" target="_blank"><img src="http://gamona-images.de/214241/crop,475,180,0,0/scale,278,105,outside/5810742c339f494d7a4a975129183a09.jpg" border="0" title="Pirates 1709"></a></div><div class="f2p-game-descr">Aufbau, Strategie, History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/pirates1709/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-19"><div class="f2p-game-pos"><span>19</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/rangersland/game" target="_blank">Rangersland</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/rangersland/game" target="_blank"><img src="http://gamona-images.de/214239/crop,475,180,0,0/scale,278,105,outside/2053f4ebfa82348b857c0aa0ef43c438.jpg" border="0" title="Rangersland"></a></div><div class="f2p-game-descr">MMORPG, Strategie, History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.landing.playnik.com/rangersland/2165" target="_blank"></a></div></div><div class="f2p-game f2p-game-20"><div class="f2p-game-pos"><span>20</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/rappelz/game" target="_blank">Rappelz</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/rappelz/game" target="_blank"><img src="http://gamona-images.de/216342/crop,475,180,0,0/scale,278,105,outside/f58c0b2403726616fa7b1fae53d51027.jpg" border="0" title="Rappelz"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://statistics.gpotato.eu/Tracking/BannerForReg.aspx?CD=0201380101&RTN=http://de.rappelz.gpotato.eu/ad/" target="_blank"></a></div></div><div class="f2p-game f2p-game-21"><div class="f2p-game-pos"><span>21</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/runes-of-magic/game" target="_blank">Runes of Magic</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/runes-of-magic/game" target="_blank"><img src="http://gamona-images.de/202158/crop,475,180,0,0/scale,278,105,outside/af413ba4ab8c4b6c0a48f1c1176a2b88.jpg" border="0" title="Runes of Magic"></a></div><div class="f2p-game-descr">MMORPG, Rollenspiel, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://affiliate.account.yusho.de/free2play.de/ROM/de/" target="_blank"></a></div></div><div class="f2p-game f2p-game-22"><div class="f2p-game-pos"><span>22</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/runes-of-magic-the-elven-prophecy/game" target="_blank">Runes of Magic - The Elven Prophecy</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/runes-of-magic-the-elven-prophecy/game" target="_blank"><img src="http://gamona-images.de/213039/crop,475,180,0,0/scale,278,105,outside/45288914e54317472af5381db9597fb1.jpg" border="0" title="Runes of Magic - The Elven Prophecy"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://affiliate.account.yusho.de/free2play.de/ROM/de/" target="_blank"></a></div></div><div class="f2p-game f2p-game-23"><div class="f2p-game-pos"><span>23</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/s4-league/game" target="_blank">S4 League</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/s4-league/game" target="_blank"><img src="http://gamona-images.de/202154/crop,475,180,0,0/scale,278,105,outside/b71be358cdcd75928b0d6cbc7b16b147.jpg" border="0" title="S4 League"></a></div><div class="f2p-game-descr">Action, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://s4.de.alaplaya.net/landingpage/GamonaS4" target="_blank"></a></div></div><div class="f2p-game f2p-game-24"><div class="f2p-game-pos"><span>24</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/seafight/game" target="_blank">Seafight</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/seafight/game" target="_blank"><img src="http://gamona-images.de/209719/crop,475,180,0,0/scale,278,105,outside/4a96b3c555c5b6fa1785318cd0a44e12.jpg" border="0" title="Seafight"></a></div><div class="f2p-game-descr">Mittelalter</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://seafight.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-25"><div class="f2p-game-pos"><span>25</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/shaiya/game" target="_blank">Shaiya</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/shaiya/game" target="_blank"><img src="http://gamona-images.de/202148/crop,475,180,0,0/scale,278,105,outside/e762eae435bf7165ef8b21f0c0360d23.jpg" border="0" title="Shaiya"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://de.shaiya.aeriagames.com/playnow?utm_source=gamona&utm_medium=banner&utm_campaign=gamona" target="_blank"></a></div></div><div class="f2p-game f2p-game-26"><div class="f2p-game-pos"><span>26</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/shakes-fidget-the-game/game" target="_blank">Shakes & Fidget - The Game</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/shakes-fidget-the-game/game" target="_blank"><img src="http://gamona-images.de/216818/crop,475,180,0,0/scale,278,105,outside/44d74e4029f9689af370fce2a3245af1.jpg" border="0" title="Shakes & Fidget - The Game"></a></div><div class="f2p-game-descr">MMORPG, Rollenspiel, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://gamona.sfgame.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-27"><div class="f2p-game-pos"><span>27</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/the-pimps/game" target="_blank">The Pimps</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/the-pimps/game" target="_blank"><img src="http://gamona-images.de/210526/crop,475,180,0,0/scale,278,105,outside/47d055df6d92a64abb29b06be6b1c211.jpg" border="0" title="The Pimps"></a></div><div class="f2p-game-descr">Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://the-pimps.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-28"><div class="f2p-game-pos"><span>28</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/the-west/game" target="_blank">The West</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/the-west/game" target="_blank"><img src="http://gamona-images.de/205774/crop,475,180,0,0/scale,278,105,outside/f05c6f02a3d147ad620624408781af9c.jpg" border="0" title="The West"></a></div><div class="f2p-game-descr">History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://clix.superclix.de/cgi-bin/tclix.cgi?id=webguidez&pp=13720&linknr=20943" target="_blank"></a></div></div><div class="f2p-game f2p-game-29"><div class="f2p-game-pos"><span>29</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/the-mafia/game" target="_blank">The-Mafia</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/the-mafia/game" target="_blank"><img src="http://gamona-images.de/210591/crop,475,180,0,0/scale,278,105,outside/eef1a0dcee858e5024daeebf3be383fe.jpg" border="0" title="The-Mafia"></a></div><div class="f2p-game-descr">Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://the-mafia.free2play.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-30"><div class="f2p-game-pos"><span>30</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/travian/game" target="_blank">Travian</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/travian/game" target="_blank"><img src="http://gamona-images.de/202829/crop,475,180,0,0/scale,278,105,outside/b0586d5bc73b8eeff7cc70f93c4fa5ca.jpg" border="0" title="Travian"></a></div><div class="f2p-game-descr">History</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://clix.superclix.de/cgi-bin/tclix.cgi?id=webguidez&pp=13619&linknr=19778" target="_blank"></a></div></div>';
	}; /* getPage1() */
	this.getPage2=function(){
		return '<div class="f2p-game f2p-game-1"><div class="f2p-game-pos"><span>1</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/emporea/game" target="_blank">Emporea</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/emporea/game" target="_blank" ><img src="http://gamona-images.de/204139/scale,44,33,outside/755923f73ccbbba8c04729238e563e0d.jpg" border="0" title="Emporea"></a></div><div class="f2p-game-descr">MMORPG, Strategie, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://www.emporea.de" target="_blank"></a></div></div><div class="f2p-game f2p-game-2"><div class="f2p-game-pos"><span>2</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/pizza-connection/game" target="_blank">Pizza Connection</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/pizza-connection/game" target="_blank" ><img src="http://gamona-images.de/227950/scale,44,33,outside/17a90c0baaa8244349cd505d7972bbd4.jpg" border="0" title="Pizza Connection"></a></div><div class="f2p-game-descr">Wirtschaftssimulation, Gegenwart</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://pizzaconnection.sevengames.de/" target="_blank"></a></div></div><div class="f2p-game f2p-game-3"><div class="f2p-game-pos"><span>3</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/rappelz/game" target="_blank">Rappelz</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/rappelz/game" target="_blank" ><img src="http://gamona-images.de/203353/scale,44,33,outside/87a9bc3a068a495e1c28ae23f129edf8.jpg" border="0" title="Rappelz"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/de.png"  title="Deutsch" /></div><div class="f2p-game-play"><a href="http://statistics.gpotato.eu/Tracking/BannerForReg.aspx?CD=0201380101&RTN=http://de.rappelz.gpotato.eu/ad/" target="_blank"></a></div></div><div class="f2p-game f2p-game-4"><div class="f2p-game-pos"><span>4</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/allods-online/game" target="_blank">Allods Online</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/allods-online/game" target="_blank" ><img src="http://gamona-images.de/209201/scale,44,33,outside/852722fde9a6352c3ed45a313fad7972.jpg" border="0" title="Allods Online"></a></div><div class="f2p-game-descr">MMORPG, Rollenspiel</div><div class="f2p-game-lang"></div><div class="f2p-game-play"><a href="http://de.allods.gpotato.eu" target="_blank"></a></div></div><div class="f2p-game f2p-game-5"><div class="f2p-game-pos"><span>5</span></div><div class="f2p-game-title"><a href="http://www.free2play.de/maplestory/game" target="_blank">MapleStory</a></div><div class="f2p-game-thumb"><a href="http://www.free2play.de/maplestory/game" target="_blank" ><img src="http://gamona-images.de/203345/scale,44,33,outside/87130cfbabdc9ce401a50d969729f751.jpg" border="0" title="MapleStory"></a></div><div class="f2p-game-descr">MMORPG, Fantasy</div><div class="f2p-game-lang"><img src="http://www.free2play.de/images/gb.png"  title="Englisch" /></div><div class="f2p-game-play"><a href="http://de.maplestory.nexoneu.com/Maple.aspx?PART=/Main" target="_blank"></a></div></div>';
	}; /* getPage2() */
})();
