// JavaScript Document

$(document).ready(function(){
						   
	//pt contact
	
	$("#butcont").click(function(){
								 
		var nume = $("input#nume").val();
		var varsta = $("input#varsta").val();
		var oras = $("input#oras").val();
		var telefon = $("input#telefon").val();
		var email = $("input#email").val();
		var mesaj = $("textarea#mesaj").val();
		var actiune = $("input#actiune").val();
		
		$(this).hide();
		$("#error").html("&nbsp;");
		$("#trimitere").show();
							
		$.post('includes/contact-prel.php', {num:nume,vars:varsta,ora:oras,tel:telefon,mail:email,mes:mesaj,act:actiune}, function(err){
			if(err=="ok"){
				$("#contact-form").delay(1000, function(){
					$("#contact-form").hide().fadeIn("slow").html('<p class="cul-red"><strong>Mesajul dumneavoastră a fost recepţionat cu succes.<br />Vă mulţumim!</strong></p>');
					setTimeout('window.location=window.location', 7000);
				})
			}
			else{
				$("#trimitere").delay(1000, function(){
					$("#trimitere").hide();
					$("#butcont").show();
					$("#error").hide().fadeIn("slow").html(err);
				})
			}
		});
  
	});
	
	if($("#cont-right").height() < $("#cont-left").height()) $("#cont-right").height($("#cont-left").height());
	if($("#cont-right").height() < $("#cont-home").height()) $("#cont-right").height($("#cont-home").height());
	
	$('a#butpar').fancybox({
		'frameWidth' : 595,
		'frameHeight' : 486,
		'padding' : 0,
		'hideOnContentClick': false
	});
	 
});
