var backTopTagHeight = 0;

function setBackTopTagStyle(opacity)
{
	if (backTopTagHeight == 0)
	{
		backTopTagHeight = $('#back_top_tag').height();
	}
	
	$('#back_top_tag').css('left', $('#wrap').position().left + $('#wrap').width() + 10);
	
	$('#back_top_tag').css({'display':'', 'opacity':opacity});
	
	if ($.browser.msie && $.browser.version == 6)
	{
		document.getElementById('back_top_tag').style.top = $(document).scrollTop() + $(window).height() - backTopTagHeight - 15;
	}
	else if ($('#back_top_tag').css('position') != 'fixed')
	{				
		$('#back_top_tag').css({'position':'fixed', 'top':$(window).height() - backTopTagHeight - 10});
	}
}

function switchCollapse(elem)
{
	if ($(elem).find('ul').css('display') == 'none')
	{
		$(elem).find('ul').fadeIn();
		
		$(elem).find('a.collapse').removeClass('closed');
		
		return true;
	}
	else
	{
		$(elem).find('ul').fadeOut();
		
		$(elem).find('a.collapse').addClass('closed');
		
		return false;
	}
}
