jQuery.noConflict();

jQuery(document).bind('keydown', NavigateThrough);

function NavigateThrough(e)
{

	if (e.ctrlKey)
	{
		
		var link = null;
		var href = null;
		switch (e.keyCode ? e.keyCode : e.which ? e.which : null)
		{
			case 0x25:
				link = jQuery('#prevLink').attr('href');
				break;
			case 0x27:
				link = jQuery('#nextLink').attr('href');
				break;
            case 0x26:
				link = jQuery('#prevLink').attr('href');
				break;
			case 0x28:
				link = jQuery('#nextLink').attr('href');
				break;
			case 0x24:
				href = '/';
				break;
		}
		if (link) document.location = link;
		if (href) document.location = href;
	}			
}