$(function() {
	$('#intro').css({ "display" : "block" });
    $('#intro').append("<img src='img/intro-logo.jpg' id='logo' />");
    $('#logo').animate({ "left" : "42%"}, 2000);
    $('#intro').animate({ "opacity" : "1"}, 1500);
    $('#intro').animate({ "opacity" : ".0"}, 3000);
    $('#intro').hide("slow");
});

$(function() {
    $('#submit').click(function () {
    	$('#contentcenter').append('<img src="img/ajax-loader.gif" alt="Loading" id="loader" />');
    	
    		var nimi = $('#nimi').val();
    		var yritys = $('#yritys').val();
    		var puhelin = $('#puhelin').val();
    		var email = $('#email').val();
    		var viesti = $('#viesti').val();
    		
    		$.ajax({
    			url: 'formmailer.php',
    			type: 'POST',
    			data:	'nimi=' + nimi + 
    					'&yritys=' + yritys + 
    					'&puhelin=' + puhelin + 
    					'&email=' + email + 
    					'&viesti=' + viesti,
    					
    			success: function(result) {
    				$('#response').remove();
    				$('#contentcenter').append(result);
    				$('#loader').fadeOut(500, function() {
    				$(this).remove();
    				});
    			}
    		});
    			    		
    		return false;
    });
});
