/****************************************************************************************************
  Since there still is crappy browsers (mainly IE6) out there, which got some bugs regarding
  to rendering things right, I had to create this file to do some tricks after the page is loaded
  to make the page look as it was ment.
****************************************************************************************************/
// Funne IE6 bug..
// Looks like there is a pb with float/clear
function resizeTagsToMakeThingsVisibleAgain(){
  var wtfs = document.getElementsByTagName("dd");
  for(ii = 0; ii < wtfs.length; ii++){
    if(wtfs[ii].skip != "yes" && wtfs[ii].className.indexOf("menu")==-1)
      wtfs[ii].style.width = "100%";
  }
}

// This stuff is need in IE only
if(document.all){
  resizeTagsToMakeThingsVisibleAgain();
}














































































































































































/****************************************************************************************************
  As a bonus, for bothering reading through the script and scrolling down here, I'll tell you why I named this file wtf.js
  wtf is short for WHAT THE FUCK!!!!
  
  Micro$oft (which I think describes Bill's dick) really did a lame job implementing IE6.. it should
  not be neccessary for developers to hunt down the bugs to make the pages render correctly in IE6.
****************************************************************************************************/

