$.noConflict();
jQuery(document).ready(function ($) {
    //----------------------------------------------- Change shopping cart empty message
    var msg = jQuery('td.cartSummaryItem').html();
    if (msg == "Shopping cart is empty.") {
        jQuery('td.cartSummaryItem').replaceWith('Shopping Bag: 0 Items');
    }
    jQuery('a.cartSummaryLink').replaceWith('<a href="/OrderRetrievev2.aspx?CatalogueID=39735" class="cartSummaryLink">View Bag</a>');
    
		
    
		//----------------------------------------------- Showing Search
    jQuery('#searchTrig').click(function (e) {
        e.preventDefault();
        jQuery('#searchTrig').hide();
        jQuery('#searchForm').show();
        jQuery('.search_form').animate({
            width: '132px'
        }, 1000, function () {
            // Animation complete.
        });
    });
});
