jQuery(document).ready(function() {

	jQuery("h3.post.title").animate({
		left	: 130
	}, 1000 );
	
	jQuery("h3.post.title.before").animate({
		left	: 400
	}, 1000 );
	
	jQuery("h3.post.title.after").animate({
		left	: 300
	}, 1000 );
	
});


$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	
	//$("h5.toggle").attr('title', "Inhalt einblenden");

	//Switch the "Open" and "Close" state per click
	
	//Slide up and down on click
	$("h5.toggle").click(function(){
		$(this).siblings(".active").next(".toggle_content").slideToggle();
		$(this).siblings(".active").toggleClass("active");
		$(this).next(".toggle_content").slideToggle();
		$(this).toggleClass("active");
		//$("h5.toggle").attr('title', "Inhalt einblenden");
		//$("h5.toggle.active").attr('title', "Inhalt ausblenden");
	});
});	

