var sCCGoto;

function loady(ccGoto) {
	sCCGoto = ccGoto;
	try {
		initScroll();
	} catch (e) {
	}
}

function showRest(spnDots) {
	spnDots.style.display='none';
	spnRest = spnDots.nextSibling;
	spnLess = spnRest.nextSibling;
	spnRest.style.display='inline';
	spnLess.style.display='inline';
}

function showLess(spnLess) {
	spnLess.style.display='none';
	spnRest = spnLess.previousSibling;
	spnDots = spnRest.previousSibling;
	spnRest.style.display='none';
	spnDots.style.display='inline';
}

function canImgFade(imgCan, nCan) {
	setTimeout('canImgFadeReal(\'' + imgCan.getAttribute('id') + '\',' + nCan + ')', 200);
}

function canImgFadeReal(imgId, nCan) {
	chk = document.getElementById('can_' + nCan);
	img = document.getElementById(imgId);
	/*alert(img.tagName);
	alert(img.filters.item("DXImageTransform.Microsoft.Alpha"));*/
	if(chk.checked) {
		img.style.opacity='.6';
		try {
			img.filters.item("DXImageTransform.Microsoft.Alpha").Opacity=60;
		} catch(e) {}
	} else {
		img.style.opacity='1';
		try {
			img.filters.item("DXImageTransform.Microsoft.Alpha").Opacity=100;
		} catch(e) {}
	}
}	