$j=jQuery.noConflict();


$j(document).ready(function(){
		$j('.indexer .apost h3').addClass('unclicked');
		$j('.indexer .apost p').hide();

	$j('.indexer .apost h3.unclicked a').live('click', function() {    
    		$j(this).parent('h3').removeClass('unclicked').addClass('clicked').parent('div').children('p').fadeIn();
   		 return false;
  	});
	
	$j('.indexer .apost h3.clicked a').live('click', function() {    
    		$j(this).parent('h3').removeClass('clicked').addClass('unclicked').parent('div').children('p').fadeOut();
   		 return false;
  	});
		$j('a.topper').click(function() {
    		$j('html').animate({scrollTop:0}, 'slow'); 
   		 return false;
  	});
	$('a#kommentar-toggle').click(function() {
    		$('#kommentarblender').slideToggle(400);
   		 return false;
  	});
	$('a#kommentarpost-toggle').click(function() {
    		$('#kommentarpostblender').slideToggle(400);
   		 return false;
  	});
	


  });

   $(function() {
        $('div.gallerie p a').lightBox();
    });

