$(document).ready(function() {
	//This calculates which is taller - the main content area or the sidebar
	//The lowest of the two becomes the height of the other. 
	//This ensures the seperating border spans full height.
	var mainHeight = $("#mainColumn").height();
	var sideBarHeight = $("#sideBar").height();
	var newHeight = Math.max(mainHeight,sideBarHeight);
//$("#mainColumn, #sideBar").height(newHeight);
	
	//Form validation
	if($("#contactUs").length) {
		$("#contactUs").validationEngine();
	}

	if($("#sign_up").length) {
		$("#sign_up").validationEngine();
	}

});

