// JavaScript Document
function loadMotiv(id)
{
	document.getElementById("sh").src = "images/shop/"+id+".jpg";
}
var pos = 0;
var step = 96;
function showColors()
{
	document.getElementById('color').style.position = 'absolute';
	document.getElementById('color').style.top = '565px';
	document.getElementById('color').style.left = (400 - step*pos)+'px';
	document.getElementById('color').style.clip = 'rect(0px,'+(570+step*pos)+'px, 153px, '+(step*pos)+'px)';
}
function left()
{
	pos--;
	if(pos <= 0)
		pos = 0;
}
function right()
{
	pos++;
	if(pos>=7)
	pos=7;
}
