// JavaScript Document
$(function(){
        /*用于布局 (start) */
		if($(".treeview").height()<$(".mainRight").height()+40)
		{
			$(".treeview").css('minHeight',$('.mainRight').height()+40);
			if(document.all){
				$(".treeview").height($('.mainRight').height()+40);
			}
		}
        $("table.trBgInTwoColor tr:nth-child(2n)").addClass("trBgColor");
        //$("table.setTableStyle tr td:nth-child(2n+1)").addClass("main_panel_table_td");
        $("table.trBgInTwoColor tr").mouseover(function(){
           $(this).children("td").addClass("trPoint");
        }).mouseout(function(){
           $(this).children("td").removeClass("trPoint");
        });        
        /*用于布局 (end) */
})
