Смена шапки взависимости от времени суток

вот код для смены шапки при обновлении страницы 

<script type="text/javascript">    
sha=Math.floor(Math.random() * 2);    
document.write('<img src="http://narutoplanet.net.ru/logos/logo'+sha+'.jpg" border="0" />');    
</script>

вот код чтобы шапка менялось взависимости от времени 

<script type="text/javascript"> 
function shapka(n) 
{document.write('<img border="0" src="/logo/'+n+'.gif">');} 
var h=(new Date()).getHours(); 
if (h > 6 && h < 21) shapka('1'); 
if (h > 21 || h <7) shapka('2'); 
</script>

по материалам сайта http://udf.su/forum/

Создать бесплатный сайт с uCoz