var uv_button ;
var temp = document.getElementById("temp") ;
temp.style.color = "#fff" ;

for ( var i = 1 ; i <= 3; i++ )
{
	if ( uv_button = document.getElementById("uvb_0"+i) )
	{
		uv_button.onmouseover = function ()
		{
			this.style.background = "url(/UV/images/button_up_" + this.id.substr(4) + ".gif)" ;
		}

		uv_button.onmouseout = function ()
		{
			this.style.background = "transparent" ;
		}
	}
}

//		this.innerHTML += "d+";


uv_button = document.getElementById("pic_works") ;
uv_button.onmouseover = function ()
{this.src = "images/go_to_works_M.gif";}
uv_button.onmouseout = function ()
{this.src = "images/go_to_works.gif";}

if ( uv_back = document.getElementById("back_gallery") )
{
	uv_back.onmouseover = function ()
	{this.src = "images/Back-to-gallery_M.gif";}
	uv_back.onmouseout = function ()
	{this.src = "images/Back-to-gallery.gif";}
}
