// 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 and uploading it will apply to each page.


var today = new Date() ;
var checkDate = new Date("February 10, 2012") ;
	if (today < checkDate) {
	document.write("<p align='left' class='MsoNormal'><a href='captioned-movies.pdf'><strong>Captioned Movies<br><small>To ensure latest news:<br>Click reload button</strong></a></p>")	
	}
