$(function() {
	
	$('.cart_image').hover(function() {
		
		$('div.cart_box').show();
		
	},
	function() {
		
		$('div.cart_box').hide();
		
	});
	
	$('div.cart_box').hover(function() {
		
		$(this).show();
		
	},
	function() {
		
		$(this).hide();
		
	});
	
});
