$(document).ready(function(){
	$('.last').click(function(){									   
		$('html, body').animate({
		scrollTop: $(".formular").offset().top
		}, 2000);										   
	});
	$("#formID").validationEngine({
		ajaxSubmit: true,
		ajaxSubmitFile: "bin/ajaxSubmit.php",
		ajaxSubmitMessage: "Message Sent! / Mensaje Enviado!",
		success :  false,
		failure : function() {}
	});	
});
$(function(){
	$('#slides').slides({
		preload: true,
		play: 7000,
		pause: 4000,
		hoverPause: true,
		animationStart: function(current){
			$('.caption').animate({
				bottom:-35
			},100);
		},
		animationComplete: function(current){
			$('.caption').animate({
				bottom:0
			},200);
		},
		slidesLoaded: function() {
			$('.caption').animate({
				bottom:0
			},200);
		}
	});
});
