﻿<!--
//-------------------------------------=================================JQUERY Documnet=================---------------
$(function(){
	setInterval('clockPlace.innerHTML=new Date().toLocaleString() + " 星期" + "日一二三四五六".charAt(new Date().getDay());',1000);
	if ($('#proTypeShow').length) {
		$('#proTypeShow').text($('.sltSubMenu').text());
	}
	if ($('#chgMenu').length) {
		$('#chgMenu a').each(function(i){
			$(this).mouseover(function(){
				$(this).addClass('sltChg').siblings().removeClass('sltChg');
				$('.chgCaseContent').eq(i).show().siblings('.chgCaseContent').hide();
			});
		});
	}
})
//-------------------------------------=================================JQUERY Documnet=================---------------
//-->