function loadWiget() {
	var usr = 'buddy_kitchen';
	
	new TWTR.Widget({
		version: 2,
		id: 'twitterContainor',
		type: 'profile',
		rpp: 3,
		interval: 6000,
		width: 'auto',
		height: 178,
		theme: {
			shell: {
				background: '#c8a36c',
				color: '#ededed'
			},
			tweets: {
				background: '#ffffff',
				color: '#707070',
				links: '#727ee8'
			}
		},
		features: {
			scrollbar: false,
			loop: true,
			live: true,
			hashtags: true,
			timestamp: true,
			avatars: true,
			behavior: 'default'
		}
	}).render().setUser(usr).start();
}

$(document).ready(function(){
	loadWiget();
});
