# File lib/cucumber/formatter/html.rb, line 507
      def inline_js_content
        "\nSCENARIOS = \"h3[id^='scenario_']\";\n\n$(document).ready(function() {\n$(SCENARIOS).css('cursor', 'pointer');\n$(SCENARIOS).click(function() {\n$(this).siblings().toggle(250);\n});\n\n$(\"#collapser\").css('cursor', 'pointer');\n$(\"#collapser\").click(function() {\n$(SCENARIOS).siblings().hide();\n});\n\n$(\"#expander\").css('cursor', 'pointer');\n$(\"#expander\").click(function() {\n$(SCENARIOS).siblings().show();\n});\n})\n\nfunction moveProgressBar(percentDone) {\n$(\"cucumber-header\").css('width', percentDone +\"%\");\n}\nfunction makeRed(element_id) {\n$('#'+element_id).css('background', '#C40D0D');\n$('#'+element_id).css('color', '#FFFFFF');\n}\nfunction makeYellow(element_id) {\n$('#'+element_id).css('background', '#FAF834');\n$('#'+element_id).css('color', '#000000');\n}\n\n"
      end