$(document).ready(function() {
		$('#root-top-menu td:last-child').css("border-right","none");
    $("#root-top-menu td").mouseover(function(){
    	if ( $.browser.msie ) {$('#main-column').css('z-index','-1');}
	  	$(this).children('table').stop({clearQueue: true, gotoEnd: true});
	  	$(this).children('table').fadeTo("fast",0.9);
			$(this).children('table').fadeIn("fast");
    }).mouseout(function(){
      $(this).children('table').fadeOut("fast");
      
    });	
	  $('#root-top-menu td').each(function(i){
	    var tmat = $(this).width();
	    $(this).children('table').css('width',tmat+'px');  
	  });
	  
  
});


