$(document).ready(function(){
	$(".wsub").click(function(){
		$("#lt_menu div:visible").slideUp("fast");
		if (!$(this).hasClass("o")) {
			$(".wsub.o").removeClass("o");
			$(this).next("div").slideDown("fast");
			$(this).addClass("o");
		} else {
			$(".wsub.o").removeClass("o");
		}
		return false
	});
	$("#btn_update").click(function(){
		document.getElementById("cartForm").submit();
		return false
	});
	$("#btn_order").click(function(){
		window.location.href = 'order.html';
	});
	$(".ntc").click(function(){
		var href = $(this).attr("href");
		var url = href+'_';
		var c = $(this).parent().parent().find(".sel").length;
		for (var i = 0; i < c; i++) {
			var v = $(this).parent().parent().find(".sel:eq("+i+")").val();
			url += '.'+v;
		}
		window.location.href = url;
		return false
	});
	$('#gallery a').lightBox();
});
