2 Misc JavaScipt for WineHQ
5 // include a file from js scripts dir
6 function include_dom (script_filename) {
7 var html_doc = document.getElementsByTagName('head').item(0);
8 var js = document.createElement('script');
9 js.setAttribute('language', 'javascript');
10 js.setAttribute('type', 'text/javascript');
11 js.setAttribute('src', script_filename);
12 html_doc.appendChild(js);
16 // load and execute jquery IE6 PNG fix
17 include_dom("jquery.pngfix.js");
19 $("img[@src$=png]").pngfix(); /* all img tags with .png extension */
20 $("#tabs li").pngfix(); /* top tabs li backgrounds */