$(document).ready(function(){

    $('.msgGood:visible').each(coolReveal);
    $('.msgError:visible').each(coolReveal);
    
    $('.carttable tbody tr:even').addClass('alt');
    
    $('.slideshow-inner').cycle({ 
        fx:    'fade', 
        speed:  1500,
        timeout:  2200
     });

});

function coolReveal()
{
    $(this).hide();
    $(this).slideDown('slow'); 
}

