// JavaScript Document
$(document).ready(function(){
$("#icons div div").css({opacity:0});


$("#icons div").mouseover(function(){	
		$(this).find("div").stop().animate({opacity:1},{duration:250});
		});

$("#icons div").mouseout(function(){	
		$(this).find("div").stop().animate({opacity:0},{duration:450});
		});

});