$(document).ready(function(){
	$(".tweet").tweet({
    join_text: "",
    username: "daniellelaporte",
    avatar_size: 48,
    count: 3,
    auto_join_text_default: "", 
    auto_join_text_ed: "",
    auto_join_text_ing: "",
    auto_join_text_reply: "",
    auto_join_text_url: "",
    loading_text: "loading tweets..."
  });

	$("span.onhover").hide();
	
  $("#drop").hover(
	      function () {
	        $(this).find("ul#dropdown").fadeIn();
	      }, 
	      function () {
	        $(this).find("ul#dropdown").fadeOut();
				}
	    );

	  $("div.whole-quote").hover(
		      function () {
		        $(this).find("p.source span").fadeIn();
		      }, 
		      function () {
		        $(this).find("p.source span").fadeOut();
					}
		    );

	
  $("#flames").hover(
	      function () {
					$(".flamesover").show();
	      }, 
	      function () {
					$(".flamesover").hide();
	      }
	    );

		 // $("#rss .inner").hover(
		 // 			      function () {
		 // 			        $(this).parent().addClass("floater");
		 // 							$(this).addClass("floater-inner");
		 // 			      }, 
		 // 			      function () {
		 // 			        	$(this).parent().removeClass("floater");
		 // 								$(this).removeClass("floater-inner");
		 // 			      }
		 // 			    );    
	
		$("#d a, #iheart a, #inspire a, #ss a, #video a, #cards a, #otherppl a, #cobooks a, #knowppl a").bigTarget({
		    hoverClass: 'hover', // CSS class applied to the click zone onHover
		    clickZone : 'div.block:eq(0)' // jQuery parent selector
		  });

			$("#readstuff a, #help a").bigTarget({
			    hoverClass: 'hover', // CSS class applied to the click zone onHover
			    clickZone : 'div:eq(0)' // jQuery parent selector
			  });		
		
		$("li.aligncenter")	.hover(
				      function () {
				        $("ul.listcats").fadeIn();
				      }, 
				      function () {
								$("ul.listcats").fadeOut();
				      }
				    );
		
}); // are YOU ready? 
