$(document).ready(function(){
	var selObjs = $("td.item-options tr.options select");
	var inpObjs = $("td.item-options tr.options input");
	$(".order-button").click(function(e){
		var selnum = 0;
		// selects
		selObjs.each(function(){
			var ind = $(this).children("option").index($(this).children("option:selected"));
			if(ind<1){
				if($(this).siblings("div").length==0){
					$(this).after($("<div class='required'>").text("* Required"));
				}
				selnum += 1;
			}
		});
		// inputs
		inpObjs.each(function(){
			var inpval = $(this).val();
			if(inpval==""){
				if($(this).siblings("div").length==0){
					$(this).after($("<div class='required'>").text("* Required"));
				}
				selnum += 1;
			}	
		});
		if(selnum>0){
			e.preventDefault();	
		}
	});
	// selects
	selObjs.change(function(){
		var ind = $(this).children("option").index($(this).children("option:selected"));
		if(ind>0){
			$(this).siblings("div").eq(0).replaceWith("");	
		}
	});
	// inputs
	inpObjs.change(function(){
		var inpval = $(this).val();
		if(inpval!=""){
			$(this).siblings("div").eq(0).replaceWith("");	
		}
	});
});
