function landing5()
{
	this.tab_id = 0;
	
	this.change_gender = function( gender, new_tab_id )
	{		
		swf_ele = window.document.swfcontainer;
		if ( swf_ele == undefined )
			swf_ele = window.swfcontainer;
		
		if ( swf_ele == undefined )
		{
			alert( "Can't find swf! Ah!!!" );
			return;
		}
		
		this.set_tab_state( this.tab_id, false );
		this.set_tab_state( new_tab_id, true );
		
		swf_ele.change_gender( gender );
		
		this.tab_id = new_tab_id;
	}
	
	this.set_tab_state = function( tab_id, active )
	{
		s = ( active ) ? ( "active" ) : ("inactive" );
		
		tab_ele = document.getElementById( "tab_" + tab_id );
		tab_ele.className = "tab_" + s;
		
		link_ele = document.getElementById( "tab_" + tab_id + "_link" );
		link_ele.className = "tab_" + s + "_link";
	}
}

landing5 = new landing5;
