$(document).ready(function() {
	var options = {
		zoomWidth: 428,
		zoomHeight: 457,
		xOffset: 45,
		yOffset: 0,
		title: false,
		showPreload: false
	};
	$('.jqzoom').jqzoom(options);

	$('.ajax').click(function() {
		$('<div id="ajax-cart-added"><p><strong>Successfully added to Shopping Bag</strong><p></div>')
		.insertAfter('#shopping-bag-status')
		.fadeIn('slow')
		.animate({opacity: 1.0}, 3000)
		.fadeOut('slow', function() {
			$(this).remove();
		});
	});
});
