$(document).ready(function(){

	// r u human feature
	$('.contactform').validate({
	  rules: {
		ruhuman: {
		  required: true,
		  range: [7, 7]
		}
	  }
	});
	
	
	// copy shipping values to billing fields 
	$("input#same").click(function(){
		if ($("input#same").is(':checked'))
		{
			// Checked, copy values
			$("input#BillingAddress").val($("input#ShippingAddress").val());
			$("input#BillingCity").val($("input#ShippingCity").val());
			$("input#BillingState").val($("input#ShippingState").val());
			$("input#BillingZip").val($("input#ShippingZip").val());
		}
		else
		{
			// Clear on uncheck
			$("input#BillingAddress").val("");
			$("input#BillingCity").val("");
			$("input#BillingState").val("");
			$("input#BillingZip").val("");
		}
	});
	
	// fancybox: settings for video (iframe)
	$(".iframe").fancybox({ 
    'padding'			: 0,
    'transitionIn'		: 'fade',
    'transitionOut'		: 'fade',
    'speedIn'			: 400, 
    'speedOut'			: 400, 
    'width'				: 640,
    'height'			: 360
    });
	
	// home page slide show (testimonials)
	
	$('#slideshow').cycle({
		fx				: 'fade',	 	// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		pause			: 1,			//pauses the slideshow when the cursor is over the slide
		timeout			: 5000,
		random			: 1
	});
    
});

<!-- show hide div functions
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
//-->
