$(document).ready(function(){

  //$('#mybookmark').jFav();

  //check for fontsize cookie and apply if it exists
  if($.cookie("f4lFontSize") != '' && $.cookie("f4lFontSize")) {
    setFontSize($.cookie("f4lFontSize"));
  }

  $('a.gamelink').click(function(){
    window.open($(this).attr('href'),'gamezone','width=620,height=420');
    return false;
  }).keypress(function(){
    window.open($(this).attr('href'),'gamezone','width=620,height=420');
    return false;
  });



})


function setFontSize(nSize) {

  $('body').css('font-size', nSize + '%');
  //set Cookie
  $.cookie("f4lFontSize", nSize, { expires: 7 });
}



