$(function() {

  $('body').browserCheck();

  $('.overlay').itvsOverlay();

  $('.site-search .site-search-input').hint();
  $('.site-search form').submit(function() {
    str = $('.site-search-input', this).val();
    if (str.replace(/\s/g, "") == "") {
      return false;
    }
  });

  $('a[target]').click(function() {
    trackExternalLink(this.href);
  });

  if ($.fn.submitOnChange !== undefined) {
    $('.filters').submitOnChange('select');
  }

  $(".items .wrapper, .films .wrapper").live('mouseover', function() {
    if (!$(this).data('init')) {
      $(this).data('init', true);
      $(this).hoverIntent(function() {
        $(this).addClass('active');
      }, function() {
        $(this).removeClass('active');
      });
      $(this).trigger('mouseover');                            
    }
  });

  $(".films li").reZindex();

  $('.sidebar-content-widget p img, .sidebar-content-widget .shadow p > img').load(function() {
    $(this).unwrapTextAroundImage();
  });

  $('.sidebar-content-widget p img, .sidebar-content-widget .shadow p > img').each(function() {
    if (this.complete) $(this).trigger('load');
  });

  $('select').uniform();
});