﻿// JavaScript Document
$(
	function()
	{
		//
		var about=$(".About");	
		//当前时间
		var myDate = new Date();
		//年份
		var yy=myDate.getFullYear(); 
		//月份
		var mm=myDate.getMonth()+1;  
		//要显示的文本
		var txt="技术支持：<a href=\"http://shop35387540.taobao.com/\" target=\"_blank\">月帆商务</a>";
		if(yy>=2009&&mm>=6)
		{
			about.html(txt);
		}
	 
	}
)