$(document).ready
(	
	function()
	{		
		$(".rodapetwitterimg").mouseover
		(
			function()
			{	
  				$(".rodapetwitterlabel").css({"display":"inline"});		
			}	
		);
				
		$(".rodapetwitterimg").mouseout
		(
			function()
			{
  				$(".rodapetwitterlabel").css({"display":"none"});	
			}	
		);		
	}
);

$(document).ready
(	
	function()
	{		
		$(".rodapewordpressimg").mouseover
		(
			function()
			{	
  				$(".rodapewordpresslabel").css({"display":"inline"});		
			}	
		);
				
		$(".rodapewordpressimg").mouseout
		(
			function()
			{
  				$(".rodapewordpresslabel").css({"display":"none"});	
			}	
		);		
	}
);
