$(document).ready(function() {
	// Adding a class to the second teaser column
	$('#content-container .contentContainer').each(function(i){
		if(i%2 == 1){
			$(this).addClass('last_column');	
		}	
	});	
	
	$.getScript("/pb/site/common/get/documents/coop_main/elements/themes/verde_shared/jquery.cycle.lite.js", function(){
		$("#content-container .standardContainer:first").css({
			height: "215px"
		}).cycle({ 
			delay:  2000, 
			speed:  500
		}); 
	});
});
