function getTime()
{
 datetoday = new Date();
 timenow=datetoday.getTime();
 datetoday.setTime(timenow);
 thehour = datetoday.getHours();
 var browserName=navigator.appName; 
 var nightImagePath = 'http://files.apts247.com/files/corporate/000/000/002/10/gateway/flash/nighttop6.swf';
 var dayImagePath = 'http://files.apts247.com/files/corporate/000/000/002/10/gateway/flash/top6.swf';
 if (thehour > 18 || thehour < 5){
	if (browserName=="Microsoft Internet Explorer"){
      document.getElementById('slide').getElementsByTagName('object')[0].movie=nightImagePath;
	}else{
      document.getElementById('FLASH_TOP-LOGO').getElementsByTagName('embed')[0].src=nightImagePath;
	}
 }
 else{
	if (browserName=="Microsoft Internet Explorer"){
      document.getElementById('slide').getElementsByTagName('object')[0].movie=dayImagePath;
	}else{
      document.getElementById('FLASH_TOP-LOGO').getElementsByTagName('embed')[0].src=dayImagePath;
	}
 }
}
