/*******************************************************************************

KEYBOARD NAVIGATION

This code allows the use of keyboard keys to navigate through the website. Its a
nice little hidden feature. Requires JavaScript 1.2

By: 		Jean-Philippe C™tŽ
Modified: 	2005-11-01
					
*******************************************************************************/


function key_navigation() {
	//alert(event.keyCode)
	
	if (event.keyCode == 27) {		// escape key 		= home page
		window.location = '/';
	} 
	
}

document.onkeypress = key_navigation;