$(document).ready(function () {

		$('body').removeClass('nichtscript');

 var a = $("<a>Tagwolke ausblenden</a>").attr({href:'#',title:'Einstellung wird gespeichert'}).addClass('schalter');
 $('#h2querweb').before(a);


   $('.schalter').click(function(){

      if ($("#intro").is(":hidden")) {
        $("#intro").slideDown("slow",function(){
        		$(this).removeClass('hidden');
                 });
	$(this).text('Tagwolke ausblenden');
         $.cookie('showTop', 'collapsed', {path:'/lifestream'});
	return false;

      } else {
        $("#intro").addClass('hidden').slideUp("slow");
	$(this).text('Tagwolke einblenden');
        $.cookie('showTop', 'expanded', {path:'/lifestream'});
	return false;

      }

   });

// COOKIES
    // Header State
    var showTop = $.cookie('showTop');

    // Set the user's selection for the Header State
    if (showTop == 'expanded') {
	$("#intro").addClass('hidden').hide();
	$(".schalter").text('Tagwolke einblenden');

    };

});