$(document).ready(function(){
	$(".game-row a.popup").click(function(){
		var url = $(this).attr('href');
		
		if (gamePopup = window.open(url, 'gamePopup', 'width=790,height=690,scrollbars=auto,toolbars=0')) {
			gamePopup.focus();
			return false;
		}
	});
	
	$(".lightbox,.lightBox").lightBox();
});
