function m_over(th)
{							
	th.style.color = 'blue';							
}
						
function m_out(th)
{				
	th.style.color = 'black';			
}	


function m_menu_sv_roz(th, im)
{
	if(th.style.display == 'block')
	{
		th.style.display = 'none';	
		im.src = "images/+.gif"; 
	}
	else 
	{
		th.style.display = 'block';			
		im.src = "images/-.gif"; 
	}
}	


