(function($){
	/*$(function() {
		$.ajax({
			type: "GET",
			url: "shop/display_cart",
			success: function(html){
				$('body').append('<div id="dom" style="display:none">'+html+'</div>');
				items = 0;
				if($('.qu','#dom').length){
					total = $('.rd','#dom').text();
					$('.cart_total').text(total);
					$('.qu','#dom').each(function(){
						items += parseFloat($(this).text());
					});
				}else{
					$('.cart_total').text('0円');
				}
				$('.cart_item').text(items);
				$('#dom').remove();
			}
		});	
	});*/
	$(document).ready(function(){
		$("a[rel^='prettyPopin']").prettyPopin({width: 550,followScroll:false});
	});
})(jQuery);

