$(document).ready(function() {

	// $("#more_images").jqm();
	// 
	// $("#modal_other_images td").click(function(){
	// 	var content = $(this).html();
	// 	$("#modal_main_image").html(content);
	// });
	
	$("#more_images a").lightBox({
		fixedNavigation:true,
		imageLoading: '/images/misc/lightbox-ico-loading.gif',
		imageBtnClose: '/images/misc/lightbox-btn-close.gif',
		imageBtnPrev: '/images/misc/lightbox-btn-prev.gif',
		imageBtnNext: '/images/misc/lightbox-btn-next.gif'
	});
	
	$(".lightbox_trigger").click(function() {
		$("#more_images a:first").click();
	});


	$("#variation_selector").change(function() {
		var var_id = $(this).val();
		$("#detail_image").attr("src", $("#" + "variation_" + var_id + "_detail_image_source").attr("href"));
		$("#product_price").html($("#" + "variation_" + var_id + "_price").html());
		$("#variation_description").html($("#" + "variation_" + var_id + "_description").html());
		if(var_id != 0) {
			$("#product_cart_control").html($("#" + "variation_" + var_id + "_cart_control").html()).show();
		} else {
			$("#product_cart_control").hide();
		}
	});

	$("#show_learn_more").click(function() {
		$("#hide_learn_more").show();
		$("#learn_more_content").slideDown();
		$("#show_learn_more").hide();
	});
	
	$("#hide_learn_more").click(function() {
		$("#hide_learn_more").hide();
		$("#learn_more_content").hide();
		$("#show_learn_more").show();
	});

});
