var cssInclude = function(cssPath)
{
	this.cssPath = (cssPath)?cssPath:'/default/css/js.css';
	this.docHref = "";
	if (document.getElementsByTagName)
	{
		this.baseEls = document.getElementsByTagName("base");
		if (this.baseEls.length > 0)
		{
			this.docHref  = this.baseEls[0].href;
		}
	}
	this.domainStr = (this.docHref != "" ? this.docHref : document.location).toString().split('/')[2];
	document.write('<style>@import url(http://' + this.domainStr + this.cssPath + ');</style>');
}

// create a new jsCss for musicradar - should be moved out of this file.
var jsCss = new cssInclude('/default/css/js.css');
var autocompleterCss = new cssInclude('/default/css/autocompleter.css');

/*if (window.external && (typeof window.XMLHttpRequest == "object")) {
	// IE7 alternative here
} else {
	var animatedLogoCss = new cssInclude('/default/css/js_network.css');
	// cos the blog logo animation does TEH BADS to the footer in IE7.
}*/
