jQuery(document).ready(function($) {
        $("#devTwitter").tweet({
          join_text: "auto",
          username: "dev_tips",
          avatar_size: 48,
          count: 1,
          auto_join_text_default: "we said,", 
          auto_join_text_ed: "we",
          auto_join_text_ing: "we were",
          auto_join_text_reply: "we replied",
          auto_join_text_url: "we were checking out",
          loading_text: "loading tweets..."
        });
   		$('#ad a, #randomImageAd a').tooltip({ 
   			 track: true, 
   			 delay: 400, 
   			 showURL: false, 
   			 showBody: " - ", 
   			 fade: 450 
		});    
        //Link Nudge that bi-atch. 
     	 $('.tab-box ul li a').hover(function() { //mouse in  
          	 $(this).stop().animate({ paddingLeft: '10px' }, 200);  
        }, function() { //mouse out  
            $(this).stop().animate({ paddingLeft: 0 }, 200);  
    	});  
    	$('ul#devFriends li a').hover(function() {  
          	 $(this).stop().animate({ paddingLeft: '10px' }, 200);  
        }, function() {  
            $(this).stop().animate({ paddingLeft: 0 }, 200);  
    	}); 
    	$('ul.fvCommunityNewsList li a').hover(function() {  
          	 $(this).stop().animate({ paddingLeft: '10px' }, 200);  
        }, function() {  
            $(this).stop().animate({ paddingLeft: 0 }, 200); 
    	});
    	//Change opacity of ad slots on hover 
    	$('#ad img').css('opacity', 0.9);
    	$('#randomImageAd').css('opacity', 0.9);
    	$('#ad img').hover(function(){
    		$(this).stop().animate({opacity: 1}, 700);
    	},function(){
    		$(this).stop().animate({opacity: 0.9},700);
    	});
    	$('#randomImageAd').hover(function(){
    		$(this).stop().animate({opacity: 1},1000);
    	},function(){
    		$(this).stop().animate({opacity: 0.9},1000);
    	});
    	
    	//Avatar opacity
      $('#comment-area img.avatar').css('opacity', 0.8);
      $('#comment-area img.avatar').hover(function(){
      	$(this).stop().animate({opacity: 1}, 600);
      }, function(){
      	$(this).stop().animate({opacity: 0.8}, 600);
      });
      
      $('.series_ad img').hover(function(){
      	$(this).stop().animate({opacity:0.9}, 300);
      }, function(){
      	$(this).stop().animate({opacity:1}, 300);
      });
    
      
      
    });
      


