var $j = jQuery.noConflict();

$j(window).load(function () {

	$j('div.ngg-description p:first-child').remove();

	$j('li#community.home a').delay(800).animate({ left: 0 }, 300, function() {
		$j('li#community a img').animate({ width: 56, height: 54, left: -4, top: -4 }, 100 );
		$j('li#community a img').animate({ width: 47, height: 45, left: 0, top: 0 }, 100 );
		$j('li#community.home').css({ 'overflow': 'visible' });
		}
	 );

	$j('li#community a').mouseenter( function() {
		$j('li#community a span').css({ 'display': 'block' }).animate({ opacity: 1 }, 200 );
		$j('li#community a img').animate({ width: 56, height: 54, left: -4, top: -4 }, 100 );
		$j('li#community').css({ 'z-index': 99 });
		});

	$j('li#community a').mouseleave( function() {
		$j('li#community a span').animate({ opacity: 0 }, 200, function() { $j(this).css({ 'display': 'none' }); } );
		$j('li#community a img').animate({ width: 47, height: 45, left: 0, top: 0 }, 100 );
		$j('li#community').css({ 'z-index': 1 });
		});

	});
