$(document).ready(function() {
	$(document).keypress(function(e) {
		var keyCode = e.keyCode || e.which;

		if (keyCode == 39 && $('a#NextLink').length > 0) {
			window.location = $('a#NextLink').attr('href');
		}
		else if (keyCode == 37 && $('a#PrevLink').length > 0) {
			window.location = $('a#PrevLink').attr('href');
		}
	});
});

