var main = {
	init: function() {
		$$('.imgButton').each(function(el) {
			el.addEvent('click', function() {
				window.location = this.alt;
			});
		});
		
		swfobject.embedSWF("/swf/banner.swf", "mainBanner", "700", "210", "9.0.0");

		this.initWithDelay.delay(1000);
	},
	
	initWithDelay: function() {
		if ($('leftPad2')) { 
			var r = $('right').getCoordinates();  
			var l = $('left').getCoordinates();
			if ((r.height - l.height) > 0)
				$('leftPad2').setStyle('height', (r.height - l.height) + 'px');
			else 
				$('right').setStyle('height', (r.height + (l.height - r.height - 51)) + 'px');
		}		
	}
};

window.addEvent('domready', function() {
	main.init();	
});