/*$j(document).ready(function(){
	if ($j.cookie("shoppingCartIdExpires") == "before-change" || $j.cookie("shoppingCartIdExpires") == null){			
		var todaysDate = new Date();
		todaysDate.setTime(todaysDate.getTime() + (24 * 60 * 60 * 365* 1000));
		$j.cookie("JSESSIONID",null);
		$j.cookie("shoppingCartIdExpires","after-change",{path:"/",expires:todaysDate});
		$j("body").attr("data-expires-cookie",$j.cookie("shoppingCartId"));
	} else {
		$j("body").attr("data-expires-cookie","preserved");
	}
});*/
