﻿function getWindowWidth() {
    return screen.width -16;
}
function getWindowHeight() {
    return screen.height;
}

$(document).ready(function() {
    $(".rightbar").css("width", getWindowWidth());
    $("#content").css("min-height", getWindowHeight());
    $('.hover').hover(
        function() {
            this.src = this.src.replace("_h.png", ".png").replace(".png", "_h.png");
        },
        function() {
            this.src = this.src.replace("_h.png", ".png");
        });
});


