// JavaScript Document
	
// Detect the game pages.
var href = "" +
document.location.href;
var is_games_page = href.replace(/^http:\/\/[^\/]*/,
"").indexOf("/game/") == 0;

// Display the game promo ad.
if ( is_games_page )
 { 	document.write("<a href='/game/new.htm'>");
 	document.write("<img src='/images/games/new/hooked_media_300x250_games.jpg' alt='Hooked Media Games' /></a>");
 
 	document.write("<div id='promo_wrap'>");
 
 	document.write("<div id='promo_header'><h1 class='promo_ebhdr'> Encyclop&aelig;dia Britannica</h1></div>"); // div promo_header
	
	document.write("<div id='promo_content'><h2 class='promo_eb'>Online Games:</h2>");
	
	/*Game 1 Image - Dream Day First Home*/
	document.write("<table width='280' border='0' id='gamestable'>");
	document.write("<tr><td><a href='http://eb.adbureau.net/adclick/CID=00000c210000000000000000' target='_blank'>");
	document.write("<img src='/images/games/ebpromo/promo_btn_dreamdayhome.gif' alt='Dream Day First Home' class='imgnobrdr' /></a></td>");
	
	/*Game 1 Text - Dream Day First Home*/
	document.write("<td class='tablepad'><a href='http://eb.adbureau.net/adclick/CID=00000c210000000000000000' target='_blank' class='gametitle'>Dream Day First Home</a><br />");
	document.write("Help newlyweds select and<br />decorate their very first home!</td></tr>");
	
	/*Game 2 Image - Deep Blue Sea*/
	document.write("<tr><td><a href='http://eb.adbureau.net/adclick/CID=00000c220000000000000000' target='_blank' class='gametitle'>");
	document.write("<img src='/images/games/ebpromo/promo_btn_deepbluesea.gif' alt='Deep Blue Sea' width='83' height='48' class='imgnobrdr' /></a></td>");
	
	/*Game 2 Text - Deep Blue Sea*/
	document.write("<td class='tablepad'><a href='http://eb.adbureau.net/adclick/CID=00000c220000000000000000' target='_blank' class='gametitle'>Deep Blue Sea</a><br />Dive deep into a mysterious<br />");
	document.write("underwater world for treasure!</td></tr>");
	
	/*Game 3 Image - Poker Superstars III*/
	document.write("<tr><td><a href='http://eb.adbureau.net/adclick/CID=00000c230000000000000000' target='_blank'><img src='/images/games/ebpromo/promo_btn_pokersuperstars3.gif' alt='Poker Superstars III'");
	document.write("width='83' height='48'  class='imgnobrdr' /></a></td>");
	
	/*Game 3 Text - Poker Superstars III*/
	document.write("<td class='tablepad'><a href='http://eb.adbureau.net/adclick/CID=00000c230000000000000000' target='_blank' class='gametitle'>Poker Superstars III</a><br />Get psyched for the next poker ");
	document.write("showdown with all-new superstars!</td></tr></table>");
	
	/*Text - Many More Games...*/	
	document.write("<a href='http://eb.adbureau.net/adclick/CID=00000c240000000000000000' target='_blank' class='redgameslink'>Many More Games...</a></div>"); // div promo_content
	
	document.write("</div>");// div promo_wrap
 }; // if ( is_games_page )
