$(document).ready(function(){
	jQuery.each($("#ico-midias a"),function(k,v){
		$(this).hover(function(){
			$("div#footer-aba-right").animate({
				opacity:0
			},{
				duration:100,
				queue:false,
				complete:function(){
					$(this).removeClass("footer-aba-right-off");
					$("div#footer-aba-right").animate({
						opacity:1
					},{
						duration:400,
						queue:false,
						complete:function(){
							
						}
					});
				}
			});
		},function(){
			$("div#footer-aba-right").animate({
				opacity:0
			},{
				duration:100,
				queue:false,
				complete:function(){
					$(this).addClass("footer-aba-right-off");
					$("div#footer-aba-right").animate({
						opacity:1
					},{
						duration:400,
						queue:false,
						complete:function(){
							
						}
					});
				}
			});
		});	
	});
	$("#drive-blog a").hover(function(){
			$("div#footer-aba-left").animate({
				opacity:0
			},{
				duration:100,
				queue:false,
				complete:function(){
					$(this).removeClass("footer-aba-left-off");
					$("div#footer-aba-left").animate({
						opacity:1
					},{
						duration:400,
						queue:false,
						complete:function(){
							
						}
					});
				}
			});
		},function(){
			$("div#footer-aba-left").animate({
				opacity:0
			},{
				duration:100,
				queue:false,
				complete:function(){
					$(this).addClass("footer-aba-left-off");
					$("div#footer-aba-left").animate({
						opacity:1
					},{
						duration:400,
						queue:false,
						complete:function(){
							
						}
					});
				}
			});
		});
})
