$(document).ready(function() { 

// TESTIMONIAL SCROLL JQUERY READY
		$('#testimonials').cycle({ 
    		fx: 'scrollUp', 
    		timeout: 5000, 
    		delay:  -200 });


// FORM JQUERY READY

var moreinfo = { target: '#infoAlert' }; 
$('#infoForm').ajaxForm(moreinfo);

var contact = { target: '#contactAlert' }; 
$('#contactForm').ajaxForm(contact);

var tour = { target: '#tourAlert' }; 
$('#tourForm').ajaxForm(tour);

var comments = { target: '#commentsAlert' }; 
$('#commentsForm').ajaxForm(comments);

}); 