$(document).ready(function() {	
	$('.cart-box-header, .cart-box-header-active').corner('round top 7px');
	$('.cart-box-inner').corner('round bottom 7px');
	
	$('.cart-box-header').click(function() {
		var thisDiv = $(this);
		var nextDiv = $(this).next('div');
		if (nextDiv.css('display') != 'none') {
			nextDiv.slideUp(500, function() {
				thisDiv.corner('round 7px').css('border-bottom-width', '2px');
			});
		}
		else {
			$(this).uncorner().corner('round top 7px').css('border-bottom-width', '1px');
			nextDiv.slideDown();
		}		
	});
	
	$('.cart-order-manipulate-options').click(function() {
		
	});
})
