/**
 * init Javascript
 *
 * (c) 2008 by Michal Luberda
 */

$ (document).ready (
    function () {
        in_height = $ (document).height ();
        in_height_content = $ ("#divcontent").height ();
        in_height_footer = $ ("#divfooter").height ();
        in_height_menu = $ ("#divmenu").height ();
        $ ("#divintro").css ({
            height: in_height - (in_height_content + in_height_footer + in_height_menu) - 75 + "px"
        });
        $ ("#divheader").css ({
            height: in_height - (in_height_content + in_height_footer + in_height_menu) - 75 + "px"
        });
    }
);
