$(function () {
	$(document).keydown(function (e) {
		if (e.ctrlKey && e.keyCode) {
			switch (e.keyCode) {
				case 0x27:
					var href = $('link[rel=next]').attr('href');
					if (href) {
						document.location = href;
					}
					break;
				case 0x25:
					var href = $('link[rel=prev]').attr('href');
					if (href) {
						document.location = href;
					}
					break;
			}
		}
	});
});


	function addBookmark(title, url)
	{
	try {
	 pageTracker._trackEvent('Bookmark', 'Add');
	} catch (e) {};
	if (!url) url = location.href;
	if (!title) title = document.title;
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) window.sidebar.addPanel (title, url, "");
	else if (typeof window.external == "object") window.external.AddFavorite(url, title);
	else if (window.opera && document.createElement)
	{
		var a = document.createElement('A');
		if (!a) return false; //IF Opera 6
		a.setAttribute('rel','sidebar');
		a.setAttribute('href',url);
		a.setAttribute('title',title);
		a.click();
	}
	}

