var keyCmdOpenCMS  = new YAHOO.util.KeyListener(document, { ctrl:true, keys:69 }, { fn:openCMS});
var keyCmdCloseCMS = new YAHOO.util.KeyListener(document, { ctrl:true, keys:81 }, { fn:closeCMS});

keyCmdOpenCMS.enable();
keyCmdCloseCMS.enable();

//Enter CMS mode (Ctrl+E)
function openCMS(){
	if (window.location.pathname.substr(1,3) == 'cms') return;
	window.location = '/cms'+window.location.pathname + window.location.hash;
};

//Leave CMS mode (Ctrl+Q)
function closeCMS(){
	if (window.location.pathname.substr(1,3) != 'cms') return;
	window.location = window.location.pathname.substr(4) + window.location.hash;
};

