$(".iw_fw_ContentCarousel_item a, .iw_modularea_154 a")
  .attr({target: "_blank"
  });

   $(".linkElement").click(function () {
        window.location = $(this).find("a").attr("href"); return false;
    });
  
 $(".iw_fw_ContentCarousel_item").click(function(){
	$(this).find("a").click();return false;
	});

$(document).ready(function(){
	$(".iw_fw_ContentCarousel_item").each(function () {

	   if (!$(this).find("p").length) {
		 $(this).find(".iw_fw_ContentCarousel_item_text").addClass("hideblock");
	   }
	   else
	   {
			 if ($(this).find("a").length) {
			$(this).find("p").wrap("<a href='" + $(this).find("a").attr("href") + "' target='_blank'></a>");
			}

		} 

	});
	
	//var width = $('.iw_fw_ContentCarousel').outerWidth();
	//$('.iw_modularea_219').width(width);
	
	$('.iw_fw_ContentCarousel').each(function(){
		var width = $(this).outerWidth();
		$(this).parent($('.iw_modularea_219')).width(width);
	});
	
});
