M.Sc.& ).ready(function() {
// Add a new header_row to the top
$("main").prepend("");
// Move header and navigation to header_row
$("#header_row")
.append($(".tp_header").parent())
.append($(".tp_navigation"));
// Remove padding of the content-elements inside the header row
$("#header_row > .content-element")
.css("padding-top", "0em")
.css("padding-bottom", "0em");
// Remove bottom borders after all content elements
$(".content-element")
.css("border-bottom", "none")
.filter(function() {
return $.trim($(this).text()) === "";
}).remove(); // remove empty content divs
});