
var now = new Date();
var month = now.getMonth();
var nextmon = month + 1 ;
var minutes = now.getMinutes();
var modmins = minutes % 4;


	if ( nextmon < 10 ) {
		document.write('		<img src="./nimages/top_head_img0'  + nextmon + '.jpg" alt="" width="194" height="94">');
	} else {
		document.write('		<img src="./nimages/top_head_img'  + nextmon + '.jpg" alt="" width="194" height="94">');		
	}

