Ok thank you very much. I edited the code, which i paste below so other people can locate it easily too, if they want
// HIDE FLASH MESSAGES AUTOMATICALLY
window.setTimeout(function(){
$('.flash-wrap .flashmessage:not(.js)').css('opacity', 1).css('margin-top', '0px').css('margin-bottom', '0px').animate( { opacity: 0, marginTop:'30px', marginBottom:'-30px'}, 300);
window.setTimeout(function() {
$('.flash-wrap .flashmessage:not(.js)').remove();
}, 300);
}, 10000);
I edited the 10000 miliseconds...
(i think thats is right, right?)