
function frost_tags() {
	var COOKIE_NAME="frost_sidebar_tag_cookie";
	jQuery("h3.tags").css( "cursor", "pointer" );
	jQuery("h3.tags").ready(function(){
		if ( null == jQuery.cookie(COOKIE_NAME) ) {
			jQuery("ul.wp-tag-cloud").hide();
			jQuery("h3.tags").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" );
		} else {
			jQuery("h3.tags").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
		}
	});
	jQuery("h3.tags").click(function(){
		jQuery("ul.wp-tag-cloud").slideToggle("slow", function() { 
			jQuery.cookie( COOKIE_NAME, this.style.display == "none" ? null : 1, { path: '/', expires: 10 } );
			jQuery("h3.tags").css( "background-image", this.style.display == "none" ? "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" : "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
			} );
	});
}

function frost_links() {
	var COOKIE_NAME="frost_sidebar_link_cookie";
	jQuery(".linkcat h2").css( "cursor", "pointer" );
	jQuery(".linkcat h2").ready(function(){
		if ( null == jQuery.cookie(COOKIE_NAME) ) {
			jQuery("ul.xoxo").hide();
			jQuery(".linkcat h2").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" );
		} else {
			jQuery(".linkcat h2").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
		}
	});
	jQuery(".linkcat h2").click(function(){
		jQuery("ul.xoxo").slideToggle("slow", function() { 
			jQuery.cookie( COOKIE_NAME, this.style.display == "none" ? null : 1, { path: '/', expires: 10 } );
			jQuery(".linkcat h2").css( "background-image", this.style.display == "none" ? "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" : "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
			} );
	});

}

function frost_issues() {
	var COOKIE_NAME="frost_sidebar_issues_cookie";
	jQuery("li.backissue h3").css( "cursor", "pointer" );
	jQuery("li.backissue h3").ready(function(){
		if ( null == jQuery.cookie(COOKIE_NAME) ) {
			jQuery("li.backissue ul").hide();
			jQuery("li.backissue h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" );
		} else {
			jQuery("li.backissue h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
		}
	});
	jQuery("li.backissue h3").click(function(){
		jQuery("li.backissue ul").slideToggle("slow", function() { 
			jQuery.cookie( COOKIE_NAME, this.style.display == "none" ? null : 1, { path: '/', expires: 10 } );
			jQuery("li.backissue h3").css( "background-image", this.style.display == "none" ? "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" : "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
			} );
	});

}

function frost_categories() {
	var COOKIE_NAME="frost_sidebar_categories_cookie";
	jQuery("li.categories h3").css( "cursor", "pointer" );
	jQuery("li.categories h3").ready(function(){
		if ( null == jQuery.cookie(COOKIE_NAME) ) {
			jQuery("li.categories ul").hide();
			jQuery("li.categories h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" );
		} else {
			jQuery("li.categories h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
		}
	});
	jQuery("li.categories h3").click(function(){
		jQuery("li.categories ul").slideToggle("slow", function() { 
			jQuery.cookie( COOKIE_NAME, this.style.display == "none" ? null : 1, { path: '/', expires: 10 } );
			jQuery("li.categories h3").css( "background-image", this.style.display == "none" ? "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" : "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
			} );
	});

}

function frost_office() {
	var COOKIE_NAME="frost_sidebar_office_cookie";
	jQuery("li.office h3").css( "cursor", "pointer" );
	jQuery("li.office h3").ready(function(){
		if ( null == jQuery.cookie(COOKIE_NAME) ) {
			jQuery("li.office ul").hide();
			jQuery("li.office h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" );
		} else {
			jQuery("li.office h3").css( "background-image", "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
		}
	});
	jQuery("li.office h3").click(function(){
		jQuery("li.office ul").slideToggle("slow", function() { 
			jQuery.cookie( COOKIE_NAME, this.style.display == "none" ? null : 1, { path: '/', expires: 10 } );
			jQuery("li.office h3").css( "background-image", this.style.display == "none" ? "url(/magazine/wp-content/themes/default/images/arrow-side.gif)" : "url(/magazine/wp-content/themes/default/images/arrow-down.gif)" );
			} );
	});

}

jQuery(function($) {
	frost_tags();
	frost_links();
	frost_issues();
	frost_categories();
	frost_office();
});
