$(document).ready(function() {
	setTimeout(periodicalClindOeil, 1500);
	$("#credito").mouseover(clindOeil);
});

function periodicalClindOeil() {
	clindOeil();
	setTimeout(periodicalClindOeil, 10000);
}

function clindOeil() {
	if ($('#oeil').css('opacity') > 0.9) {
		$('#oeil').css('opacity', 1).stop().fadeOut(500, function() {
			$('#oeil').fadeIn(400); // callback, quand il a fini le fadeOut
		});
	}
}