$(function () {
	
	/* COLORBOX */
	$("a[rel='cbox']").colorbox();
	
	/* ALERTAS */
	$('.message').hide().append('<span class="close" title="fechar"></span>').fadeIn('slow');
	$('.message .close').hover(
		function() { $(this).addClass('hover'); },
		function() { $(this).removeClass('hover'); }
	);
		
	$('.message .close').click(function() {
		$(this).parent().fadeOut('slow', function() { $(this).remove(); });
	});
	
});
