jQuery(document).ready(function() {
	jQuery(document.documentElement).keyup(function (event) {
		var left = jQuery('#arrowscont .leftarrow a.prev').attr('href');
		var right = jQuery('#arrowscont .rightarrow a.next').attr('href');

		if (event.keyCode == 37) { // go left
				window.location = left;
			} else if (event.keyCode == 39) { // go right
				window.location = right;
		}
	});
});
