$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'50px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
	});
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});
	});
});

function verificaCampos() {
	if(document.getElementById('your-name').value == '') { 
		document.getElementById('erroName').style.display = 'block';
		var retorno = 1;
	} else {
		document.getElementById('erroName').style.display = 'none';
	}
	if(document.getElementById('your-email').value == '') { 
		document.getElementById('erroEmail').style.display = 'block';
		var retorno = 1;
	} else {
		document.getElementById('erroEmail').style.display = 'none';
	}
	if(document.getElementById('your-phone').value == '') { 
		document.getElementById('erroPhone').style.display = 'block';
		var retorno = 1;
	} else {
		document.getElementById('erroPhone').style.display = 'none';
	}
	if(document.getElementById('your-message').value == '') { 
		document.getElementById('erroMessage').style.display = 'block';
		var retorno = 1;
	} else {
		document.getElementById('erroMessage').style.display = 'none';
	}
	if(retorno == 1) {
		return false;
	}
}
