// Basket Preview
var cartBoxBehavior = function() {
	
	jQuery('#icon_cart').click(function() {
		if (document.getElementById('account_details').style.display == 'block') {
			jQuery('#account_details').slideToggle('fast', function() {
			});  
		}
		jQuery('#cart_details').slideToggle('fast', function() {
		});
	});
	jQuery('#cart_details_close').click(function() {
		jQuery('#cart_details').slideToggle('fast', function() {
		});
	});

}

// Account Preview
var accountBoxBehavior = function() {

	jQuery('#icon_account').click(function() {
		if (document.getElementById('cart_details').style.display == 'block') {
			jQuery('#cart_details').slideToggle('fast', function() {
			});  
		}
		jQuery('#account_details').slideToggle('fast', function() {
		});
	});
	jQuery('#account_details_close').click(function() {
		jQuery('#account_details').slideToggle('fast', function() {
		});
	});

}

// LOAD THE FUNCTIONS
cartBoxBehavior();
accountBoxBehavior();