$(function(){
  $('div.featured_items ul').featureCarousel();
  $('div.hero_carousel').heroCarousel();
  $('div.main_content_wrapper div.sidebar div.module:first-child, div.main_content_wrapper div.sidebar div.module:last-child').addClass('default_open');
  $('div.main_content_wrapper div.sidebar div.module').collapsable();
  $('div.regions_select').regionChooser();
  $('.toggle, fieldset.category, fieldset.content, fieldset.type').checkbox_toggle();
  //$('body').contact();
  $('.hinted').actsAsHint();
  
  // Print
  $('div.print_share a.print').click(function() {
    window.print();
  });
  
  // Sort
  var form_sort = function() {
    var form = $('form.sort');
    
    if(form.length > 0) {
      form.find('input[type=submit]').hide();
      form.find('select').change(function() {
        form.submit();
      });
    }
  }();

  //Open rel=external links in a new window
  $('a[rel="external"]').click(function(event) {
    event.preventDefault();
    window.open($(this).attr('href'));
  });
  
  //Stripe tables
  $('table.stripe tr:odd').addClass('odd');
  $('table.stripe tr:even').addClass('even');
  
  //Disable search forms
  $("form[action='/search']").bind('submit', function(event) {
    $(this).find('input#q').val() === '' ? event.preventDefault() : '';
  });
  

  //Initialize new_at_bh
  bh.new_at_bh.init('new');

  //Initializes bh stocks
  bh.stocks.init('stocks');

});

