/*****************************
*	Copyright Potato Die 2011
*	All rights reserved
******************************/
$(function() {
	document.onkeydown = handleArrowKeys;
});

function handleArrowKeys(evt) 
{
    evt = (evt) ? evt : ((window.event) ? event : null);
    if (evt) 
    {
    	// Zoek uit of we op de portfolio-pagina zitten: is er een div#werknav?
    	var t = document.getElementById ( 'nav' );
    	if ( !t ) return;
    	
    	var links = t.getElementsByTagName ( 'a' );

		var thumbs = $("#sidebar.thumbs a");
		var thumbnr = null;
		
		// alert (evt.keyCode)
    	switch (evt.keyCode) 
        {
            case 40:
            	thumbnr = huidige + 4;
                break;    
            case 37:
            	thumbnr = huidige - 1;
                break;    
            case 38:
            	thumbnr = huidige - 4;
                break;    
            case 39:
            	thumbnr = huidige + 1;
                break;    
         }
         if ( thumbnr !== null )
         {
         	if ( thumbnr < 1 ) thumbnr = totaal + thumbnr;
         	if ( thumbnr > totaal ) thumbnr %= totaal;
	    	location.href = thumbs[thumbnr-1].href;
         }
         
    }
}


