function WindowFocus() {
	window.focus();
}
document.onkeydown = function(e){
	e = (typeof e == "undefined") ? event : e;
	b = (typeof e.which == "number") ? e.which : e.keyCode;
		
	if (b == 39) {location.href = document.getElementById("next").href}
	else if (b == 37) {location.href = document.getElementById("prev").href}
}

$(function() {
	$(".trans70").css("opacity","0.7");
	$(".trans60").css("opacity","0.6");
	$(".trans50").css("opacity","0.5");
	$(".trans40").css("opacity","0.4");

    $(document).bind("contextmenu",function(e){
        return false;
    });
	
	$('.scrollabled').jScrollPane(
		{
			enableKeyboardNavigation: true
		}
	);

});
