window.onload = function()
{
	for(i=0; i<4; i++) {
		document.getElementById("imgPop" + i).setAttribute("onmouseover","popular(this,true)");
		document.getElementById("imgPop" + i).setAttribute("onmouseout","popular(this,false)");
	}
}

function popular(obj,over)
{
	div = document.getElementById("divPopular");
	
	if(over) {
		switch(obj.id) {
			case "imgPop0" : div.innerHTML = "<b>doseBadge Noise Dosimeter</b><br>Worker Noise Exposure - OSHA and EU Regs"; break;
			case "imgPop1" : div.innerHTML = "<b>Assessor Integrating Sound Level Meter</b><br>UK and EU Noise at Work Regulations"; break;
			case "imgPop2" : div.innerHTML = "<b>Quantifier Advanced Sound Level Meter</b><br>Environmental and Occupational Noise Assessments"; break;
			case "imgPop3" : div.innerHTML = "<b>Real-Time Octave Band Analysis</b><br>Environmental and Occupational Noise Assessments"; break;
		}
	}
	else
		div.innerHTML = "<b>Most Popular Sound Level Meters</b>";
}
