- has_many :messages, :foreign_key => :to_user_id
- has_many :new_messages, :class_name => "Message", :foreign_key => :to_user_id, :conditions => "message_read = 0"
- has_many :friends
+ has_many :messages, :foreign_key => :to_user_id, :order => 'sent_on DESC'
+ has_many :new_messages, :class_name => "Message", :foreign_key => :to_user_id, :conditions => {:message_read => false}, :order => 'sent_on DESC'
+ has_many :sent_messages, :class_name => "Message", :foreign_key => :from_user_id, :order => 'sent_on DESC'
+ has_many :friends, :include => :befriendee, :conditions => ["users.visible = ?", true]