function initcontact(){
	
	$('.firstNews').hover(
	
		function() {
		
			$(this).children(".imgfirstNewsItem").stop(true, true).animate({"border-color": "#f06f00"}, timeOver);
			$(this).children(".textContentNewsItem").children(".titlefirstNewsItem").stop(true, true).animate({"color": "#000"}, timeOver);
			
		},
	
		function() {
		
			$(this).children(".imgfirstNewsItem").stop(true, true).animate({"border-color": "#000"}, timeOver);
			$(this).children(".textContentNewsItem").children(".titlefirstNewsItem").stop(true, true).animate({"color": "#333"}, timeOver);
			
		}
	
	);
	
	$('.featuredNewsItem').hover(
	
		function() {
		
			$(this).children(".imgfeaturedNewsItem").stop(true, true).animate({"border-color": "#f06f00"}, timeOver);
			$(this).children(".titlefeaturedNewsItem").stop(true, true).animate({"color": "#000"}, timeOver);
			
		},
	
		function() {
		
			$(this).children(".imgfeaturedNewsItem").stop(true, true).animate({"border-color": "#000"}, timeOver);
			$(this).children(".titlefeaturedNewsItem").stop(true, true).animate({"color": "#333"}, timeOver);
			
		}
	
	);

	$('.buttonT1').hover(
	
		function() {
			
			$(this).children('.img1').stop(true, true).fadeIn(timeOver);
			$(this).children('.img0').stop(true, true).fadeOut(timeOver);
			$(this).children('.textButtoT1').stop(true, true).animate({"color": "#666"}, timeOver);
			
		},
	
		function() {
			
			$(this).children('.img1').stop(true, true).fadeOut(timeOver);
			$(this).children('.img0').stop(true, true).fadeIn(timeOver);
			$(this).children('.textButtoT1').stop(true, true).animate({"color": "#fff"}, timeOver);
			
		}
	
	);
	
	$('#buttonSend').click(function(){
		
		$('#contact_form').submit();
		
	});
	
	$('#contact_form').submit(function() {
		
		$("#contact_mensagem").html("Sending Message.<br /><span>Wait...</span>");
		$("#contact_mensagem").stop(true, true).animate({"left": 55}, 500);
		$("#contact_formContainer").stop(true, true).animate({"left": 834}, 500);
		
		$.post('php/contact_mail.php', $("#contact_form").serialize(), function(data) {
			
			if(data=="false"){
				
				$("#contact_mensagem").html("Error Sending Message!<br /><span>Try Again.</span>");
				$("#contact_mensagem").stop(true, true).delay(6000).animate({"left": -500}, 500);
				$("#contact_formContainer").stop(true, true).delay(6000).animate({"left": 55}, 500);
				
			}else{
				
				$("#contact_mensagem").html("Message Sent!<br /><span>Thank You For Contact.</span>");
				document.getElementById("name").value = "";
				document.getElementById("email").value = "";
				document.getElementById("day").value = "";
				document.getElementById("month").value = "";
				document.getElementById("year").value = "";
				document.getElementById("country").value = "";
				document.getElementById("language").value = "";
				document.getElementById("subject").value = "";
				document.getElementById("message").value = "";
				$("#contact_mensagem").stop(true, true).delay(6000).animate({"left": -500}, 800);
				$("#contact_formContainer").stop(true, true).delay(6000).animate({"left": 55}, 500);
			
			}
			
		});
		
		return false;
		
	});
	
	$('#buttonClean').click(function(){
	
		document.getElementById("name").value = "";
		document.getElementById("email").value = "";
		document.getElementById("day").value = "";
		document.getElementById("month").value = "";
		document.getElementById("year").value = "";
		document.getElementById("country").value = "";
		document.getElementById("language").value = "";
		document.getElementById("subject").value = "";
		document.getElementById("message").value = "";
	
	});
	
}

function fieldFocus(obj){
	
	$(obj).parent('.contact_campo').children('.contact_label').stop(true, true).animate({"color": "#333"}, timeOver);
	
}

function fieldBlur(obj){
	
	$(obj).parent('.contact_campo').children('.contact_label').stop(true, true).animate({"color": "#aaa"}, timeOver);
	
}
