if (Drupal.jsEnabled){
    $(document).ready(function(){
     
    	$('.view-Blog .views-field-body').expander({
    			 slicePoint: 512, 
    			 widow: 2,    			  
    			 userCollapseText: '[^]'});
    	
    	$(".accordion h3:first").addClass("active");
    	$(".accordion div:not(:first)").hide();

    	$(".accordion h3").click(function(){

    	  $(this).next("div").slideToggle("slow")
    	  .siblings("div:visible").slideUp("slow");
    	  $(this).toggleClass("active");
    	  $(this).siblings("h3").removeClass("active");


    	});

    });
}



