/**
 * @author aschillinger
 */
function writeStyle(strStyle, strSpace) {
	try {
			// get style elem
		var oStylish = document.getElementById(strStyle);
		var oStylishIE;
		if(isIE) {
			oStylishIE = document.styleSheets[strStyle];
			oStylishIE.addRule('body','background: transparent url(http://www.adultswim.com/shows/' + strSpace + '/imgs/showGlobal/showBgImage.jpg) 0 0 repeat')
		} else {
			oStylish.innerHTML = '\nbody {background: transparent url(http://www.adultswim.com/shows/' + strSpace + '/imgs/showGlobal/showBgImage.jpg) 0 0 repeat!important;}';
		}
	} catch (e) {
		// means browser (such as safari) has no idea what i just said :|
		document.body.style.background = 'transparent url(http://www.adultswim.com/shows/' + strSpace + '/imgs/showGlobal/showBgImage.jpg) 0 0 repeat';
	}
}
