/* Word of day script
Copyright (c) 2001
michel@irt.org */
baseUrl = 'http://www.yindii.com';
now = new Date();
dayNum = now.getDay();
days = 
"sun,mon,tue,wed,thu,fri,sat".split(',');
document.write(
'<a href="http://www.yindii.com/" target="_blank"><img src="'+baseUrl+'/words/'+
days[dayNum]+'.gif" border=0></a>'
);
