$(document).ready(function () {

  $("#wallpaper").mouseenter(function () {
    $("html").css("background-image", "url('img/background.jpg')");
    $("#wallpaper-info").fadeIn(200);
    $("#body").fadeOut(200);
  });
  
  $("#wallpaper").mouseleave(function () {
    $("html").css("background-image", "url('img/background-bw.jpg')");
    $("#wallpaper-info").fadeOut(200);
    $("#body").fadeIn(200);
  });
  
  if (document.width > 1000)
  {
    $("#body").width(document.width / 3);
    $("#body").css("left", document.width / 6);
    $("#body").css("top", document.height / 6);
  }
  
});
