$(function() { 
	$('ul.nav').superfish();

	$('.topic:odd').addClass('stripes');
	$('.topic').hover(function(){
		$(this).find('.delete-topic').toggle();
	});

	// Profile Avatar
	$(window).load(function() {
		var avatarSize = $('#member-profile').find('img.avatar').width(),
			avatarMargin = avatarSize + 20,
			memberProfile = $('#member-profile').find('.profile-head');
		if ( avatarSize != 130 ) {
			memberProfile.css('margin-left', avatarMargin);
		}
	});
});
