$(document).ready(function() {
	$('li.show-drop-down').hover(function() {
		$('ul.drop-down', this).css('display', 'block');
		$('span#dropDownImageInactive').css('display', 'none');
	}, function() {
		$('ul.drop-down', this).css('display', 'none');
		$('span#dropDownImageInactive').css('display', 'block');		
	});
	
	$('form.validate').submit(function() {
		if($("input[name='email']", this).size() > 0 && $("input[name='emailConfirm']", this).size() > 0) {
			if($("input[name='email']", this).val() != $("input[name='emailConfirm']", this).val()
				|| $("input[name='email']", this).val().length == 0 || $("input[name='emailConfirm']", this).val().length == 0) {
				alert('Both email addresses must be provided, and must match.');
				return false;
			}
		}
		allowSubmit = true;
		$.ajax({
			async: false,
			type: 'post',
			url: $(this).attr('rel'),
			data: $(this).serialize(),
			success: function(data) {
				if(data.indexOf('true') == -1) {
					alert('Fields marked with * are required.\nPlease ensure that they are entered in the proper format.');
					allowSubmit = false;
				}
			}
		});
		return allowSubmit;
	});
	
});
