$.noConflict(); 
jQuery(document).ready(function($) { 

    if ( $('.header-panel .links .first a').text() == 'Log In' )
    {
        $('.price-box').remove();
        $('.options-container-small').remove();
        $('.add-to-box').remove();
        $('.quick-access').remove();
//        $('p.welcome-msg').replaceWith('<p class="welcome-msg"></p>');

    }

    $('.add-to-links').remove();
    $('.no-rating').remove();
    $('.giftcard').remove();
    $('.box-tags').remove();
    $('.actions').remove();
    

    $('span.price').each(function () {
        if ( $(this).text() == 'C$0.00' )
	{
            $(this).replaceWith('<span class="price"></span>');
        }
    });

}); 
