$(document).ready(function() {
  
  if($(".header_slider .slides").length > 0){
    $('.header_slider .slides').cycle({
      fx:     'fade', 
      timeout: 6000, 
      before:  onBefore
    });
  }
  
  // Thumb-Gallery
  $(".showcase_detail .thumb_link").click(function(){
    $(".showcase_detail .pic img").removeClass("active").hide();
    $(this).attr("rel");
    $("." + $(this).attr("rel")).show();
  });
  
  // Hide buttons
  $(".unit-submit").hide();
  $(".employ_submit").hide();
  
});

function onBefore(){
  $(".quote").hide();
  var that = this;
  setTimeout(function(){
    if ( $.browser.msie ) {
      $(that).children(".quote").show();
    }else{
      $(that).children(".quote").fadeIn("slow");
    }
  }, 1000 );
}

function onAfter(){
  $(this).children(".quote").hide();
}

