$(document).ready(function () {
	
		$("#quan_up").click(function () { $("#quan_box").val(parseInt($("#quan_box").val())+1); });
		$("#quan_down").click(function () 
			{
				currentValue = parseInt($("#quan_box").val());
				if(currentValue > 1) { newValue = currentValue-1; }
				$("#quan_box").val(newValue); 
			});
		$("form").submit(function () {
			$("#quan_box").removeAttr("disabled");
		
		});

        $('#xenoWaterrowerSample').click(function() {
            $('#xenoWaterrowerVideo').fadeIn(500);
        });
        $("#xenoWaterrowerVideoClose").click(function () {
            $("#xenoWaterrowerVideo").fadeOut(500);
        });
	});
