jQuery(document).ready(function(){
	setInterval('blink()', 1900);
});

function blink() {
	//alert('here');
	jQuery('.nowosc').animate({opacity: 0}, 700, function() {
		jQuery('.nowosc').animate({opacity: 1}, 700);
	});
}
