var active_tab;
function init_tabs()
{
	$('body').mousemove(function(e){						
		$hover = $('.tab.h');
		$hover.removeClass('active_tab').find('.hover').css('top','-500px');
		$target = $(e.target);
		$tab 	= $target.hasClass('tab') ? $target : $target.parents('.tab');
		$tab.addClass('active_tab' + ($tab.get(0) != active_tab ? ' h' : '')).find('.hover').css('top','7px');
	});
	active_tab	= $(".headers .tab")[0];
	reset_tab_header();
}
function show_tab(tab_id,this_el)
{
	var tab_content	= $('#'+tab_id).get(0);
	if(tab_content)
	{
		hide_all_tab_content();
		tab_content.style.display = 'block';
		active_tab	= $('#'+this_el).get(0);
		reset_tab_header();
		$('#'+this_el).get(0).className	= 'tab active_tab';
		$(this_el).find('.hover').css('top','7px');
	}
}
function hide_all_tab_content()
{
	$(".contents .tab").each(function(i)
	{
		this.style.display	= 'none';
	});
}
function reset_tab_header()
{
	$(".headers .tab").each(function(i)
	{
		if(this != active_tab)
		{
			this.className	= 'tab';
			$(this).find('.hover').css('top','-50px');
		}
	});
}