jQuery(document).ready(function(){
	jQuery(".slideshow-right").stop().animate({"opacity": "0.70"}, 1);
	jQuery(".slideshow-left").stop().animate({"opacity": "0.00"}, 1);
	jQuery("#slideshow .left, #slideshow .quote").hover(
		function() {
			jQuery(".slideshow-left").stop().animate({"opacity": "0.70"}, "fast");
			jQuery(".slideshow-right").stop().animate({"opacity": "0.00"}, "fast");
		},
		function() {
			jQuery(".slideshow-left").stop().animate({"opacity": "0.00"}, "fast");
			jQuery(".slideshow-right").stop().animate({"opacity": "0.70"}, "fast");
		}
	);
	
	jQuery("textarea").focus(function() {
	
		if( jQuery(this).text() == "Bericht:" ) {
			jQuery(this).text("");
		}
	
	});
	jQuery("textarea").blur(function() {
	
		if( jQuery(this).text() == "" ) {
			jQuery(this).text("Bericht:");
		}
	
	});	
	
	jQuery('.columnize h1').addClass('dontend');
	jQuery('.columnize h2').addClass('dontend');
	jQuery('.columnize h3').addClass('dontend');
	jQuery('.columnize').columnize({ column: 2, lastNeverTallest: true });
	
});
