$(document).ready(function() {
	$(".tabelHover tr").mouseover(function() { $(this).addClass('hover'); });
	$(".tabelHover tr").mouseout(function() { $(this).removeClass('hover'); });
	$(".tabelHover tr").click(function() { 
		link = $("a.linkRow", this).attr('href');
		if(link) document.location = link;
	});

	$(".lanseaza select[@name=id_categorie]").change(function() {
		$("#specifice").html("<br/><br/><center><img src=\"/img/ajax-loader.gif\"/></center>");
		$("#specifice").load("/cerere_de_oferta_detalii.obj?id_categorie=" + $(this).attr("value"), {}, function() { $(".in", this).hide(); $(".in", this).fadeIn(); });
	});

	//asta in alt fisier
	$(".register input[@name=furnizor], .contulMeu input[@name=furnizor]").click(function() {
		if($(this).attr("checked")) {
			$("input[@name=companie_nume], input[@name=companie_cui], input[@name=companie_regcom], input[@name=companie_telefon], textarea[@name=adresa], input[@name=oras], input[@name=judet], input[@name=companie_iban], input[@name=companie_banca]").each(function() {
				$(this).parent().addClass("req");
				$("label",$(this).parent()).append("<font style=\"color: red; font-weight: bold;\">*</font>");
			});
		} else {
			$("input[@name=companie_nume], input[@name=companie_cui], input[@name=companie_regcom], input[@name=companie_telefon], textarea[@name=adresa], input[@name=oras], input[@name=judet], input[@name=companie_iban], input[@name=companie_banca]").each(function() {
				$(this).parent().removeClass("req");
				$(this).parent().removeClass("err");
				$("label font",$(this).parent()).remove();
			});
		}
	});

	$(".linkDate").click(function() {
		$("#dateContact").load("/cerere_de_oferta/dateContact.act?id=" + $(this).attr("id").substring(4), {}, {});
		return false;
	});

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