$(document).ready(function(){
	$(document).pngFix();

	$('#nav a').mouseenter(function() {
		if ( $(this).hasClass('active') ) return;
		var arrow = $( '.arrow' , this );
		$(arrow).stop().animate({ top : '20px' } , 300 );
	}).mouseleave(function() {
		if ( $(this).hasClass('active') ) return;
		var arrow = $( '.arrow' , this );
		$(arrow).stop().animate({ top : '0' } , 300 );
	});
});
