//Main JavaScripts File

$(function() {
  imageRotator();
  dropMenu();
});

function imageRotator() {
  if($('#banner').length > 0) {
    $('#banner').cycle({
      fx: 'fade',
      timeout: 8000,
      pause: 1,
      speed: 'slow'
    });
  }
}
function dropMenu() {
  $('.menu').hover(
    function() { $('ul', this).stop(true, true).slideDown('fast'); },
    function() { $('ul', this).slideUp('fast'); }
  );
}

