$(document).ready(function() {
	$("#fboxfieldset").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'onClosed'		: function() {
	$("#login_error").hide();
	}
	});
		
	$("#fboxrewards").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'onClosed'		: function() {
	$("#login_error").hide();
	}
	});
		
	$("a#fadeout").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic'
	});
	
	$("a.fadeout").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'transitionIn'	: 'elastic',
	'transitionOut'	: 'elastic'
	});
	
	$(".jCarouselLite").jCarouselLite({
	btnNext: ".next",
	btnPrev: ".prev",
	speed: 350,
	mouseWheel: true,
	/* easing: "easeinout",  */
	visible: 4
	});
		
	$("#coupon_form").bind("submit", function() {

	$.fancybox.showActivity();

	$.ajax({
		type : "POST",
		cache : false,
		url	: "https://www.carouseltoyshop.co.uk/checkout_confirmation.html?onlybody=true",
		data : $(this).serializeArray(),
		success: function(data) {
			$.fancybox(data);
		}
	});
	return true;
	});	
});

