$(function(){
	$("#WRAPPER.live #CONTENT div.flier img").hover(function(){
		$(this).parent().addClass("active");
		var activeImageUrl = $("a.active").attr("href");
		$("a.active").next().html('<img src="' + activeImageUrl + '" alt="" width="" height="">');
	});
});
