// JavaScript Document
$(document).ready(function(){
$('#jumpto').click(function(){

if ($(this).children('option').length <= 1) {
  $.get('/assets/xml/dropdown.xml', function(xml) {
    $select = $('select#jumpto')
    $(xml).find('item').each(function(){
      $option = $(document.createElement('option'));
      $option.val($(this).find('url').text()).text($(this).find('title').text());
      $option.appendTo($select);
    })
  });
}

})

  //cufon
  Cufon.replace('h1');

  //shows high/low graphics link
  $('li.low').show();

  //footer show links
  $('#footer-tab> ul').hide();
  $('#footer-tab h2').click(function() {
    $('#footer-tab> ul').toggle();
    $('#footer-tab> h2 span').toggleClass('open');
  }); 

//flash map
// $('#map').hide();
//$('a#launch').click(function() {
// $('#map').show();
//  return false; 
// });
// $('a#close').click(function() {
//    $('#map').hide();
//     return false; 
//   });
  

}); 



