$(function(){
	
	// add active class to navigation
	var pathname = window.location.pathname;
	if (pathname) {
		$('a[href$="' + pathname + '"]').addClass('active');
	} 
	
	$('a[href^=http]').click( function() {
        window.open(this.href);
        return false;
    });
	
	// activate rotators on pages
	$('.rotator').cycle({
		delay: 2000,
		random: 1,
		speed: 2000,
		timeout: 5000
	});	
	
	// facebox activation for ajax pages
	$('a[rel*=facebox]').facebox()
	
	// From the bar twitter set up
	if ($('#from-the-bar').length >= 1){
		$('#from-the-bar').getTwitter({
		userName: "dixiearms",
		numTweets: 3,
		loadingText: "Loading...",
		showHeading: false,
		showProfileLink: false,
		listName: "twitter_update_list"	
		});
	}
	
});

