//doc ready
$(document).ready(function() {
	//homepage slideshow
	$('#slideshowBig').cycle({
		fx:    'fade',
		speed:  1000,
		timeout:  9000,
		pause:  1,
		pager: '#c1'
 	});

	//homepage slideshow
	$('#slideshowSmall').cycle({
		fx:    'fade',
		speed:  1000,
		timeout:  15000,
		pause:  1,
		pager: '#c2'
 	});


	//homepage slideshow
	$('#slideshowText').cycle({
		fx:    'fade',
		speed:  1000,
		timeout:  15000,
		pause:  1,
		pager: '#c3'
 	});
	
	//leftside sub page quotes
	$('#quoteText').cycle({
		fx:    'fade',
		speed:  1000,
		timeout:  15000,
		pause:  1,
		pager: '#c4'
 	});
	
	//leftside sub page testimonials
	$('#testiText').cycle({
		fx:    'fade',
		speed:  1000,
		timeout:  15000,
		pause:  1,
		pager: '#c5'
 	});
	
	// form validation - visual application
	$("#contactForm").validate({
		rules: {
		name: "required",
		state: "required",
		email: {
					required: true,
					email: true
				},
		phone: "required",
		zip: {
					minlength: 5
				},
		comments: "required"
		},
		messages: {
		name: "Please enter your name.",
		phone: "Please enter your phone number.",
		email: "Please enter your email address.",
		comments: "Please enter your comments."
		}
	});
});//doc ready
