$(document).ready(function() {
  $.browser.msie6 = $.browser.msie 
      && /MSIE 6\.0/i.test(window.navigator.userAgent)
      && !/MSIE 7\.0/i.test(window.navigator.userAgent);   

  if ($.browser.msie6) {
  // *** Create a downgraded navigation menu for IE6 ***
  // remove background images	  	  	  
  $("ul#nav li a").css("background", "none");
  
  // replace the transparent pngs background images with the same images (<img>) but not as a background image and without hover  
  $("li#nav_home a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_home.png' width='354' height='25'>");
  $("li#nav_nieuws a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_nieuws.png' width='354' height='25'>");
  $("li#nav_urbandancestylz a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_urbandancestylz.png' width='354' height='25'>");
  $("li#nav_docenten a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_docenten.png' width='354' height='25'>");
  $("li#nav_videos a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_videos.png' width='354' height='25'>");
  $("li#nav_fotos a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_fotos.png' width='354' height='25'>");
  $("li#nav_reacties a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_reacties.png' width='354' height='25'>");
  $("li#nav_contact a").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/nav_contact.png' width='354' height='25'>");
  
  // display: block toekennen aan ul#nav li a img
  $("ul#nav li a img").css("display", "block");   
    
  // remove background image 
  $("a#button_leesverder").css("background", "none");
  $("a#button_ganaardocenten").css("background", "none");
  $("a#button_bekijkvideos").css("background", "none");
  $("a#button_geefjouwreactie").css("background", "none");
  
  // replace the transparent pngs background images with the same images (<img>) but not as a background image and without hover  
  $("a#button_leesverder").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/button_leesverder.png' width='456' height='66'>");
  $("a#button_ganaardocenten").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/button_ganaardocenten.png' width='350' height='89'>");
  $("a#button_bekijkvideos").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/button_bekijkvideos.png' width='498' height='67'>");
  $("a#button_geefjouwreactie").html("<img src='http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/button_geefjouwreactie.png' width='350' height='89'>");
    
  // display: block toekennen 
  $("a#button_leesverder img").css("display", "block"); 
  $("a#button_ganaardocenten img").css("display", "block");
  $("a#button_bekijkvideos img").css("display", "block"); 
  $("a#button_geefjouwreactie img").css("display", "block"); 
  
  // adjust width of div.homepage_docenten to show the entire contents of a.ganaardocenten
  // add 61px to the width otherwise it will hide this content in IE6: 364px + 61px = 425px
  $("div.homepage_docenten").css("width", "425px");
  
  // Fix the submit image in page REACTIES
  $("input#reactiesubmit").attr("alt", ""); //Hide the alt text 
  $("input#reactiesubmit").css("background", "none"); // Hide the background image
  $("input#reactiesubmit").attr({ src: "http://www.urbandancestylz.com/wp/wp-content/themes/uds/images/button_geefjouwreactie_ie6.png", width: 175, height: 89 });
  $("input#reactiesubmit").css("display", "block"); // Hide the background image
  }
  
});