﻿function getHeight() {
    var height = window.innerHeight != null ? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null ? document.body.clientHeight : null;
    if (height < (jQuery("div.wrapper").height() + 150)) height = jQuery("div.wrapper").height() + 150;

    return height;
}

jQuery(document).ready(function () {
    jQuery("div.body").css("background-image", "url(http://bccmedia.no/Filer/Page_Design/fartsstriper.png)");
    jQuery("div.body").height(getHeight());
    jQuery(window).bind("resize", function () {
        jQuery("div.body").height(getHeight());
    });
    var isInIFrame = (window.location != window.parent.location) ? true : false;
    if (isInIFrame) {
        $('.menu').each(function () {
            if (!$(this).hasClass("alwaysShow")) {
                $(this).hide();
            }
        });
    }
});
