$(document).ready(function() {


$("#dlLink").click( function(e){
	$(this).html('Kiitos latauksesta!');
	setTimeout(redirectToLink, 4000);
	
});

function redirectToLink() {
	var link = "http://www.netanttila.com/webapp/wcs/stores/servlet/ProductDisplay?productId=708744&storeId=1444&catalogId=1444&shopId=19652&compartmentId=20160&categoryId=20671";
	window.location = link;
}



$('#sendEkirje').click( function(e)  {
	e.preventDefault();
	if($('#recipientAddress').val() != '')
	{
		var callUrl = 'kiertuephp/ekirje_attachment.php';
		
		callUrl +=  '?rec=' + $('#recipientAddress').val();
		callUrl +=  '&kuva=' + $('#kuvaKoodi').val();
		callUrl +=  '&kiertue=' + $('#kiertueKoodi').val();
		
		
		$.ajax( { 
		url: callUrl, 
		success: function(){
			//$(this).replaceWith('<p>Kuva lähetetty!</p>');
			$('#recipientAddress').val('');
			$('#sendOk').css('opacity','0').show().animate( {opacity:1},200 );
		}
		});
	}
});

});
