var bars = Array('welcome', 'choice', 'member', 'login_feedback');

$(document).ready( function() 
{

    $('#close_choice').click( function() {
    
        show_bar('welcome');
    
    });
    
    $('#login').click( function() {
    
        show_bar('choice')
    
    });

});

function show_bar(bar_name)
{
	
	// Hide other bars
	for(var i =0; i < bars.length; i++)
	{
		$('#' + bars[i] + '_bar').slideUp('fast');
		//document.getElementById(bars[i] + '_bar').style.display = 'none';
	}
	
	// Show selected bar
	$('#' + bar_name + '_bar').slideDown('fast');
	//document.getElementById(bar_name + '_bar').style.display = 'block';
	
	return false;
}