$(function() {

	// Center area zone heights
	var centerheight = 0;
	$('#center .zone').each(function() {
		if ($(this).height() > centerheight) { centerheight = $(this).height(); }
	});
	$('#center .zone').css('height', centerheight + 'px');
	
	// Themeimages
	var imgCount = 5;
	var buttonWidth = 0;
	$('.active-marker').each(function() {
	    buttonWidth = $(this).parents('td').width();
	    $(this).css('margin-left', (buttonWidth/2) - 4 + 'px');
	});
	if ( ! $.browser.msie || $.browser.version > 6 ) {
	    for (i = 1; i < imgCount+1; i++) {
		    $('#zone-top').before('<div class="zone-top-bg zone-top-bg-' + i + '" style="display: none;"></div>');
		}
	}
	function updateCustomPager() {
		var activeButton = $('#zone-top .token-Highlight .row:not(:hidden)').attr('rel');
		$('.titles .active').removeClass('active');
		$('.top-theme-'+activeButton).addClass('active');
	};
	var firstDrive = true;
	function changeBackground() {
	    if ( ! $.browser.msie || $.browser.version > 6 ) {
	        if (firstDrive) { buttonAdd = 0; firstDrive = false; } else { buttonAdd = 1 }
			var activeButton = parseInt($('#zone-top .token-Highlight .row:not(:hidden)').attr('rel'))+buttonAdd;
			activeButton = activeButton > imgCount ? 1 : activeButton;
			var prevButton = activeButton == 1 ? imgCount : activeButton-1;
			$('.zone-top-bg-' + activeButton).show(function() {
			    $('.zone-top-bg-' + prevButton).fadeOut(2000);
			});
		}
	};
	if ( ($('#token-3424726 .eiRiveja').length == 1) || ($('#token-3424726 .app').length == 0) ) {
	    $('#zone-top .token-Highlight')
		    .cycle({
			    cleartype:  1, // enable cleartype corrections
				fx:         'fade',
				timeout:    6500,
				delay:      200,
				speed:      2500,
				slideExpr:  '.row',
				before:		changeBackground,
				after:		updateCustomPager
			});
	};
		
	// Right zone banners
	if ( ! $('body').hasClass('editmode') ) {
	    $('#zone-right .token-Banner')
		    .after('<div id="slideshow-pager">')
		    .cycle({
			    cleartype:  1, // enable cleartype corrections
			    fx:         'fade',
			    timeout:    5000,
			    delay:      200,
			    slideExpr:  '.banner',
			    pager:      '#slideshow-pager'
		    });
	};
	$('#slideshow-pager a').click(function() {
		$('div#zone-top2s').cycle('pause');
	});
	
	// IE6
    if ( $.browser.msie && $.browser.version < 7 ) {
	    $('.active-marker').remove();
	    $('#zone-top-wrapper, #zone-top .app-Highlight .row .text').addClass('png_fix');
	}
	
});

