var main = {
	init: function() {
		$$('.imgButton').each(function(el) {
			el.addEvent('click', function() {
				window.location = this.alt;
			});
		});
		
		this.initWithDelay.delay(1000);
		
		if (window.swfobject && $('header_banner')) {
			swfobject.embedSWF("/swf/header.swf", 'header_banner', '850', '228', '8');
		}
	},
	
	initWithDelay: function() {
		
	}
};

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