$(document).ready(function() {
	$("#qty-up").click( function() { 
		if ( isNaN($("#input-qty").val()) ) {
			$("#input-qty").val(min_qty);	
		}else{
			$("#input-qty").val(1 * $("#input-qty").val() + 1);
		}
		return false;
	});
	$("#qty-down").click( function() { 
		if ( isNaN($("#input-qty").val()) ) {
			$("#input-qty").val(min_qty);	
		}else if ( $("#input-qty").val() == min_qty ){
			alert("You can order more (not less) than the quantity listed.");
		}else{
			$("#input-qty").val(1 * $("#input-qty").val() - 1);
		}
		return false;
	});
});