
// preloader products
window.addEvent('domready', function() {

	var p = new Preloader();
	$$('#content .mugCell .image img').each(function(img) {

		p.addEventOnLoad(img.src, function() {
			img.getParent().getParent().setStyle('background', 'none');
			//img.setStyle('opacity', 0)
			//img.style.display = 'block';
			img.tween('opacity', '1');
			//img.effect('opacity').start(0,1);
		});
		p.addToQueue(img.src);
	});
 
});


// functions order form
window.addEvent('domready', function() {

	if ($("kontakt_product") != null) {
		switchSeries($("kontakt_series").getSelected().get('value'));
	}
 
});


function switchSeries(val) {
	
	if (val != "") {
		//$("kontakt_product").innerHTML = $("kontakt_product_"+val).innerHTML;
		$("kontakt_product").set('html', $("kontakt_product_"+val).get('html'));
		$("kontakt_product").removeProperty('disabled');
	} else {
		$("kontakt_product").selectedIndex = 0
		$("kontakt_product").set('disabled', 'disabled');
		//$("kontakt_volume").selectedIndex = 0
		//$("kontakt_volume").set('disabled', 'disabled');
	}
}

/*
function switchProduct(val) {
	if (val != "") {
		$("kontakt_volume").removeProperty('disabled');
	} else {
		$("kontakt_volume").selectedIndex = 0
		$("kontakt_volume").set('disabled', 'disabled');
	}
}
*/
