$(window).load(function() {
	$('.flexslider').flexslider({
		animationDuration: 1200
	});
	$('.storyslider').flexslider({
		animationDuration: 600
	});
})

$(document).ready(function() {

	// Sticky menu bar
	$('.top').addClass('hidden');
	$.waypoints.settings.scrollThrottle = 30;
	$('#main').waypoint(function(event, direction) {
		$('.top').toggleClass('hidden', direction === "up");
	}, {
		offset: '-25%'
	}).find('#product-nav').waypoint(function(event, direction) {
		$(this).parent().toggleClass('sticky', direction === "down");
		event.stopPropagation();
	});

	// Smooth scroll
	$('ul.secondary a').smoothScroll({
		offset: -100,
		speed: 700
	});
	$('a.top').smoothScroll();

	// Validate forms
    $("#freeform").validate();

	// Show/Hide Country
	$('#state').hide();
	$('#province').hide();
	$('#countries').change(function () {
	        if ($('#countries option:selected').text() == "Canada"){
	            $('#state').hide();
	            $('#province').show();
	        } else if ($('#countries option:selected').text() == "United States"){
	            $('#province').hide();
	            $('#state').show();
	        } else {
	            $('#state').hide();
	            $('#province').hide();
	        } });

	// Masonry
	var $container = $('#container-features');
	$container.imagesLoaded(function(){
	  $container.masonry({
	    itemSelector : '.column',
		gutterWidth : 15
	  });
	});

});
