$(function(){
		
		
	// :first selector is optional if you have only one tabs on the page
	$("ul.css-tabs:first").tabs("div.css-panes:first > div.pane").history();

	$('#change-form')
	   .validate({
         submitHandler: function(form) {
           $(form).ajaxSubmit({
                success: function() {
                    $('#change-form').hide();
                    $('#page-wrap').append("<p class='thanks'>Thanks! Your request has been sent.</p>")
                }
           });
         }
        }); 
        
});
