
$(document).ready( function() {

	$("#articles-promo-image-1").show();
	
	$("#articles-promo-teaser-1").hover(
		function () {
			$("#articles-promo-image-2").hide();
			$("#articles-promo-image-3").hide();
			$("#articles-promo-image-1").show();
			$("#articles-promo-teaser-1").addClass("active");
		}, function () {
			$("#articles-promo-teaser-1").removeClass("active");
		}
	);

	$("#articles-promo-teaser-2").hover(
		function () {
			$("#articles-promo-image-1").hide();
			$("#articles-promo-image-3").hide();
			$("#articles-promo-image-2").show();
			$("#articles-promo-teaser-2").addClass("active");
		},
		function () {
			$("#articles-promo-teaser-2").removeClass("active");
		}
	);

	$("#articles-promo-teaser-3").hover(
		function () {
			$("#articles-promo-image-1").hide();
			$("#articles-promo-image-2").hide();
			$("#articles-promo-image-3").show();
			$("#articles-promo-teaser-3").addClass("active");
		}, function () {
			$("#articles-promo-teaser-3").removeClass("active");
		}
	);

});

