//promodates

	xmasDate = new Date();
	xmasDate.setFullYear(2006,11,25);
	xmasDate.setHours(0);
	xmasDate.setMinutes(0);
	xmasDate.setSeconds(0);
	
	myDate = new Date();
	day=myDate.getDate();
	month=myDate.getMonth()+1;
	year=myDate.getFullYear();
	
	
	
	if (myDate > xmasDate)
	{
		document.write ("<style> .xmaspromo { visibility:hidden; height:1px; width:1px; overflow:hidden; }  </style>");
	}
	else
	{
		document.write ("<style> .defaultpromo { visibility:hidden; height:1px; width:1px; overflow:hidden; }  </style>");
	}
	
