function adjustHeadlines() {
	// get Y position of last headline image
	headlinediv = document.getElementById('headline');
	if (!headlinediv)
		return;
	himages = headlinediv.getElementsByTagName('img');

	var ypos=0;
	var multiline=0;
	var smallFont=0;
	var normalHeight=65;
	for (i=0;i<himages.length;i++) {
		thisImage = himages[i];
		thisPos = thisImage.offsetTop;
		smallFont = thisImage.src.match('Small');
		if (smallFont)
			normalHeight=30;

		thisHeight = thisImage.height;
		// if height is way bigger or smaller than the norm, then reposition image
		if (thisHeight-normalHeight<-2) { // tiny
			adjustPos = normalHeight-thisHeight;
			thisImage.style.marginTop=adjustPos + 'px';
		}
		if (thisHeight-normalHeight>1) { // too tall
			adjustPos = normalHeight-thisHeight;
			thisImage.style.marginTop=adjustPos + 'px';
		}

		// check if all on same line
		if (!ypos) // 1st image
			ypos = thisPos
		else if (thisPos>ypos) { // multiple lines
			multiline = 1;
		} 
		thisImage.style.visibility='visible';
	}

	if (!multiline && smallFont) {
//		headlinediv.style.paddingTop='25px';
	}

}

