
$(function(){ 
	// find all the input elements with title attributes
	$('input[title!=""]').hint();
	$('textarea[title!=""]').hint();
});


$(document).ready(function() {			
	
	$(".output").hide();
	//$(".form").hide();
	
	$('#contactButton').toggle(//spacer.gif
		function(){
			
			$('.form').fadeIn();
			
		},
		function(){
			$('.form').fadeOut();

		}
	);
    
    var options = { 
        target: '#output, contact/process.php',
		success:   showResponse,
		dataType:  'script',
		type:      'post' 
    };  
    
    $("#formIdOne").validate({
  		submitHandler: function(form) {
    		$("#formIdOne").ajaxSubmit(options); 
    		return false;
   		}
	});
});


function showResponse(responseText, statusText, xhr, $form){
	$('#formIdOne').hide();
	$(".output").fadeIn();
 	//$(".output").append('status: ' + statusText + '<br /><br /> \n' + responseText + ' Thank You! ');
 	$(".output").append('Thank You!');
 	setTimeout('$(".form").show("slow");$(".form").fadeOut("slow")', 3000);
 	//$("#formIdOne").show();
			//$(".output").hide();
}


