/*
function showit(whichmenu)
{

var menuid = document.getElementById(whichmenu);
//var message = menuid.getAttribute('className');

//alert(message);
menuid.setAttribute("class","showit");
menuid.setAttribute("className","showit");
}

function hideit(whichmenu)
{

var menuid = document.getElementById(whichmenu);
//var message = menuid.getAttribute("class");
//alert(message);
menuid.setAttribute("class","hideit");
menuid.setAttribute("className","hideit");
}

*/
	var path="image/work/";
	var path_end=".jpg";
	

function thumb_color(whichthumb)
{

	var thumbid = document.getElementById(whichthumb);
	var preview = document.getElementById("previewImg");
	
	thumbid.setAttribute("class","color");
	thumbid.setAttribute("className","color");

	thumbid.src = path + whichthumb + "_color" + path_end;
	preview.src = path + whichthumb + "_big" + path_end; 

}

function thumb_nocolor(whichthumb)
{
	var thumbid = document.getElementById(whichthumb);
	var preview = document.getElementById("previewImg");

	thumbid.setAttribute("class","nocolor");
	thumbid.setAttribute("className","nocolor");

	thumbid.src = path + whichthumb + path_end;
	preview.src = "image/work/preview.jpg"; 
}	

/***********/
/*
	var path1="image/work1/";

function thumb_big(whichthumb)
{

	var thumbid = document.getElementById(whichthumb);
	
	thumbid.setAttribute("class","big");
	thumbid.setAttribute("className","big");

	thumbid.src = path1 + whichthumb + "_big" + path_end;
}

function thumb_small(whichthumb)
{
	var thumbid = document.getElementById(whichthumb);

	thumbid.setAttribute("class","small");
	thumbid.setAttribute("className","small");

	thumbid.src = path1 + whichthumb + path_end;
}	

*/