$(document).ready( function() {
	$('#partners').cycle();
	
	$('#newsletter').submit( function() {
		
		var fdata = $('#newsletter').serialize();
		$.post('addEmail.php', fdata, function (data) {
	
	            if (data.substring(0, 2) != 'OK') {
	            	alert('FEL: ' + data);            }
	            else {
	            	$('#newsletter').hide();
	            	$('#newsletterconfirm').show();
	            }
	    });
		
		return false;
	});
	
	$('DIV.image_border DIV.image').hover( function() {
		$(this).children('A.download').show('fast');
	});

	$('DIV.image_border DIV.image A.download').mouseout( function() {
		$(this).hide();
	});
	
});
