// ==UserScript==
// @include        http://www.gamekult.com/*
// ==/UserScript==

/*
**	Fix de l'interface Bunk de GK pour Chrome
**	
*/
body = document.body;
var style = document.createElement("link" ); 
with(style) { 
	type="text/css"; 
	rel="stylesheet"; 
	href="http://fiaxhs.com/gkfix.css"; 
}
document.getElementsByTagName("head")[0].appendChild(style);