

	jQuery(function () {
	   	jQuery("div#tweet p").hover(function() {jQuery(this).animate({ backgroundColor: "#070707" }, 600);},function() {jQuery(this).animate({ backgroundColor: "#474747" }, 400);});
		jQuery(" #nav ul ").css({display: "none"}); // Opera Fix
		jQuery(" #nav a").removeAttr("title");
		jQuery(" #nav li").hover(function(){
			jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(400);
			},function(){
			jQuery(this).find('ul:first').css({visibility: "hidden"});
		});

	});
	