$(function() {
	// Menu inizialization
	$('ul.nav').superfish();
	$('.sub-nav li:last-child').addClass('lastItem');

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

	// Custom html homepage
	$(".hoverImg").hover(function () {
		$(this).find('.hoverBox').stop().animate({ left: '0' }, 350);
	}, function () {
		$(this).find('.hoverBox').stop().animate({ left: '255' }, 200);
	});

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