jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    $(document).ready(function(){
        $(".tweet").tweet({
            username: ["Steppingstones6"],
            join_text: "auto",
            avatar_size: 40,
            count: 3,
            auto_join_text_default: "we said,", 
            auto_join_text_ed: "we",
            auto_join_text_ing: "",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
        });
    });
   
   
   $(document).ready(function() {

		$("ul#slider").cycle({
			fx: 'fade',
			delay: 6000,
			pause: 1
		});
	
	});

});
