function show_menu(menu_item)
{
  if (menu_item == 'playlist') {
    $('#navcontainer_vid').stop().hide();
    $('#navcontainer_pl').stop().show().animate({opacity: 1.0}, 4000, function() { $(this).slideUp()});
	$('#navcontainer_feature').stop().hide();
	$('#navcontainer_bookmark_bk').stop().hide();
  } else if(menu_item == 'video') {
    $('#navcontainer_pl').stop().hide();
    $('#navcontainer_vid').stop().show().animate({opacity: 1.0}, 4000, function() { $(this).slideUp()});
	$('#navcontainer_feature').stop().hide();
	$('#navcontainer_bookmark_bk').stop().hide();
  } else if(menu_item == 'features') {
    $('#navcontainer_pl').stop().hide();
    $('#navcontainer_feature').stop().show().animate({opacity: 1.0}, 4000, function() { $(this).slideUp()});
	$('#navcontainer_vid').stop().hide();
	$('#navcontainer_bookmark_bk').stop().hide();
  } else if(menu_item == 'bookmark') {
    $('#navcontainer_pl').stop().hide();
    $('#navcontainer_feature').stop().hide();
	$('#navcontainer_vid').stop().hide();
	$('#navcontainer_bookmark_bk').stop().show().animate({opacity: 1.0}, 4000, function() { $(this).slideUp()});
  }
}

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}


