$(function(slideshowcheck) {
	if($.cookie('slideshow') == "slideshow_off")
	$("#logoSlideshowBox").hide();
});

$(document).ready(function(){
	$(".btn").click(function(){
		if($.cookie('slideshow') == "slideshow_off") {
		$.cookie('slideshow', 'slideshow_on', { path: '/', expires: 10 });
		} else {
		$.cookie('slideshow', 'slideshow_off', { path: '/', expires: 10 });
		}
		$("#logoSlideshowBox").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});
