// JavaScript Document
$(document).ready(function(){
	$('#footer').append("<div id='rongl'></div>");
	var langeclass;
	$("#link > a[@href]").hover(function(){
		$(this).find('span').eq(0).css("display","none");
	    $(this).find('span').eq(1).css("display","block");
	},
	function(){
		$(this).find('span').eq(1).css("display","none");
	  	$(this).find('span').eq(0).css("display","block");
	}); 
	
	$("#lange > a[@href]").hover(function(){
		langeclass=$(this).attr('class');
		langeclass_=langeclass+'_';
		$(this).removeClass();
		$(this).addClass(langeclass_);
	},
	function(){
		$(this).removeClass();
		$(this).addClass(langeclass);
	}); 
	
});

function cl(t){if (t.defaultValue==t.value) t.value = '';}
function View2(winname,theURL,top,left,width,height)
{
        msgWindow = window.open(theURL,winname,'menubar=no,scrollbars=yes,toolbar=no,location=no,titlebar=no,resizable=no,status=no,screenX=0,top='+top+',screenY=0,left='+left+',width='+width+',height='+height+'');
 
        if (msgWindow.opener == null)
                msgWindow.opener = self;
 
}