/* Custom jQuery */

$(document).ready(function() {

	// Resize .content so footer bar stays at bottom of browser window
	function contentHeight() {
		var windowHeight = window.innerHeight - 220;
		var wrapHeight = $('.wrap').height() - 130;
		// console.log(windowHeight);
		// console.log(wrapHeight);
		if(windowHeight > wrapHeight) {
			$('.content').css({
				'height' : windowHeight - 5
			});
			// console.log('.content = window height');
		} else {
			$('.content').css({
				'height' : '100%'
			});
		}
	}
	$(window).resize(function() {
		contentHeight();
	});
	contentHeight();
	
	// Call calculator for Cost page
	$('#cost-form').submit(function() {
		$(this).calculator();
		return false;
	});
	
	// Call slider on every page
	// $('.imageSlider').slider();
});
