// Fixing layout bugs



function fixHorizontals() {
    if ($(".content").html() != null) {
        $(".content").html($(".content").html().replace(/<hr(.)*>/gi, '<div class="horizontal"></div>'));
    }
 }

function fix() {
	fixHorizontals();
}

onload = function () {
	 fix();
}