// JavaScript Document

function fix_width() {
	if (screen.width <= 800) {
		document.getElementById("shad_left").style.display = "none";
		document.getElementById("shad_right").style.display = "none";
		document.getElementById("body").style.width = "778px";
	}
}

function fix_horizontals() {
	if (navigator.appName == "Microsoft Internet Explorer" && $(".Content").html() != null) {
		$(".Content").html($(".Content").html().replace(/<hr(.)*>/gi, '<div class="Horizontal"></div>'));
	}
}

function fix_bugs() {
	fix_width();
	fix_horizontals();
}

window.onload = function () {
	fix_bugs();
	if (document.getElementById("downloadScroll")) setDivPos();
}