$(document).ready(function() {
	
	if ($('body').hasClass('ie6')){
		//alert('ie6 fix');
		$(document).pngFix(); 
		$('#left').height($('#inner').height()-20);		 
	}
					
	$('#nav > li:even').addClass('odd');			   
	
  //expand container div for wide tabls
	var widest = null;
	
	$("#main .wrapper table:not(#home_table)").each(function() {
  		if (widest == null){
    		widest = $(this).width();
		} else if ($(this).width() > widest.width()){
			widest = $(this).width();
		}
	});
	//console.log('wrapper: '+$('#main .wrapper').width()+', widest table:'+ widest);
	if (widest >= $('#main .wrapper').width()){

		widest = widest + 250 //margin-left
		$('#base').css("width", widest).addClass('wide');
	}
});
