/* Navigation Hintergrund Effekt */
$(document).ready(function(){
	$('#navi a')
		.css( {backgroundPosition: "right 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(right -32px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(right 0px)"}, {duration:400, complete:function(){
				$(this).css({backgroundPosition: "right 0px"})
			}})
		})
		
	var breite = $(".wide_col .buehne div img").width();
	$(".wide_col .buehne div").width(breite);
	
/* Newsletter Box Slider */
	$('#weitere_newsletter').bind('click.showweiterenewsletter', function(){
		$('#weitere_newsletter_box').slideToggle();													
	});
});

function Ape_Link(url){
    if(url !== undefined){
        window.location = window.location.protocol + '//' + window.location.hostname + url;
    }
}





