function landing6()
{
	this.profile_id = -1;
	
	this.profile_over = function( profile_id )
	{
		if ( this.profile_id != -1 )
			this.profile_out();
		
		this.profile_id = profile_id;
		
		ele_name = "profile_over_" + profile_id;
		ele = document.getElementById( ele_name );
		
		ele.className = "map_profile_over";
		ele.style.visibility = "visible";
	}
	
	this.profile_out = function( element, event )
	{					
		if ( this.profile_id == -1 )
			return;
		
		if ( event != null )
		{
			current_mouse_target = null;
			if( event.toElement )				
				current_mouse_target = event.toElement;
			else if( event.relatedTarget )				
				current_mouse_target = event.relatedTarget;
						
			if( is_child_of( element, current_mouse_target ) )
				return;
		}
	
		ele_name = "profile_over_" + this.profile_id;
		ele = document.getElementById( ele_name );
		
		ele.className = "map_profile_over";
		ele.style.visibility = "hidden";
		
		this.profile_id = -1;
	}
}

landing6 = new landing6;
