function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	equalHeight($(".equal"));
	equalHeight($(".bottomBox"));
});
$(document).ready(function(){
	$("#contactForm").validate();
});

$(function(){
	$('div.active').wrap('<div class="outer"></div>');
	$("div.active").corner("round 5px cc:#999 bl tl").parent().css('padding', '1px 0 1px 1px').corner("round 6px cc:#c8e6ea bl tl");
});
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-6692169-1");
pageTracker._trackPageview();
} catch(err) {}