//if_entry
$(function() {

	$(document).keypress(function(e) {

	    var tag = e.target.tagName;
	    if(tag != 'INPUT' && tag != 'TEXTAREA') {

	    switch(String.fromCharCode(e.which)) {
	    	case 'J':
	    	case '>':
			if($('#EntryHeaderBlock > li.next > a').get(0))
				location.href = $('#EntryHeaderBlock > li.next > a').get(0).href;
			break;
	    	case 'K':
	    	case '<':
	    		if($('#EntryHeaderBlock > li.prev > a').get(0))
	    			location.href = $('#EntryHeaderBlock > li.prev > a').get(0).href;
	    		break;
	    }

	    }/* else {
	        e.stopPropagation();
	    }*/
	});

});
