$(function(){

    $('#Navigation ul').css('zIndex', '9999').superfish();
    $('#Navigation ul ul').css('zIndex', '9999');
    
    $('.GoCartCatalogSorting ul li').hide();
    $('.GoCartCatalogSorting ul li.Current').show();
    $('.GoCartCatalogSorting ul').hover(function(){
        $(this).stop().children().animate({
            'opacity': 'show'
        }, 300);
        $(this).children('li.Current').addClass('open');
    }, function(){
        $(this).stop().children().not('li.Current').animate({
            'opacity': 'hide'
        }, 150);
        $(this).children('li.Current').removeClass('open');
    });
	
	var sameAsBilling = $('.GoCartCheckoutShipping input:checkbox');
    sameAsBilling.bind('keyup change',function(){
        if (this.checked) {
			$('.GoCartCheckoutShipping table').hide();
		}
		else {
			$('.GoCartCheckoutShipping table').show();
		}
    });

	
    $('.GoCartCatalogProductAddToCart a, #cart a#cartLink, a.ProceedToCheckout, .UpdateCartButton input, .GoCartCheckoutSubmit input, a.ContinueShopping, .GoCartProductDetailsAddToCart a').button();
    
});

