$(document).ready(function() {
	
	$('#block_cart_expand').click(function(){
		$('#full_cart').slideToggle('slow');
		$(this).hide();
		$('#block_cart_collapse').show();
	});
	
	$('#block_cart_collapse').click(function(){
		$('#full_cart').slideToggle('slow');
		$(this).hide();
		$('#block_cart_expand').show();
	});

	$('.zoomtext').fancybox({
		type: 'iframe',
		transitionIn: 'elastic',
		transitionOut: 'elastic',
		titleShow: false,
		centerOnScroll: true
	});
	
});
