/* Style fixes for the main navigation T.T ( */
  
$(document).ready(function(){
  
  $("div#dtree_0div > table:last td span").css({
    border: "none"
  });
    
  $("div#dtree_0div > table:first td").css({
    backgroundImage:"url(images/main_navigation_top.png)",
    backgroundRepeat: "no-repeat",
    backgroundPosition: "bottom left",
    verticalAlign: "bottom",
    height: "46px",
    lineHeight: "46px"
  });

  $("div#dtree_0div > table:last td").css({
    backgroundImage:"url(images/main_navigation_bottom.png)",
    backgroundPosition: "top left",
    backgroundRepeat: "no-repeat",
    verticalAlign: "top",
    height: "45px",
    lineHeight: "45px"
  });
  
  $("div#dtree_0div > div").each( function() {
    if ( $(this).attr("id") == "" ) {
      $(this).remove();
    }
  });
    
});
