$(document).ready(function() {
	$("#comanda, #comanda2").click(function() {
		$("#formComanda").toggle("slow");
		return false;
	});

	$(".butComanda").click(function() {
		$(".formComanda").html("");
		$(".formComanda", $(this).parent().parent()).html("<div style=\"text-align: center; clear: both; padding-top: 20px;\"><img src=\"/layout/standard/images/ajax-loader2.gif\"/></div>");
		$(".formComanda", $(this).parent().parent()).load("/comanda_produs/" + $(this).attr("id").substring(3), {}, function() {	
			jqv();
			$("form", $(this)).hide();
			$("form", $(this)).toggle('slow');
			$(".navProd li").removeClass("hover");
			$(this).parent().addClass("hover"); 
		});
		return false;
	});

	$(".butAdauga").click(function() {
		$("#formAdauga").toggle("slow");
		return false;
	});
});

function formfocus() {
  document.getElementById('qid').focus();
}
window.onload = formfocus;
