window.addEvent('domready', function() {	
	if($('Inquiry')){
		new FormValidator.Tips($('Inquiry'), {
			pointyTipOptions: {point: 'down'},
			scrollToErrorsOnSubmit: false,
			onFormValidate: function(passed, myform, event) {
				//if (passed) alert('Nice job!');
				event.preventDefault();
				if(passed){			
					SendInquiry();
				}
			}
		});
	}
});

function SendInquiry(){
	$('Inquiry').set('send',{		
		useSpinner: true,
		spinnerTarget: 'Request',
		onSuccess: function(txt) {
			var Message = 'Thank you. We have received your inquiry and will follow-up with you as necessary.  If you need immediate assistance, please call 1-800-BUY-TUFF (289-8833) to speak with a representative at your nearest TUFF SHED location.';
			/* var Messenger = new StickyWin({
			  draggable: true,
			  content: StickyWin.ui('TUFF SHED ' + txt + ' Inquiry', Message, {
				width: '600px',
				height: '400px',
				cornerHandle: false				
			  })
			}); */
			alert(Message);
		},
		onFailure: function() {
			alert('Error sending request, please try again!');
		}
	});
	
	$('Inquiry').send();
};



