$('.basket_terms_and_conditions_link, .basket_privacy-policy_link, .basket_money-back-guarantee_link').livequery(function() {

	$(this).click(function(e) {
		e.preventDefault();

		$.get('/ajax/Ajax_Content/getSnippet', { snippet_name: $(this).attr('rel') }, function (response) {

			$.colorbox({width:"400px", height:"500px", html: response['snippet_content'], scrolling: true, onOpen:function() { $("body").css("overflow", "hidden"); }, onClosed:function() { $("body").css("overflow", "auto"); }});

		}, 'json');

	});


});

