// JavaScript Document

// This script prints the menu item, 'Captioned Movies' on each page of the site until the date listed in the script. 
// This script is read into each page so it is not necessary to place the whole script on each page.
// Just changing the date below will apply to each page.


var today = new Date() ;
var checkDate = new Date("September 14, 2010") ;
	if (today < checkDate) {
	document.write("<p align='left' class='MsoNormal'><strong><a href='captioned-movies.pdf'>Captioned Movies</a></strong></p>")	
	}