$(document).ready(function() {
	// image thumb carousel
/*	
	$('.alt-img-ctnrs').jcarousel({
		vertical: true,
		scroll: 4,
		animation: 600
	});
*/
	window.onload = function() {
		$('.wl-carousel:visible').wlCarousel({direction: 'vertical'});
	}

	$("input.radio").click(function() {
		$(this).closest("table").find("div.v-product-customizationproducts-container").hide();
		$(this).closest("tr").find("div.v-product-customizationproducts-container").show();
	});

	$("#content-container div.v-product-detailpagetemplate-productcontainer a.product-matching-accessories-show").click( function() {
		$('table.product-accessories tr.column-headers').show();
		$('table.product-accessories tbody').show();
		$('span.product-matching-accessories a.product-matching-accessories-hide').show();
		$(this).hide();
		initExpandSelects(true);
		return false;
	});
	$("#content-container div.v-product-detailpagetemplate-productcontainer a.product-matching-accessories-hide").click( function() {
		$('table.product-accessories tr.column-headers').hide();
		$('table.product-accessories tbody').hide();
		$('span.product-matching-accessories a.product-matching-accessories-show').show();
		$(this).hide();
		return false;
	});

});
