$(document).ready(function() {

	$("a.enlargeme").fancybox({
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	100, 
		'overlayOpacity'	:	0.2,
		'titlePosition'		:	'inside',
		'hideOnContentClick'	:	'true'
	});

	$("#carddata a").fancybox({
		'overlayOpacity'	:	0.2,
		ajax : {
		    type		:	"POST"
		}

	});

	$("a#m1, a#m2").fancybox({
		'overlayOpacity'	:	0.2,
		'titlePosition'		:	'outside',
		ajax : {
		    type		:	"POST",
		    data		: 	'modal=1'
		}
	});

	$("a.acc").fancybox({
		'overlayOpacity'	:	0.2,
		ajax : {
		    type		:	"POST",
		    data		: 	'modal=1'

		},
		onComplete		:	function() {
		 	$.ajax({
		              	type	: 	'POST',
              			url	: 	'/x-cartupdate.php',
		              	dataType: 	'json',                        
				success : 	
					function(server){
					$('.top_tm').empty();                        
		   			$('.top_tm').html(server.basketfull);                    
					$('#prodbas').empty();                        
					$('#prodbas').html(server.basketsmall);
				        }
			});

     		}

	});	
});
