$(function(){
		$('#main_nav li a:not(.active)').hover(function(){
			$(this).addClass('active');
		}, function(){
			$(this).removeClass('active');
		});
		
		$('.anythingSlider').anythingSlider({
        	easing: "easeInOutExpo",                // Anything other than "linear" or "swing" requires the easing plugin
        	autoPlay: true,                 // This turns off the entire FUNCTIONALLY, not just if it starts running or not
        	startStopped: false,            // If autoPlay is on, this can force it to start stopped
        	delay: 3000,                    // How long between slide transitions in AutoPlay mode
        	animationTime: 600,             // How long the slide transition takes
        	hashTags: true,                 // Should links change the hashtag in the URL?
        	buildNavigation: false,          // If true, builds and list of anchor links to link to each slide
        	navigationFormatter: null       // Details at the top of the file on this use (advanced use)
		});
		 $(".twitter p").tweet({
          join_text: "auto",
          username: "digitizedomain",
          avatar_size: 0,
          count: 1,
          auto_join_text_default: "", 
          auto_join_text_ed: "",
          auto_join_text_ing: "",
          auto_join_text_reply: "",
          auto_join_text_url: "",
          loading_text: "loading tweets..."
        });

	});