/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

(
  function () {
    var VERSION = "1.0";
    var NAME    = "com.web.onlinebuilder.qc.headings.highlight";
    var styles  = ["css/highlight.css"];

    window.WebCom.ResourceLoader.importLib(
      new window.WebCom.ResourceLoader.Library(NAME, VERSION, [], styles ));

    var active = false;
    var downKeys = new Object();
    jQuery(document).keydown(function(e) {
        downKeys["k_" + e.keyCode] = true;
	if (e.shiftKey && downKeys["k_72"] && downKeys["k_192"]) {
          active = !active;
          var obj = jQuery('h1, h2, h3, h4, h5, h6');
          (active) ? obj.addClass('mtx_showHeadings') : obj.removeClass('mtx_showHeadings');
	}
    });

    jQuery(document).keyup(function(e) {
      delete downKeys["k_" + e.keyCode];
    });
  }
)();
