$(document).ready(function() { 
  // Velo/show zoom & caroussel
  
  $('a').filter(function() {
    return !this.href.match(/^mailto\:/) && (this.hostname != location.hostname);
  }).attr('target', '_blank');

  $('li.slider_menu_item a').fancybox();
  
  // Velo/show tabs
  $('.velo_tabs').tabs({
    select: function(e, ui) {
      var tab = $(ui.tab);
      if (tab.attr('data-href')) 
      {
        e.preventDefault();
        window.location = tab.attr('data-href');
      }
    },
    selected: 0
  });

  
  
  //Topmenu velo submenu
  $('.velo_item').click(function(e){
    e.preventDefault();
    $('.submenu').toggleClass('visible');
    $(this).toggleClass('active');
  });
  
  //FAQS accordion
  $('.faqs').hide();
  
  // allowing accordions parts to be unfold using the #anchor part of a url.
  var anchor = document.location.hash;
  if (anchor && $(anchor+ ' .faqs').length)
  {
    $(anchor+ ' .faqs').show();
  }
  else
  {
    $('.faqs:first').show();
  }
  
  $('.faqgroup').click(function(e) {
    if (! $(this).children('.faqs').is(':visible')) {
      $('.faqs').slideUp('slow')
      $(this).children('.faqs').slideDown('slow');
    }
  });
  
});







