$(function() {
		$(".opt-out").fancybox({
			'hideOnContentClick': false,
			'overlayColor': "#4c7511",
			'showCloseButton': false,
			'overlayOpacity': 0.8,
			'width': 440,
			'height': 300,
			'autoScale': false,
			'autoDimensions': false,
			'padding': 0
		})
		
		$(".fancybox-close").click($.fancybox.close)
		$("#opt-out-link").click(function() {
			var img = new Image(1,1);
			img.src ='http://rt.legolas-media.com/lgrt?ci=11&ti=70&rnd=' + Math.random();
			//$.fancybox.close();
			$.fancybox.close()
			$(this).fadeIn("fast").fadeTo(300, 1, function() {
					alert("You have successfully opted out.");
			})
		})
	})
