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

	// Forum
	$('.topic:odd').addClass('stripes');
	$('.topic').hover(function(){
		$(this).find('.delete-topic').toggle();
	});
	
	// TEXTAREA HEIGHT ANIMATION
	var textAreaHeight = $('#post_message_to_stream_message').css('height');
	var divHeight = $('.status-message').css('height');
	
	var $postMessageBox = $('.status-message');
	var $postMessage = $('#post_message_to_stream_message');

	// 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);
		}
	});
});
