add_js('/pages/signup/jquery.maskedinput-1.2.2.min.js');

$(document).ready(function() {
	$("#phone").mask("(999) 999-9999");
	
	$('input.inputText,input.inputPassword').focus(function() {
		$(this).addClass("focus");
	}).blur(function() {
		$(this).removeClass("focus");
	});
	
	$('#subject').change(function() {
		var selected = $('#subject option:selected').val();
		if (selected == 'other') $('#other_subject').show().focus();
		else $('#other_subject').hide().val('');
	});
	
	$('.inputSubmit input').click(function() {
		$(".inputSubmit img").show();
		save_web_request_form('feedbackForm','ct_feedback','',function(req) {
			$(".inputSubmit img").hide();
			var response = req.responseText;
			if (response.indexOf('<!--saved-->')==0 ) {
				var needle = '<!--ide=';
				var start = response.indexOf(needle) + needle.length;
				var end = response.indexOf('-->',start);
				var ide = response.substring(start,end);
				location.href = '/feedback/thank-you/';
			}
			else {
				$.scrollTo('div#div#message',{duration: 1500, onAfter: function(){
					$("div#message").html(response).slideDown('slow');
				}});
			}
		});
	});
});