
(function($) {
	$(document).ready(
		function() {
			$("#preview-keywords-show").alive(
				function() {
					$(this).click(
						function() {
							$.cookie("preview-keywords", "show", { expires: 365, path: "/" });
						}
					);
				}
			);

			$("#preview-keywords-hide").alive(
				function() {
					$(this).click(
						function() {
							$.cookie("preview-keywords", "hide", { expires: 365, path: "/" });
						}
					);
				}
			);
				
			$("#preview-series-show").alive(
				function() {
					$(this).click(
						function() {
							$.cookie("preview-series", "show", { expires: 365, path: "/" });
						}
					);
				}
			);
		
			$("#preview-series-hide").alive(
				function() {
					$(this).click(
						function() {	
							$.cookie("preview-series", "hide", { expires: 365, path: "/" });
						}
					);
				}
			);

			$(".series-slideshow").alive(
				function() {
					$(this).slideshow({ elements: 5 }).fadeIn("fast");
				}
			);

			$("#preview-prices-show").alive(
				function() {
					$(this).click(
						function() {
							$.cookie("preview-prices", "show", { expires: 365, path: "/" });
						}
					);
				}
			);

			$("#preview-prices-hide").alive(
				function() {
					$(this).click(
						function() {
							$.cookie("preview-prices", "hide", { expires: 365, path: "/" });
						}
					);
				}
			);
		}
	);
})(jQuery);
