/**************************************************
  Coppermine 1.5.x Plugin - keyboard_navigation
  *************************************************
  Copyright (c) 2009-2010 eenemeenemuu
  *************************************************
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.
  ********************************************
  $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/branches/cpg1.5.x/plugins/keyboard_navigation/keydown.js $
  $Revision: 7630 $
  $LastChangedBy: eenemeenemuu $
  $Date: 2010-06-04 08:05:15 +0200 (Fr, 04 Jun 2010) $
  **************************************************/

var sthhasfocus;
$(document).ready(function() {
    $('.textinput').focus(function () {sthhasfocus = true;}).blur(function () {sthhasfocus = false;});
    $('select').focus(function () {sthhasfocus = true;}).blur(function () {sthhasfocus = false;});
    $(document).keydown(function(e) {
        if (!e) {
            e = window.event;
        }
        if (e.which) {
            kcode = e.which;
        } else if (e.keyCode) {
            kcode = e.keyCode;
        }
        if (sthhasfocus != true && $("#jquery-lightbox").length != 1) {
            if(kcode == 37 && $('#prev').attr('title') != '') {
                window.location = $('.navmenu_pic img[src*=prev]').parent().attr('href');
            }
            if(kcode == 39 && $('#next').attr('title') != '') {
                window.location = $('.navmenu_pic img[src*=next]').parent().attr('href');
            }
            
        }
    });
});
