$(function(){
	if ($('body').hasClass('variant-frontpage')) {
		// text padding for big buttons if on more than one row
		var r = $('div#content-top .as_huomiolaatikko a');
		for (var i = 0; i < r.length; i++) {
			if ($(r[i]).height() < 25) {
				$(r[i]).parent().css('padding-top', '30px');
			}
		}
		// layout fix for bottom row
		var h = $('div#content-bottom div.c-box').height(); 
		$('div#content-bottom div.app-News').css({
			height: h + 18 + 'px'
		});

	}
	// personnel
	if($('body').hasClass('page-22086') || $('body').hasClass('page-27347')) {
		var person = $('div#content-middle div.token-Content');
		$(person[0]).css({width: '100%'});
	}
	// theme image cycle
	var images = $('div#themeimage .contentImageArea img');
	if(images.length > 1) {
		var imageArea = $('div#themeimage .contentImageArea');
		$(imageArea).before('<div id="themecycle"></div>');
		for(var i = 0; i < images.length; i++) {
			$('#themecycle').append($(images[i]));
		}
		$(imageArea).remove();
		
		$("#themecycle").cycle({
			fx: 'fade',
			timeout: 10000,
			speed: 4000
		});
	}
});
