$(document).ready(function(){
	$("#cartsummary").append("<a href=\"#\" id=\"expandCart\">More Details</a><br class=\"floatStop\" />");
	$("#cartsummary").show();
	var isVisible = ($.cookie('pmskin_cart') != null) ? $.cookie('pmskin_cart') : 'false';

	if (isVisible == 'true') {
		$("#shoppingcart").show();
		$("#expandCart").text('Fewer Details');
	}
	var animating = '0';
	
	$("#expandCart").click(function(){
		if (animating != '1'){
			animating = '1';
			if (isVisible == 'false'){
				isVisible = 'true';
				$.cookie('pmskin_cart','true');
				$("#expandCart").addClass("expanded");
				$("#shoppingcart").slideDown("slow");
				$("#expandCart").fadeOut('10', function(){
					$("#expandCart").text('Fewer Details').show('10',function(){
						animating = '0';
					});
				});
			} else {
				$("#expandCart").removeClass("expanded");
				$("#shoppingcart").slideUp("slow");
				isVisible = 'false';
				$.cookie('pmskin_cart','false');
				$("#expandCart").fadeOut('10', function(){
					$("#expandCart").text('More Details').show('10',function(){
						animating = '0';
					});
				});
			}
		}
		return false;
	});
});