$(document).ready(function(){

	// Slide
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
	}, function() {
		$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:200});
	});
	
	// Popin
	$("a[rel^='prettyPopin']").prettyPopin({width:400,followScroll:false});	
	
	// Spalte verstecken
	$("#spalte2").hide();
	$("#spalte3").hide();
	$("#spalte3-2").hide();
	$("#spalte4").hide();
	
	// Spalten zeigen
	 $("a.zeigen2").click(function () { $("#spalte2").fadeIn();});

	 $("a.zeigen3").click(function () { $("#spalte3").fadeIn(); $("#spalte3-2").hide(); $("#spalte4").hide(); });
    
	 $("a.zeigen3-2").click(function () { $("#spalte3-2").fadeIn(); $("#spalte3").hide(); });
	 
	 $("a.zeigen4").click(function () { $("#spalte4").fadeIn();});
    
    // 2. Spalte weg
	 $(".close2").click(function () { 
	 	$("#spalte2").fadeOut();
	 	$("#spalte3").fadeOut();
	 	$("#spalte3-2").fadeOut();
	 	$("#spalte4").fadeOut();
	 });

	 $(".close3").click(function () { $("#spalte3").fadeOut();$("#spalte4").fadeOut();});
    
	 $(".close3-2").click(function () { $("#spalte3-2").fadeOut();$("#spalte4").fadeOut();});
	 
	 $(".close4").click(function () { $("#spalte4").fadeOut();});

});