function fadeIt(id) 	{
var elem = document.getElementById(id); 
if (id == "prod_wie") {
elem.style.background = 'url(wie1.png)';
	}
else if(id == "prod_rob") {
elem.style.background = 'url(rob1.png)';
	}
else if(id == "prod_part") {
elem.style.background = 'url(part1.png)';
	}
else if(id == "prod_stand") {
elem.style.background = 'url(stand1.png)';
	}
else if(id == "prod_laser") {
elem.style.background = 'url(laser1.png)';
	}
else if(id == "prod_dep") {
elem.style.background = 'url(dep1.png)';
	}
}

function showIt(id) 	{
var elem = document.getElementById(id); 
if (id == "prod_wie") {
elem.style.background = 'url(wie.png)';
	}
else if(id == "prod_rob") {
elem.style.background = 'url(rob.png)';
	}
else if(id == "prod_part") {
elem.style.background = 'url(part.png)';
	}
else if(id == "prod_stand") {
elem.style.background = 'url(stand.png)';
	}
else if(id == "prod_laser") {
elem.style.background = 'url(laser.png)';
	}
else if(id == "prod_dep") {
elem.style.background = 'url(dep.png)';
	}
}