/**
 * evenezia Javascript
 *
 * @author Michal Luberda
 * @version 0.2
 */
$ (document).ready (
    function () {
        $ ("div.attachment-image a").attr ("target", "_blank");
        
        
        /*
        $ ("#div-footer").append ("<script type='text/javascript'>google_ad_client = 'pub-2382061918989390'; google_ad_slot = '3443212333'; google_ad_width = 728; google_ad_height = 90;</script><script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'></script>");
        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
        );
        */
    }
);