$(document).ready(function($) {	
	$("div.mscart").live('click', function(){
		if ($(this).attr("id")!="wide") {
			$(this).animate({right: "+=200"},1000,function(){
				$("div.mscart").attr("id","wide");
				$("#shopCart").attr("class","shop-cart opened");
			})
		} else {
			$(this).animate({right: "-=200"},1000,function(){
				$("div.mscart").attr("id","");
				$("#shopCart").attr("class","shop-cart");
			})
		}
	});
	
	if ($("#shopCart").find("a#butOrder").length>0) $("div.mscart").click();

})
