function setProductInfo(intProductID) {
    setThmbsOff(intProductID);
	jQuery('#thmb'+intProductID).attr('src', 'img/thmbhilight.gif');
    jQuery('#productImg').attr('src', 'img/vis'+intProductID+'.jpg');
    jQuery('#descr').html(aHints[intProductID][0]);
	jQuery('#material').html(aHints[intProductID][1]);
	jQuery('#architect').html(aHints[intProductID][2]);
	jQuery('#photographer').html(aHints[intProductID][3]);
}

function setThmbsOff(intProductID) {
    var intProductIDTMP = intProductID.substr(0, 2);
	for (i=1;i<17;i++) {
		iTmp = i+'';
		if (iTmp.length == 1) {
			iTmp = '0'+i;
		}
    	jQuery('#thmb'+intProductIDTMP+iTmp).attr('src', 'img/s.gif');
	}
}

function setThmbs(intThmbs) {
	if (intThmbs == 1) {
		jQuery('#thmbs01').show();
		jQuery('#thmbs02').hide();
	} else {
        jQuery('#thmbs01').hide();
		jQuery('#thmbs02').show();
	}
}
