/*
Title:      
Author:		
Updated:    
*/

$(document).ready(function() {

	$("#dropDownInner").hide();
	$("#thrust").hide();
	
	$("#nav11, h1 a").click(function () {
		$("#dropDownInner").slideToggle("slow");
	});
	$("#nav55").hover(
		function () {
			$("#thrust").slideDown(300);
		},
		function () {
			$("#thrust").slideUp(500);
		}
	);
	$("#dropDownInner p a, #loginSubmit").click(function () {
		$("#dropDownInner").slideUp("slow");
	});
	
	$("#twitterFeed").tweet({
		username: "ebenb",
		count: 1,
		loading_text: "<div id=\"tweet\"><p>Incoming tweets!</p></div><!-- #tweet --><p class=\"cite\"><span>You should follow me on Twitter <a href=\"http://twitter.com/ebenb\">here</a>!</span></p><!-- .cite -->"
	});
	
});