$(function(){  
  $('#header-img').cycle({
    fx: 'scrollLeft',
    speed: 600,
    timeout: 4000,
    delay: 4000
  });
});

$(function() {
  $('a.showMe').click(function() {
    $(this).parents('#frameOuter').find('#frameInner').slideDown(800);
  });
  $('a.hideMe').click(function() {
    $(this).parents('#frameInner').slideUp(800);
  });
});