function showBubble()
{
    $('#cc_widget-cart-bubble').show();
}

function closeBubble()
{
    $('#cc_widget-cart-bubble').fadeOut('slow');
}

$(document).ready(function() {
    if($('#cc_widget-cart-bubble').display = 'block') {
        setTimeout("closeBubble()", 5000);
    }
});
