    jQuery(document).ready(function(){
		$("#iconbar li").hover(
			function(){
				$(this).find("span").attr({
					"style":'display:inline'
				});
				$(this).find("span").animate({opacity: 1, top: "-50"}, {queue:false, duration:400});
			},
			function(){
				$(this).find("span").animate({opacity: 0, top: "-40"}, {queue:false, duration:400}, "linear",
					function(){
						$(this).find("span").attr({"style": 'display:none'});
					}
				);
        });
		$('div.more-show:eq(0)> div').hide();  
		  $('div.more-show:eq(0)> h3').click(function() {
			$(this).prev().slideToggle('slow');
		  });
		});
