@page_title="TRACKS::Search Results for #{params[:search]}"
terms='%'+params[:search]+'%'
@found_todos=current_user.todos.find(:all,:conditions=>["todos.description LIKE ? OR todos.notes LIKE ?",terms,terms],:include=>[:tags,:project,:context])
@found_projects=current_user.projects.find(:all,:conditions=>["name LIKE ? OR description LIKE ?",terms,terms])
@found_notes=current_user.notes.find(:all,:conditions=>["body LIKE ?",terms])
@found_contexts=current_user.contexts.find(:all,:conditions=>["name LIKE ?",terms])