$(document).ready(function(){
	
	/* иконки фэйсбука и блога */
	//блог
	$('.blg').hover(function(){
		$(this).animate({'opacity':'1'},300);
	}, function(){
		$(this).animate({'opacity':'0.5'},200);
	});
	
	//блог
	$('.fb').hover(function(){
		$(this).animate({'opacity':'1'},300);
	}, function(){
		$(this).animate({'opacity':'0.5'},200);
	});

	
	
});

