// JavaScript Document

$(document).ready(function(){
	$('div [id*="p"][class*="post"]').each(function(i){
	
		$(this).find('*[id="language"]').each(function(ii) {
			$(this).hover(function(){
				$(this).find('span[id="block"]').fadeOut(300);	
			},function(){
				$(this).find('span[id="block"]').fadeIn(300);
			});
		});
	
	});
});
