jQuery(document).ready(function() {
	jQuery(".banner .tx-imagecycle-pi1").fadeIn(7000);
	//setTimeout(function(){ jQuery(".banner").css("display", "block") }, 2000);
	setTimeout(function(){ jQuery(".top .bannerOverlay").fadeIn(1000) }, 1000);
	//jQuery(".bannerOverlay").fadeIn("slow").delay(2000).fadeOut("slow");
	
	jQuery(".news-list-container .news-list-item").mouseenter(function(){
		jQuery(this).find(".news-list-content").animate({
			"bottom" : 0
		},1000);
	}).mouseleave(function(){
		jQuery(this).find(".news-list-content").animate({
			"bottom" : -147
		},1000);
	});

	jQuery(".news-latest-container .news-latest-item").mouseenter(function(){
		jQuery(this).find(".news-latest-content").animate({
			"bottom" : 0
		},1000);
	}).mouseleave(function(){
		jQuery(this).find(".news-latest-content").animate({
			"bottom" : -140
		},1000);
	});

	jQuery(".teaser-list .teaser-list-entry").mouseenter(function(){
		jQuery(this).find(".teaser-list-content").animate({
			"bottom" : 0
		},1000);
	}).mouseleave(function(){
		jQuery(this).find(".teaser-list-content").animate({
			"bottom" : -147
		},1000);
	});

	jQuery(".teaser-left .teaser-left-entry").mouseenter(function(){
		jQuery(this).find(".teaser-left-content").animate({
			"bottom" : 0
		},1000);
	}).mouseleave(function(){
		jQuery(this).find(".teaser-left-content").animate({
			"bottom" : -140
		},1000);
	});

});
