// By: Gustav Degerman, www.Ideform.se
// ----------------------------------------

function thumbHover(theMouseAction,theId)
	{
		
		var theThumbTxt = document.getElementById('thumbTxt'+theId);
		var theThumbBg = document.getElementById('thumbBg'+theId);
		
		//change width
		if (theMouseAction=="over")
		{
			theThumbTxt.style.display='block';
			
			theThumbBg.style.display='block';
						
		}
		else if	(theMouseAction=="out")
		{
			theThumbTxt.style.display='none';
			
			theThumbBg.style.display='none';
			
		}
		
	}