$(document).ready(function(){
	$('#banner').show();
	$('#bannerAnimation').animate({
		left: '-=800',
		 opacity: 1
	}, 3500, function() {
    // Animation complete.
	});
  
	$('.btn_close').click(function() {
		$('#bannerAnimation').animate({
			left: '+=800',
			 opacity: 0
		}, 1000, function() {
		// Animation complete.
		$('#banner').hide();
		});
	});
	
	$('.bannerIMG').click(function() {
		//window.location = "http://www.abel-retec.de/news/news-biogas/biomasse-doppelnutzung-biomasseproduktion-doppelnutzung-maiskorn-maisstroh-informationstage-biogasanlagen-abel-retec.html";
		//window.location = "http://www.abel-retec.de/news/news-biogas/biomasse-doppelnutzung.html";
		window.location = "cms/front_content.php?idart=205";
	});
	
	
});

