$(function() {
	dropNav();
	if(window.location.href.indexOf('?sucess') != -1) {
		alert('Thank you for your inquiry. Someone will contact you soon.');
	}
	validateForm();
});

function dropNav() {
	$("li.drop").hover(
    function(){ $("ul", this).stop(true, true).slideDown('fast'); }, 
    function(){ $("ul", this).slideUp("fast"); } 
  );
}
function validateForm() {
  if($('#mega-form').length > 0) {
    $('#mega-form').validate();
  }
}

