// Notification Animations
$(document).ready(function(){ 
	/*
	$('.notification').each(function(){
		$(this).append('<span class="close" title="Fechar"></span>').fadeIn('slow');
	});
	*/
	$('.notification').hide().prepend('<span class="close"></span>').fadeIn('slow');
	$('.notification .close').hover(
		function() { $(this).addClass('hover'); },
		function() { $(this).removeClass('hover'); }
	);
	$('.notification .close').click(function() {
		$(this).parent().fadeOut('slow', function() { 
			$(this).remove();
		});
	});


	
});
