﻿$(function() {
	$('ul.sf-menu').supersubs({ 
            minWidth:    11,   // minimum width of sub-menus in em units 
            maxWidth:    27,   // maximum width of sub-menus in em units
            extraWidth: 1
        }).superfish({ delay: 0, speed: 'normal', autoArrows: false, dropShadows: false, animation: { opacity: 'show', height: 'show' }, easing: 'easeOutBack' });

	$("#contactform").validate({
		submitHandler: function() {
			var Details = {};
			Details['interests'] = '';

			$('input:text').each(function() { Details[this.id] = this.value; });
			$('input:checkbox:checked').each(function() { Details['interests'] += this.value + ', '; });
			$('textarea').each(function() { Details[this.id] = this.value; });

			var DTO = { 'details': Details };
	
			$.ajax({
				type: "POST",
				contentType: "application/json; charset=utf-8",
				url: "Services.asmx/RegisterContact",
				data: JSON.stringify(DTO),
				dataType: "json",
				success: function() {
					$("#contactform").replaceWith("<p class=\"contacttitle\"><br />Thank you for contacting <img src=\"images/logo_body.png\" alt=\"logo\" width=\"52\" height=\"15\" />.<br />One of our consultants will contact you as soon as possible.</p>"); }
			});
		}
    });
});
