function evanTS( searchQuery, subject, width, height ) {

new TWTR.Widget({
search: searchQuery,
id: 'twtr-search-widget',
loop: true,
title: 'What people are saying about',
subject: subject,
width: width,
height: height,
theme: {
shell: {
background: '#292929',
color: '#F29812'
},
tweets: {
background: '#777973',
color: '#000000',
links: '#F29812'
}
}
}).render().start();

}
