$(document).ready(function()
{
  // Home - Selection de la navigation "fullscreen"
  $("a#view_fullscreen").click(function(event)
  {
    window.open('portfolio.php','','width='+screen.availWidth+',height='+screen.availHeight+',fullscreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=yes,copyhistory=1,top=0,left=0');
    
    //window.open('portfolio.php','','fullscreen=yes');
    event.preventDefault();
  });
  
  // Navigation dans une categorie
  $(document).keydown(function (e)
  {
    if(e.keyCode == 37 && $("#photo_previous").attr("href").length > 0)
    {
       window.location = $("#photo_previous").attr("href");
    }
    if(e.keyCode == 39 && $("#photo_next").attr("href").length > 0)
    {
       window.location = $("#photo_next").attr("href");
    }
  });
});

