function ClickOptions(option)
{
  if (option == 1)
  {
    window.location.href = "labanda.php";
  }
  else if (option == 2)
  {
    window.location.href = "historia.php";
  }
  else if (option == 3)
  {
    window.location.href = "discos.php";
  }
  else if (option == 4)
  {
    window.location.href = "multimedia.php";
  }
  else if (option == 5)
  {
    window.location.href = "links.php";
  }
  else if (option == 6)
  {
    window.location.href = "usuario.php";
  }
  else if (option == 7)
  {
    window.location.href = "contacto.php";
  }
}

function InternalReady()
{
  var wheight = $(window).height();


  var leftHeight = (wheight > 842) ? 842 - $('#leftMenu').height() : wheight -  $('#leftMenu').height();
  if (leftHeight < 542) leftHeight = 542;

  $('#leftSpace').css("height", leftHeight + 'px');
  $('#main_div').center();

  var totalHeight = $(window).height() > $(document).height() ? $(window).height() :  $(document).height();

  $('#internalLeftDiv').css("left", '0px');
  $('#internalLeftDiv').css("width",$('#main_div').css('left') );
  $('#internalLeftDiv').css("height",totalHeight + 'px');

  if (wheight > 842) $('#sobraLeft').css("height", (totalHeight - 842) + 'px');
    
}


