// http://paulirish.com/2009/cornify-easter-egg-with-jquery/

var j$ = jQuery;	//mootoolsとのコンフリクト回避
var kkeys = [], cmd = "84,65,75,69,88,79,70,70";		//コマンドキーの設定

j$(document).keydown(function(e) {
	kkeys.push( e.keyCode );
	if ( kkeys.toString().indexOf( cmd ) >= 0 ){
		j$(document).unbind('keydown',arguments.callee);
		j$.getScript('http://takexoff.net/assets/templates/txo_co/js/pagebreak.js',function(){
//			cornify_add();
//			j$(document).keydown(cornify_add);
		});
	}
	afterbreak();
});


//崩壊終了後(やっつけ)
function afterbreak() {
	setInterval("location.reload()",12000);
}
