$(document).ready(function(){
	$('.widget .nicetable tbody tr:odd').addClass('altrow');
	
	$('.msgGood:visible').each(coolReveal);
	$('.msgError:visible').each(coolReveal);	
});

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

