﻿		<!-- time of day script -->
	 	function timeOfDayImage() {
	 	var now = new Date;
	 	var hours = now.getHours();
	 	var minutes = now.getMinutes();
	 	var linker = null;
	 	var img = null; var mess = '';
	 		mess = 'לילה טוב!';

	 	if (hours >= 5) {
	 		 mess = 'לילה טוב!';
	 	}
	 	
	 	if (hours >= 8) {
	 		 mess = 'בוקר טוב!';
	 	}


	 	if (hours >= 12) {
	 		 mess = 'צהריים טובים!';
	 	}

	 	if (hours >= 16) {
	 		 mess = 'אחר-צהריים טובים!';
	 	}

	 	if (hours >= 18) {
	 		 mess = 'ערב טוב!';
	 	}



 
document.write(''+mess+'');

 		}                               
 		
		<!-- display date script -->
		function DisplayDate() {
			today=new Date();
			m=today.getMonth()+1;
			d=today.getDate();
			y=today.getYear();
			switch(today.getDay()+1)
					{case 1: he_date="יום ראשון ";break;case 2: he_date="יום שני ";break;case 3: he_date="יום שלישי ";break;case 4: he_date="יום רביעי ";break;case 5: he_date="יום חמישי ";break;case 6: he_date="יום שישי ";break;case 7: he_date="שבת ";break;}
			he_date = he_date;

			
				document.write (he_date);
		}

