KEY_J		= 74;
REMAP_KEY_T	= 5019;	
function checkEventObj ( _event_ ){
	// --- IE explorer
	if ( window.event )
		return window.event;
	// --- Netscape and other explorers
	else
		return _event_;
}
	
function applyKey ( _event_ )
{
	// --- Retrieve event object from current web explorer
	var winObj = checkEventObj( _event_ );
	
	var intKeyCode = winObj.keyCode;
	var intAltKey = winObj.altKey;
	var intCtrlKey = winObj.ctrlKey;
		
	// --- Access with [ALT+CTRL+Key]
	if (intAltKey && intCtrlKey) {
		
		if ( intKeyCode == KEY_J)
		{
			
			// --- Display Image
			$.prettyPhoto.open('images/jam_to_pig.png','','&copy;<b> JAMTOPIG<\/b>');
			// --- Map the keyCode in another keyCode not used
			winObj.keyCode = intKeyCode = REMAP_KEY_T;
			winObj.returnValue = false;
			return false;
		}
		
	}
}
