// JavaScript Document
(function($) {

// carousel
	$(document).ready(function($) {
		$(".default .jCarouselLite").jCarouselLite({
			btnNext: ".default .next",
			btnPrev: ".default .prev",
			speed: 1600,
	        visible: 3,
			start: 0,
			scroll: 3
		});
	});
// end carousel

// png fix
	$(document).ready(function(){ 
		$(document).pngFix(); 
	}); 
// end png fix

// header slideshow
	$(document).ready(function(){ 
		$('#my_gallery').innerfade({
			speed: 'slow',
			timeout: '7000',
			type: 'sequence',
			containerheight: '1024px'
		}); 
	});
// end header slideshow

// form
	$(function() {
		if ($('#contact_us_form').length > 0) {
			$('#contact_us_form').validate({
				submitHandler: function(form){
					$('#email_sent').hide();
					$('#ajax_loader').show();
					$(form).ajaxSubmit(function(response){
						$('#ajax_loader').hide();
						$('#email_sent').show();
						$('#contact_us_form').get(0).reset();
					});
				},
				rules: {
					'first_name': 'required',
					'email-address': 'required'
				}
			});
		}
	});
// end form

})(jQuery); 

