$(document).ready(function(){
	$('#testimons').innerfade({
		animationtype: 'fade',
		speed: 1500,
		timeout: 13000,
		type: 'sequence',
		containerheight: '250px'
	});

	$('.launchvid').click(function(){
		$(this).fadeOut(function(){
			$('#flvid').fadeIn();	
		});
	});

	$('input.text, textarea').click().focus(function() {
		$('#result').fadeOut(function(){
			$('#enter').fadeIn();
		});
	});
	
	$('#qcontact').submit(function() {
		$.post('_php/qcontact.php', { 'name': $('#name').val(), 'email': $('#email').val(), 'message': $('#message').val(), 'sendit': 'go' }, function(data) {
			$('#result').html(data);
			$('#enter').fadeOut(function(){
				$('#result').fadeIn();
			});
		});
		return false;	
	});
	$('#scontact').submit(function() {
		$.post('_php/qcontact.php', { 'name': $('#name').val(), 'email': $('#email').val(), 'message': $('#message').val(), 'phone': $('#phone').val(), 'sendit': 'go' }, function(data) {
			$('#result').html(data);
			$('#enter').fadeOut(function(){
				$('#result').fadeIn();
			});
		});
		return false;	
	});
	
});