/* General Javascript Configuration */
$(document).ready(function(){


	
	
	// initalize the promo slider
	$('#promos').cycle({ 
		fx:     'scrollLeft', 
		speed:  700, 
		timeout: 7000, 
		next:   '.promo-next', 
		prev:   '.promo-prev',
		pause: 1
	});
	
	/* Testimonial Slider */
	$('#cycle').cycle({ 
		fx:     'fade', 
		speed:  500, 
		timeout: 7000, 
		next:   '.cycle-next', 
		prev:   '.cycle-prev',
		pause: 1
	});
		
	
	
	
	// gallery - lightbox plugin
	$(function() {
		$('.gallery1 a').lightBox();
		$('.gallery2 a').lightBox();
		$('.gallery3 a').lightBox();
		$('.gallery4 a').lightBox();
		$('.gallery5 a').lightBox();
		// add any additional galleries needed
		// you only have to use unique names if they're on the same page
	});
	
	
});



/* Contact Form Validation */
function validate(form)
{
	if( form.cfName.value == "" || form.cfEmail.value == "" || form.cfComments.value == "" ) 
   { 
	  document.getElementById('message').innerHTML = 'Please fill out name, email and a message.';
	  document.getElementById('message').style.display = 'block';
	  return false; 
   }
}

