$(document).ready(function() {
	$("#header li a").hover(
			function(){
				$(this).children("img:first").addClass("navactive");
			},
			function(){
				$(this).children("img:first").removeClass("navactive");
			}
		);
	// 钩子，回调。 请在具体的html文档中定义
	try{
		if(typeof(onInitDocument)=='function');
			onInitDocument();
	}catch(e){
	}
});
