/*-------------------------------------------------------
* 说明：基于jQuery编写
* 作者：Gavin
* 创建时间：2008-10-27
* 最后一次修改时间：2009-03-04 
-------------------------------------------------------*/

$(document).ready(function(){
						   
	//消除链接虚线框
	$("a").bind("focus",function(){
    	if(this.blur){ //如果支持 this.blur
        	this.blur();
        }
    });
	

	

	

	$("#contact dd").each(function(i){
		$(this).css('z-index', 100-i);
	});
	
	$(".evaluate").each(function(){
		//alert($obj.html());
		
		$(this).bind("mouseover", function(){
			$(this).next().show();
		});
		$(this).bind("mouseout", function(){
			$(this).next().hide();
		}); 
		$(this).next().bind("mouseover", function(){
			$(this).show();
		}); 
		$(this).next().bind("mouseout", function(){
			$(this).hide();
		}); 
		
	});
	
});