window.addEvent('domready', function(){
$$('.fade').each(function(item){
item.setStyle('opacity',0.01);
item.addEvent('mouseleave', function(){
var large = item;
large.fade((large.get('opacity')) ? 0.01: short);
});item.addEvent('mouseenter', function(){
var short = item;
short.fade((short.get('opacity')) ? 1 : short);
});
});
$$('.fadesocial').each(function(item){
item.setStyle('opacity',1);
item.addEvent('mouseleave', function(){
var large = item;
large.fade((large.get('opacity')) ? 1: short);
});item.addEvent('mouseenter', function(){
var short = item;
short.fade((short.get('opacity')) ? 0.8 : short);
});
});
});


