// Attach Jquery Tabs if they exist
$(document).ready(function() {
  $('#tab-container').tabs();
});

// Attach Jquery Tabs if they exist
$(document).ready(function() {
  $('#slideshow').cycle({
    fx:      'fade',
    speed:   1500,
    timeout: 5000
  });
});

// Make the homepage latest news slide down widget
$(document).ready(function() {
  $('a#more-news-link')
  .toggle(
    function() { $(this).html('Hide...') },
    function() { $(this).html('County Highlights...') })
  .click(function() {
    $('#more-news').slideToggle(1000);
    return false;
  });
});


