$(document).ready(function(){
	
	$('.msgok').each(coolReveal);
	$('.msgerror').each(coolReveal);
	
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});	
	
});

function coolReveal()
{
	$(this).hide();
	$(this).slideDown('slow'); 
}



