$(window).resize(function() {
  var body = $("body");
  var width = body.width();
  var height = body.height();
  if (height < 400) height = 400;
  $("#wobsta_logo").css({"left": (width-300)+"px", "top": (height-300)+"px"});
});
$(function() {
  $("body").append('<img id="wobsta_logo" src="/chrome/site/wobsta_de_color.png" style="position:absolute; z-index:-1;">');
  $("body div#content.wiki:not(.blog)").css({"margin-right": "150px", "margin-top": "1em"});
  $("body div#content.search").css({"margin-right": "150px", "margin-top": "1em"});
  $("body div#content.attachment").css({"margin-right": "150px"});
  $("body").css({"margin-bottom": "150px"});
  $("#sidebar").css({"opacity": 0.95});
  $("#mainnav").css({"font-weight": "bold"});
  $(window).resize();
  $("img").load(function () { $(window).resize(); });
  $(".blogimageright").css({"margin-left": "15px", "margin-bottom": "5px", "float": "right"});
  $("#wobsta_de_email").css({"position": "relative", "top": "2px"});
});
