$(document).ready(function(){ 

	$('#leftContent h2:first-child').css({"background":"url(/images/left_menu_top_bk.png) no-repeat top left"});
	$('#contentTeasers .teaser:last-child').css({"margin":"0 0 0 0"});


	//fix PNG transparency for IE6
	$("div.bannerAnimationWrapper").pngFix(); 


	$('.bannerAnimationWrapper').hover(
	  function () {
		$(this).find(".bannerAnimationSmallDesc").addClass("expanded");
		$(this).find(".bannerAnimImg2").show();
		$(this).find(".bannerAnimImg1").hide();
		$(this).children().children(".bannerAnimmation").stop().animate( { top:"0px" }, 500 )
      }, 
      function () {
		//$(this).children(2).slideUp("slow");
		$(this).find(".bannerAnimImg1").show();
		$(this).find(".bannerAnimImg2").hide();
		$(this).find(".bannerAnimationSmallDesc").removeClass("expanded");
		$(this).children().children(".bannerAnimmation").stop().animate( { top:"125px" }, 500 )
      }
    );
});


