var main = {
	init: function() {
		$$('.imgButton').each(function(el) {
			el.addEvent('click', function() {
				window.location = this.alt;
			});
		});

		if (window.swfobject && $('header_banner')) {
			swfobject.embedSWF("/swf/header.swf", 'header_banner', '850', '285', '8', '/swf/expressInstall.swf');
		}

		this.initWithDelay.delay(1000);
	},

	initWithDelay: function() {

	}
};

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