jQuery(function() { if (typeof diagrams_init === "undefined") { diagrams_init = true; jQuery('img[id*=".diagram.png"]').each(function () { var open_code = jQuery(this).attr("onclick"); jQuery(this).attr("onclick", ""); jQuery(this).click(function(event) { if (event.ctrlKey) { eval(open_code); } }); }); } });