function tabInit(id) {
	tabId = id;
	$(tabId+' a').bind('click', tabClick);
    $('#returnToMain').bind('click', hideTabs);
    $('#4thTab').bind('click', tabClick);
}

function tabClick() {
	$(tabId+' a').removeClass('selected');
	$(tabId+' a').each(function(){
		var e = $(this).attr('rel');
		$(e).hide();
	});
	if(this.id=='4thTab')
        $('#4Tab').addClass('selected');
	$('#blah').hide();
	$(this).addClass('selected');
	var id = $(this).attr('rel');
	$(id).show();
	return true;
}

function hideTabs(){
    $('#tab2').hide();
    $('#tab3').hide();
    $('#tab4').hide();
    $('#blah').show();
    $(tabId+' a').removeClass('selected');
    return false;
}