function writeStyleToDoc(st)
{
	str = "<link rel='stylesheet' type='text/css' href='" + st + "' />"
	document.write(str);
}	
function writeToDoc(scrpt)
{
	var str = "<script type=\"text/javascript\" src=\"" + scrpt + "\"></script>"
	document.write(str);
}
var scripts = new Array
(
	"config.js",
	"scripts/js/parsers.js",
	"scripts/js/xml_httpRequest.js",
	"templates/template_index.js",
	"templates/template_entry.js",
	"templates/template_player.js",
	"templates/template_itemBox.js",
	"templates/template_randomBox.js",
	"scripts/js/audio-player.js",
	"scripts/js/addLoadEvent.js",
	"scripts/js/contentLeftBuilder.js",
	"scripts/js/contentMidBuilder.js",
	"scripts/js/page_builder.js",
	"scripts/js/entries_builder.js",
	"scripts/js/utility.js",
	"scripts/js/RequestOb.js",
	"myfeatures/features_loaders.js",
	"scripts/js/index.js"
);

var styles = new Array
(
	"styles/rss_styles.css"
);



for (var j = 0; j < styles.length; j++)
{
	writeStyleToDoc(styles[j]);
}

for (var i = 0; i < scripts.length; i++)
{
	writeToDoc(scripts[i]);
}


