$(document).ready(function() {
	/*
	$(".divSolicita .solicita").click(function() {
		$("#formComanda", $(this).parent()).toggle("slow");
		return false;
	});
	*/

	$(".butSolicita").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("/solicita_informatii/" + $(this).attr("id").substring(3), {}, function() {	
			jqv();
			$("form", $(this)).hide();
			$("form", $(this)).toggle('slow');
		});
		return false;
	});

	$(".comenteaza").click(function() {
		$("#formComentariu").toggle("slow");
		return false;
	});
});
