<!-- hide script
			var oDate	= new Date(),
				aMonth	= new Array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ),
				aDay	= new Array( 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' ),
				aOpeningHour = 9,
				aClosingHour = 19,
				aClosedMsg ='Our Travel Office is closed now. Office is open from Monday to Friday - 9:30 am to 6:00 pm ',
				aRespond_SoonMsg = 'If you contact us now by e-mail, our travel consultant will respond to you soon.', 
				aRespond_LateMsg = 'If you contact us now by e-mail, our travel consultant will respond to you tomorrow',
				aRespond_NextDayMsg = 'If you contact us now by e-mail, our travel consultant will respond to you tomorrow.',
				aRespond_MondayMsg = 'If you contact us now by e-mail, our travel consultant will respond to you on Monday.',
				aMinutes,
				aHour;
			
				if (oDate.getMinutes() > 9) {
				    	aMinutes =  oDate.getMinutes().toString(10);
				}
				else {
				        aMinutes =  "0"+oDate.getMinutes().toString(10);
				};
                if (oDate.getHours() > 12) {
    				aHour = (oDate.getHours() - 12).toString(10) + ":" + aMinutes +"pm";
				}
				else {
				   if (oDate.getHours() == 0) {
				       aHour = "12:" + aMinutes + "am";
				    }
				    else {
					      if (oDate.getHours() == 12) {
				              aHour = (aMinutes == "00") ? "12:00m" : "12:"+ aMinutes + "pm";
				          }
				          else {
					          if (oDate.getHours() < 10) {
				                  aHour = "0" + oDate.getHours().toString(10) + ":" +aMinutes + "am";
				              }
				              else {
				                   aHour = oDate.getHours().toString(10)  + ":" +aMinutes + "am";
				               }
						 }
				   }
				};
				    
				
				document.write(	  aDay[ oDate.getDay() ]
							+ ". "
							+ aMonth[ oDate.getMonth() ] 
							+ " "
							+ oDate.getDate()
							+ ". "
							+ oDate.getFullYear()
							+ "  , at " + aHour + " "  );
							
				document.write("<br>");

				if ((( aDay[oDate.getDay()] == 'Friday'  ) && ( oDate.getHours() >= aClosingHour )) || ( aDay[oDate.getDay()] == 'Saturday'  ) || ( aDay[oDate.getDay()] == 'Sunday'  )) {
				     document.write( aClosedMsg + "<br>" + aRespond_MondayMsg )
				 }
				 else {
			          if ( oDate.getHours() < aOpeningHour) {
            	              document.write( aClosedMsg + "<br>" +aRespond_LateMsg)
		    			 }
                      else  {
                           if (oDate.getHours() >= aClosingHour) { 
						        document.write( aClosedMsg + "<br>" +aRespond_NextDayMsg )
							}
							else 
                                                        {
                                                           if (oDate.getHours() >= 18)
                                                           {
                                                                document.write(aRespond_LateMsg);
                                                           }
                                                           else
                                                           {
							     document.write(aRespond_SoonMsg);
                                                           }
							}
					   }
				 }
			//gc
			oDate	=
			aMonth	=
			aDay	= null;
			
		// end hiding script -->