//home page rotating banners
window.addEvent( 'domready', function () {
	if(document.id( 'frontpage-banner' )){
		var options = {
			'timerDelay': 3000,
			'selectedLinkClass': 'selected',
			'fadeDuration': 1000
		};
		new FrontMenuFull( '#frontpage-banner .banner-item', '#frontpage-banner .banner-items-links li', options );
		maxHeight=document.id( 'frontpage-banner' ).getStyle('height').toInt();
		document.getElements('#frontpage-banner .banner-item').each( function( el ){
			if( el.getStyle('height').toInt() > maxHeight ){
				maxHeight = el.getStyle('height').toInt();
			}
		} );
		document.id( 'frontpage-banner' ).setStyle('height', maxHeight );
	}
});


//home page rotating banners
window.addEvent( 'domready', function () {
	foot_cols = document.id('footer').getElements( 'div.footer-col div.box-content' );
	if( foot_cols != '' )
	{
		maxHeight=foot_cols[0].getStyle('height').toInt();
		foot_cols.each( function( el ){
			if( el.getStyle('height').toInt() > maxHeight ){
				maxHeight = el.getStyle('height').toInt();
			}
		} );
		foot_cols.each( function( el ){
			el.setStyle('height', maxHeight );
		} );
	}
});


