$.fx.step.reSizeOne = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.one_sw = $("#one").width();
	    fx.one_sh = $("#one").height();
		fx.oneContainer_sw = $(fx.elem).width();
		fx.oneContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#one .artikel").width();
	    fx.titel_sw = $("#one .titel").width();
	    fx.lead_sw = $("#one .lead").width();
	    fx.bild_sw = $("#one .bild").width();
	    fx.bild4_sw = $("#one .bild4").width();
	    fx.bildblog_sw = $("#one .bildblog").width();
	    fx.text_sw = $("#one .text").width();
	    fx.schlagzeile_sw = $("#one .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 810;
    	fx.w02 = 780;
    	fx.w03 = 550;
    	fx.w04 = 200;
    	fx.h01 = 610;

	};
	var one_nw = Math.round(fx.pos * (fx.w01 - fx.one_sw) + fx.one_sw);
	$("#one").css({'width' : one_nw});
	var one_nh = Math.round(fx.pos * (fx.h01 - fx.one_sh) + fx.one_sh);
	$("#one").css({'height' : one_nh});
	
	var oneContainer_nw = Math.round(fx.pos * (fx.w01 - fx.oneContainer_sw) + fx.oneContainer_sw);
	$(fx.elem).css({'width' : oneContainer_nw});
	var oneContainer_nh = Math.round(fx.pos * (fx.h01 - fx.oneContainer_sh) + fx.oneContainer_sh);
	$(fx.elem).css({'height' : oneContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#one .artikel").css({'width' : artikel_nw});
	$("#one .artikel").css({'min-height' : oneContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#one .titel").css({'width' : titel_nw});
	$("#one .lead").css({'width' : titel_nw});
	$("#one .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#one .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#one .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#one .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#one .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeOneSmall = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.one_sw = $("#one").width();
	    fx.one_sh = $("#one").height();
		fx.oneContainer_sw = $(fx.elem).width();
		fx.oneContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#one .artikel").width();
	    fx.titel_sw = $("#one .titel").width();
	    fx.lead_sw = $("#one .lead").width();
	    fx.bild_sw = $("#one .bild").width();
	    fx.bild4_sw = $("#one .bild4").width();
	    fx.bildblog_sw = $("#one .bildblog").width();
	    fx.text_sw = $("#one .text").width();
	    fx.schlagzeile_sw = $("#one .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 400;
    	fx.w02 = 380;
    	fx.w03 = 380;
    	fx.w04 = 100;
    	fx.h01 = 300;

	};
	var one_nw = Math.round(fx.pos * (fx.w01 - fx.one_sw) + fx.one_sw);
	$("#one").css({'width' : one_nw});
	var one_nh = Math.round(fx.pos * (fx.h01 - fx.one_sh) + fx.one_sh);
	$("#one").css({'height' : one_nh});
	
	var oneContainer_nw = Math.round(fx.pos * (fx.w01 - fx.oneContainer_sw) + fx.oneContainer_sw);
	$(fx.elem).css({'width' : oneContainer_nw});
	var oneContainer_nh = Math.round(fx.pos * (fx.h01 - fx.oneContainer_sh) + fx.oneContainer_sh);
	$(fx.elem).css({'height' : oneContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#one .artikel").css({'width' : artikel_nw});
	$("#one .artikel").css({'min-height' : oneContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#one .titel").css({'width' : titel_nw});
	$("#one .lead").css({'width' : titel_nw});
	$("#one .bild").css({'width' : titel_nw});

	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#one .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#one .bild4").css({'width' : bild4_nw});

	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#one .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#one .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeTwo = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.two_sw = $("#two").width();
	    fx.two_sh = $("#two").height();
		fx.twoContainer_sw = $(fx.elem).width();
		fx.twoContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#two .artikel").width();
	    fx.titel_sw = $("#two .titel").width();
	    fx.lead_sw = $("#two .lead").width();
	    fx.bild_sw = $("#two .bild").width();
	    fx.bild4_sw = $("#two .bild4").width();
	    fx.bildblog_sw = $("#two .bildblog").width();
	    fx.text_sw = $("#two .text").width();
	    fx.schlagzeile_sw = $("#two .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 810;
    	fx.w02 = 780;
    	fx.w03 = 550;
    	fx.w04 = 200;
    	fx.h01 = 610;
    	fx.l01 = 0;

	};
	
	var two_nw = Math.round(fx.pos * (fx.w01 - fx.two_sw) + fx.two_sw);
	var two_nl = Math.round(810 - two_nw);
	$("#two").css({'left' : two_nl});
	$("#two").css({'width' : two_nw});
	var two_nh = Math.round(fx.pos * (fx.h01 - fx.two_sh) + fx.two_sh);
	$("#two").css({'height' : two_nh});
	
	var twoContainer_nw = Math.round(fx.pos * (fx.w01 - fx.twoContainer_sw) + fx.twoContainer_sw);
	$(fx.elem).css({'width' : twoContainer_nw});
	var twoContainer_nh = Math.round(fx.pos * (fx.h01 - fx.twoContainer_sh) + fx.twoContainer_sh);
	$(fx.elem).css({'height' : twoContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#two .artikel").css({'width' : artikel_nw});
	$("#two .artikel").css({'min-height' : twoContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#two .titel").css({'width' : titel_nw});
	$("#two .lead").css({'width' : titel_nw});
	$("#two .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#two .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#two .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#two .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#two .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};
$.fx.step.reSizeTwoSmall = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.two_sw = $("#two").width();
	    fx.two_sh = $("#two").height();
		fx.twoContainer_sw = $(fx.elem).width();
		fx.twoContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#two .artikel").width();
	    fx.titel_sw = $("#two .titel").width();
	    fx.lead_sw = $("#two .lead").width();
	    fx.bild_sw = $("#two .bild").width();
	    fx.bild4_sw = $("#two .bild4").width();
	    fx.bildblog_sw = $("#two .bildblog").width();
	    fx.text_sw = $("#two .text").width();
	    fx.schlagzeile_sw = $("#two .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 400;
    	fx.w02 = 380;
    	fx.w03 = 380;
    	fx.w04 = 100;
    	fx.h01 = 300;

	};
	
	var two_nw = Math.round(fx.pos * (fx.w01 - fx.two_sw) + fx.two_sw);
	var two_nl = Math.round(810 - two_nw);
	$("#two").css({'left' : two_nl});
	$("#two").css({'width' : two_nw});
	var two_nh = Math.round(fx.pos * (fx.h01 - fx.two_sh) + fx.two_sh);
	$("#two").css({'height' : two_nh});
	
	var twoContainer_nw = Math.round(fx.pos * (fx.w01 - fx.twoContainer_sw) + fx.twoContainer_sw);
	$(fx.elem).css({'width' : twoContainer_nw});
	var twoContainer_nh = Math.round(fx.pos * (fx.h01 - fx.twoContainer_sh) + fx.twoContainer_sh);
	$(fx.elem).css({'height' : twoContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#two .artikel").css({'width' : artikel_nw});
	$("#two .artikel").css({'min-height' : twoContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#two .titel").css({'width' : titel_nw});
	$("#two .lead").css({'width' : titel_nw});
	$("#two .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#two .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#two .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#two .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#two .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeThree = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.three_sw = $("#three").width();
	    fx.three_sh = $("#three").height();
		fx.threeContainer_sw = $(fx.elem).width();
		fx.threeContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#three .artikel").width();
	    fx.titel_sw = $("#three .titel").width();
	    fx.lead_sw = $("#three .lead").width();
	    fx.bild_sw = $("#three .bild").width();
	    fx.bild4_sw = $("#three .bild4").width();
	    fx.bildblog_sw = $("#three .bildblog").width();
	    fx.text_sw = $("#three .text").width();
	    fx.schlagzeile_sw = $("#three .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 810;
    	fx.w02 = 780;
    	fx.w03 = 550;
    	fx.w04 = 200;
    	fx.h01 = 610;

	};
	
	var three_nw = Math.round(fx.pos * (fx.w01 - fx.three_sw) + fx.three_sw);
	var three_nh = Math.round(fx.pos * (fx.h01 - fx.three_sh) + fx.three_sh);
	var three_nt = Math.round(626 - three_nh);
	$("#three").css({'top' : three_nt});
	$("#three").css({'width' : three_nw});
	$("#three").css({'height' : three_nh});
	
	var threeContainer_nw = Math.round(fx.pos * (fx.w01 - fx.threeContainer_sw) + fx.threeContainer_sw);
	$(fx.elem).css({'width' : threeContainer_nw});
	var threeContainer_nh = Math.round(fx.pos * (fx.h01 - fx.threeContainer_sh) + fx.threeContainer_sh);
	$(fx.elem).css({'height' : threeContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#three .artikel").css({'width' : artikel_nw});
	$("#three .artikel").css({'min-height' : threeContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#three .titel").css({'width' : titel_nw});
	$("#three .lead").css({'width' : titel_nw});
	$("#three .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#three .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#three .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#three .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#three .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeThreeSmall = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.three_sw = $("#three").width();
	    fx.three_sh = $("#three").height();
		fx.threeContainer_sw = $(fx.elem).width();
		fx.threeContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#three .artikel").width();
	    fx.titel_sw = $("#three .titel").width();
	    fx.lead_sw = $("#three .lead").width();
	    fx.bild_sw = $("#three .bild").width();
	    fx.bild4_sw = $("#three .bild4").width();
	    fx.bildblog_sw = $("#three .bildblog").width();
	    fx.text_sw = $("#three .text").width();
	    fx.schlagzeile_sw = $("#three .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 400;
    	fx.w02 = 380;
    	fx.w03 = 380;
    	fx.w04 = 100;
    	fx.h01 = 300;

	};
	
	var three_nw = Math.round(fx.pos * (fx.w01 - fx.three_sw) + fx.three_sw);
	var three_nh = Math.round(fx.pos * (fx.h01 - fx.three_sh) + fx.three_sh);
	var three_nt = Math.round(626 - three_nh);
	$("#three").css({'top' : three_nt});
	$("#three").css({'width' : three_nw});
	$("#three").css({'height' : three_nh});
	
	var threeContainer_nw = Math.round(fx.pos * (fx.w01 - fx.threeContainer_sw) + fx.threeContainer_sw);
	$(fx.elem).css({'width' : threeContainer_nw});
	var threeContainer_nh = Math.round(fx.pos * (fx.h01 - fx.threeContainer_sh) + fx.threeContainer_sh);
	$(fx.elem).css({'height' : threeContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#three .artikel").css({'width' : artikel_nw});
	$("#three .artikel").css({'min-height' : threeContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#three .titel").css({'width' : titel_nw});
	$("#three .lead").css({'width' : titel_nw});
	$("#three .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#three .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#three .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#three .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#three .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeFour = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.four_sw = $("#four").width();
	    fx.four_sh = $("#four").height();
		fx.fourContainer_sw = $(fx.elem).width();
		fx.fourContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#four .artikel").width();
	    fx.titel_sw = $("#four .titel").width();
	    fx.lead_sw = $("#four .lead").width();
	    fx.bild_sw = $("#four .bild").width();
	    fx.bild4_sw = $("#four .bild4").width();
	    fx.bildblog_sw = $("#four .bildblog").width();
	    fx.text_sw = $("#four .text").width();
	    fx.schlagzeile_sw = $("#four .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 810;
    	fx.w02 = 780;
    	fx.w03 = 550;
    	fx.w04 = 200;
    	fx.h01 = 610;

	};
	
	var four_nw = Math.round(fx.pos * (fx.w01 - fx.four_sw) + fx.four_sw);
	var four_nh = Math.round(fx.pos * (fx.h01 - fx.four_sh) + fx.four_sh);
	var four_nt = Math.round(626 - four_nh);
	var four_nl = Math.round(810 - four_nw);
	$("#four").css({'top' : four_nt});
	$("#four").css({'left' : four_nl});
	$("#four").css({'width' : four_nw});
	$("#four").css({'height' : four_nh});
	
	var fourContainer_nw = Math.round(fx.pos * (fx.w01 - fx.fourContainer_sw) + fx.fourContainer_sw);
	$(fx.elem).css({'width' : fourContainer_nw});
	var fourContainer_nh = Math.round(fx.pos * (fx.h01 - fx.fourContainer_sh) + fx.fourContainer_sh);
	$(fx.elem).css({'height' : fourContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#four .artikel").css({'width' : artikel_nw});
	$("#four .artikel").css({'min-height' : fourContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#four .titel").css({'width' : titel_nw});
	$("#four .lead").css({'width' : titel_nw});
	$("#four .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#four .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#four .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#four .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#four .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};

$.fx.step.reSizeFourSmall = function(fx){  
	if (!fx.state) { 
		var o = fx.options;
		//fx.reSizeDir = o.expand;
	    //Startwerte der Animation berechnen  
	    fx.four_sw = $("#four").width();
	    fx.four_sh = $("#four").height();
		fx.fourContainer_sw = $(fx.elem).width();
		fx.fourContainer_sh = $(fx.elem).height();
	    fx.artikel_sw = $("#four .artikel").width();
	    fx.titel_sw = $("#four .titel").width();
	    fx.lead_sw = $("#four .lead").width();
	    fx.bild_sw = $("#four .bild").width();
	    fx.bild4_sw = $("#four .bild4").width();
	    fx.bildblog_sw = $("#four .bildblog").width();
	    fx.text_sw = $("#four .text").width();
	    fx.schlagzeile_sw = $("#four .schlagzeile").width();
	     
	    
	    
	    //Endwerte der Animation berechnen
    	fx.w01 = 400;
    	fx.w02 = 380;
    	fx.w03 = 380;
    	fx.w04 = 100;
    	fx.h01 = 300;
	};
	
	var four_nw = Math.round(fx.pos * (fx.w01 - fx.four_sw) + fx.four_sw);
	var four_nh = Math.round(fx.pos * (fx.h01 - fx.four_sh) + fx.four_sh);
	var four_nt = Math.round(626 - four_nh);
	var four_nl = Math.round(810 - four_nw);
	$("#four").css({'top' : four_nt});
	$("#four").css({'left' : four_nl});
	$("#four").css({'width' : four_nw});
	$("#four").css({'height' : four_nh});
	
	var fourContainer_nw = Math.round(fx.pos * (fx.w01 - fx.fourContainer_sw) + fx.fourContainer_sw);
	$(fx.elem).css({'width' : fourContainer_nw});
	var fourContainer_nh = Math.round(fx.pos * (fx.h01 - fx.fourContainer_sh) + fx.fourContainer_sh);
	$(fx.elem).css({'height' : fourContainer_nh});
	
	var artikel_nw = Math.round(fx.pos * (fx.w01 - fx.artikel_sw) + fx.artikel_sw);
	$("#four .artikel").css({'width' : artikel_nw});
	$("#four .artikel").css({'min-height' : fourContainer_nh});
	
	var titel_nw = Math.round(fx.pos * (fx.w02 - fx.titel_sw) + fx.titel_sw);
	$("#four .titel").css({'width' : titel_nw});
	$("#four .lead").css({'width' : titel_nw});
	$("#four .bild").css({'width' : titel_nw});
	
	var schlagzeile_nw = Math.round(fx.pos * (fx.w02 - fx.schlagzeile_sw) + fx.schlagzeile_sw);
	$("#four .schlagzeile").css({'width' : schlagzeile_nw});
	
	var bild4_nw = Math.round(fx.pos * (fx.w03 - fx.bild4_sw) + fx.bild4_sw);
	$("#four .bild4").css({'width' : bild4_nw});
	
	var text_nw = Math.round(fx.pos * (fx.w03 - fx.text_sw) + fx.text_sw);
	$("#four .text").css({'width' : text_nw});
	
	var bildblog_nw = Math.round(fx.pos * (fx.w04 - fx.bildblog_sw) + fx.bildblog_sw);
	$("#four .bildblog").css({'width' : bildblog_nw});
	
	var wo = $(fx.end).position();
	var wohin = Math.round(wo.top*-1);
	$(fx.elem).css({'top' : wohin});
	
};