/* Author:

Monti Design, LLC.
www.monti-design.com

*/

$(function() {
	
	//Configure rotator
	$('div#rotator').jshowoff({
		speed: 6500,
		hoverPause: false,
		controlText: {
			previous: '&#x2039;',
			next: '&#x203A;'
		}
	});
	
	//Set up Sidebar tabs
	$('ul.tabs').tabs('div.panes>div');
	
	//Configure Twitter stream
	$('div#twitterStream').tweet({
				username: 'coxband',
				count: 5,
				filter: function(t){ return ! /^@\w+/.test(t["tweet_raw_text"]); },
				avatar_size: 0
	}).bind('empty', function() { $(this).append('No updates at this time.'); });
	
});






