/*
oogami custom header js
version beta
*/

var OOGAMI = {};
OOGAMI.quickGoto = {
	"70": "http://oogami.name/feed/" //char f
};


jQuery(document).ready(function(){ // wrapper all in document.ready event

/*
jQuery(document).keydown(function(e){ // catch some quick keys
	if(e.altKey && e.shiftKey  ) {
		switch(e.which) {
			default:
			if( typeof( OOGAMI.quickGoto[e.which.toString()] ) != "undefined" ) {
				e.preventDefault();
				if( typeof(wpcc_target_lang) == "undefined" )
					window.location.href = OOGAMI.quickGoto[e.which.toString()];
				else
					window.location.href = OOGAMI.quickGoto[e.which.toString()] + wpcc_target_lang + "/" ;
			}
		}
	}
});
*/

});
