window.addEvent('domready',function() {
	$('tweets-here').set('html','');

	//get information
	var myTwitterGitter = new TwitterGitter('1stop_marketing',{
		count: 3,
		onComplete: function(tweets,user) {
			tweets.each(function(tweet,i) {
				new Element('div',{
					html: '<a href="http://twitter.com/1stop_marketing" target="_blank"><img src="' + user.profile_image_url.replace("\\",'') + '" align="left" alt="' + user.name + '" /></a> <a href="http://twitter.com/1stop_marketing" target="_blank"><strong>' + user.name + '</strong></a><br />' + tweet.text + '<br /><span>' + '</span><br clear="all"/>',
					'class': 'tweet clear'
				}).inject('tweets-here');
			});
		}
	}).retrieve();
});
