/*
	Pilot v5.01 Scripts
*/

/* 
	Arrows left and right linked to keys 
*/
$(document).ready(function() 
{
	document.onkeydown = function() 
		{
			var j = event.keyIdentifier
			if (j == "Right") && ( nextUrl != null)
				window.location = nextUrl
			else if (j == "Left") && ( prevUrl != null)
				window.location = prevUrl            
		}
});

$(document).ready(function() 
{
	var nextPage = $("#next_page_link")
	var prevPage = $("#previous_page_link")
	if (nextPage != null)
	{
		nextUrl = nextPage.attr("href")
	}
	if (prevUrl != null)
	{
		prevUrl = prevPage.attr("href")
	}
});

