
// COMMON: Pop-up window; use class="new_window" on <a> tags
Behavior.register(
	"a.new_window",
	function( el ) {
		el.onclick = function() {
			w = window.open( this.href, 'popup' );
			return false;
		}
	}
);

// HOME: Embed Flash intro
Behavior.register(
	"#home #flash",
	function( el ) {
		var so = new SWFObject( './flash/splash.swf', 'splash', '760', '535', '6', '#e5e5e5' );
		so.write( 'flash' );
	}
);

// ABOUT: Embed Flash banners
Behavior.register(
	"#about #flash1",
	function( el ) {
		var so = new SWFObject( './flash/about.swf', 'about1', '608', '50', '6', '#fff' );
		so.write( 'flash1' );
	}
);

Behavior.register(
	"#about #flash2",
	function( el ) {
		var so = new SWFObject( './flash/about.swf', 'about2', '608', '50', '6', '#fff' );
		so.write( 'flash2' );
	}
);
