﻿var minitheme = "space";
var theme_icons = new Array("icon_1.gif", "icon_2.gif", "icon_3.gif", "icon_4.gif", "icon_5.gif", "icon_6.gif", "icon_7.gif", "icon_8.gif", "icon_9.gif", "icon_10.gif");

function replaceThemeItems() {
	document.getElementById("subheader").childNodes[0].src = stylesheet_directory + "/images/mini_themes/" + minitheme + "/subheader.jpg";
	var posts = document.getElementsByTagName("div");
	countposts = 0;
	for (var i=0; i<posts.length; i++) {
		if (posts[i].id.indexOf("post-") == 0) {
			var post_icon_n = Math.min(theme_icons.length - 1, Math.round(Math.random() * theme_icons.length));
			posts[i].style.backgroundImage = "url(" + stylesheet_directory + "/images/mini_themes/" + minitheme + "/" + theme_icons[post_icon_n] + ")";
		}
	}
}

if (window.addEventListener) {
	window.addEventListener("load", function() { replaceThemeItems(); }, false);
} else if (window.attachEvent) {
	window.attachEvent("onload", function() { replaceThemeItems(); });
}