
$(document).ready(function(){
	getTwitters('deadTweets', {
		id: 'Devilcantburn', 
		prefix: '',  
		clearadd_ups: false, 
		count: 1, 
		withFriends: true,
		ignoreReplies: false,
		newwindow: true
	});
});
//--------------------------------------------------------------------------


    $(document).ready(function(){
								   
		$('.menu ul ul').css("opacity", "0");
	
		$('.menu ul li').hover(function(){
			$(this).find('ul:first').animate({"opacity": "1"}, 600);
		},
		function(){
			$(this).find('ul:first').animate({"opacity": "0"}, 250);
		});
     });


    $(document).ready(function(){
								   
		$('#portfolio-list li .pl_infos').css("opacity", "0");
	
		$('#portfolio-list li').hover(function(){
			$(this).find('.pl_infos').animate({"opacity": "1"}, 600);
		},
		function(){
			$(this).find('.pl_infos').animate({"opacity": "0"}, 250);
		});
     });
	

$(document).ready(function(){
	$(".menu ul ul a").hover(function(){
		$(this).find('span').stop().animate({marginLeft:'10px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	},function(){
		$(this).find('span').stop().animate({marginLeft:'0px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	});
	
	$(".ford_1 li a").hover(function(){
		$(this).find('span').stop().animate({marginLeft:'10px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	},function(){
		$(this).find('span').stop().animate({marginLeft:'0px'},{queue:false, duration:300, easing: 'easeOutBounce'})
	});
 
});

$(document).ready(function(){
 	$("#traunk .cols").find(".section_2").css("opacity", "0");
	$("#traunk .cols").hover(
	function() {
	$(this).find(".section_1").stop().animate({"opacity": "0"}, "slow");
	$(this).find(".section_2").stop().animate({"opacity": "1"}, "slow");
	},
	function() {
	$(this).find(".section_1").stop().animate({"opacity": "1"}, "slow");
	$(this).find(".section_2").stop().animate({"opacity": "0"}, "slow");
	});
 
});
