/** * blue Javascript * * @author Michal Luberda * @version 0.2 */ $ (document).ready ( function () { $ ("div.attachment-image a").attr ("target", "_blank"); window.setInterval ( function () { in_height_menu = $ ("#div-menu").height (); in_height_content = $ ("#div-content").height (); if (in_height_menu > in_height_content) { $ ("#div-content").height (in_height_menu); } else { $ ("#div-menu").height (in_height_content); } }, 100 ); } );
