jQuery(document).ready(function($) {
	$("#commentform").submit(function(){
			var autor = $("#author").attr("value");
			var mail = $("#email").attr("value");
			var mesaj = $("#comment").attr("value");
			if( autor == '' || autor == 'Your Name (required)' )
				{
					alert('Please enter your name.');
					return false;
				}
			if( mail == '' || mail =='Email Address (required)' )
				{
					alert('Please enter your email adress.');
					return false;
				}
			if( mesaj == '' || mesaj == 'Your message...' )
				{
					alert('Please enter your message.');
					return false;
				}

		});
		
		$("#pliculet").click(function(){
				$("#zona_de_trimis_recomandare").removeClass("ascuns");
			
			});
		$("#inchide").click(function(){
				$("#zona_de_trimis_recomandare").addClass("ascuns");
				$("#catre").attr("value","");
				$("#de_la").attr("value","");
				$("#subiect").attr("value","");
				$("#mesaj").attr("value","");
				$("#titlu_informativ").attr("value","Recomand this product to a friend");
			});
			
		$("#trimite_recomandare").click(function(){
			var expeditor = $("#de_la").attr("value");
			var destinatar = $("#catre").attr("value");
			var mesaj = $("#mesaj").attr("value");
			var subiect = $("#subiect").attr("value");
			if(destinatar == '') 
				{
					alert("Please provide the reciver's email adress.");
					return false;
				}
			if(expeditor == '') 
				{
					alert('Please provide your email adress.');
					return false;
				}
			if(subiect == '') 
				{
					alert("Please specify the message's subject");
					return false;
				}

			if(mesaj == '') 
				{
					alert('Please enter your message.');
					return false;
				}

			$("#titlu_informativ").html("Sending message please wait...");
			$.ajax({
							type: "POST",
							data: "action=trimite_mesaj&expeditor=" + expeditor + "&destinatar=" + destinatar + "&mesaj=" + mesaj + "&subiect=" + subiect,
							url: "http://" + document.domain + "/wp-admin/admin-ajax.php",
							success: function(msg)
												{
													if (msg == 1)
													$("#titlu_informativ").html("Your message was succesfully sent!");
													else 
														{
															$("#titlu_informativ").html('Recomand this product to a friend');
															alert('An error occured while trying to send your message. Please try again later');
														}
												},
							error: function(){alert('An error occured while trying to send your message. Please try again later');}

				});
			});
			
			/* Flashul de la pagina "History of hemp" ... varianta jquery */

	var coordonate_ani = new Array(160,67,-10,-86,-155,-220,-287,-350,-412,-480,-540,-605,-670,-735,-800,-875,-945,-1015,-1100,-1169,-1250,-1322,-1410,-1510,160);
	var coordonate_informatii = new Array(25);
	coordonate_informatii[0] = -28;
	coordonate_informatii[1] =-990;
	for (var i = 2; i< 24; i++) coordonate_informatii[i] = coordonate_informatii[i-1] - 940;
	coordonate_informatii[24] = 30;
	$(".buton_de_rulare").click(function(){
		var limita_stanga = coordonate_ani[parseInt($(this).attr("id").substring(7))];
		var limita_stanga2 = coordonate_informatii[parseInt($(this).attr("id").substring(7))];
		
		$("#ani_rulanti").animate({"left" : limita_stanga + "px"},500);
		$("#banda_rulanta ul").animate({"left" : limita_stanga2 + "px"},500);
		});
	var jokes = new Array(3);
	jokes[0] = '"You are what you eat" is true for hemp. EFAs are a vital part of our cell membranes, brain and eyes---hemp seed oil contains the ideal ratio between omega 3&6 for the human body.The globulin found in human blood plasma is edestin---about 65% of the hemp protein  is edestin.';
	jokes[1] = 'We are the first hemp oil producer using packaging made of violet glass. Violet glass works like a natural filter. It blocks the complete spectrum of visible light with the exception of UV-A and infra red light offering optimal protection against the aging processes that are caused by visible light, thus lengthening freshness and energy level of our sensitive hemp seed oil.';
	jokes[2] = 'Canah is lovemark, whose story began with a great passion for this miracle plant.  Hemp oil, protein powder and hulled seeds are more than just high quality products in premium packaging with significant benefits for our health. Hemp foods are the alternative for a natural, balanced lifestyle full of positive energy and good health.';
	var continut_vechi;
	$(".joke").hover(
	function()
		{
			continut_vechi = $(this).html();
			$(this).html(jokes[$(this).attr("id").substring(4)]);
			$(this).css({"height" : "auto","z-index" : "5"});
			$(this).parent().css({"height" : "auto"});
		}
	,function()
		{
			$(this).html(continut_vechi);
			$(this).css({"height" : "auto"});
			$(this).parent().css({"height" : "119px"});
		}
					);	
});
