// JavaScript Document


<!--
// biglink	
$(document).ready(function( ) {
 var target = '.biglink';
 var hoverClass = 'hoverlink';

 $(target).each(function() {
  $(this).hover(
   function() {
    $(this).addClass(hoverClass);
    status=$(this).find('a').attr('href');
   },
   function() {
    $(this).removeClass(hoverClass);
    status='';
   });
  $(this).click(function() {
    location = $(this).find('a').attr('href');
  }); 
  $(this).css('cursor','pointer');
  });
 });   // end of ready() function
 

// todays date
function printToday() {
	
	var today = new Date();
	day = new Date();
	id = day.getTime();	  

document.write(today.toDateString());
		}

// -->
