$(document).ready(function() {

	var newsImportant = $('.important');
	
	(function(){
		newsImportant
		 .animate({opacity:'0.3'}, 350)
		 .animate({opacity:'1'}, 350);
		setTimeout(arguments.callee, 350);
	})();
	
});
