// JavaScript Document
$(document).ready(function() {

	/*drop down info at top*/
	$(".dropbtn").click(function(){
		$('div#dropper').slideToggle();
	});
	
	/*splash images rotate*/
	$('#splash_right').cycle({
		fx: 'fade',
		timeout: 4500,
		speed: 750
	});
	
	$("a").focus(function(){
		this.blur();
	}); 
	
	$(".tweet").tweet({
            username: "ourhopeisalive",
            join_text: "auto",
            avatar_size: 0,
            count: 4,
            auto_join_text_default: "", 
            auto_join_text_ed: "",
            auto_join_text_ing: "",
            auto_join_text_reply: "",
            auto_join_text_url: "",
            loading_text: "loading tweets..."
        });
});
