// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready(function() {
  $("a[rel*=external]").each(function() {
    this.target = "_blank";
  });
  $("a.report_abuse").each(function() {
    $(this).attr("href", $(this).attr("href") + ".js");
  });
  $("a.report_abuse").fancybox();
  
  $("a[rel*=lightbox]").each(function() {
    $(this).attr("href", $(this).attr("href") + ".js");
  });
  $("a[rel*=lightbox]").fancybox();
  $("div.photo_sorter form button").remove();
  $("div.photo_sorter form select").change(function() {
    this.form.submit();
  });
  
  $("#play_movie").fancybox({
    'width'         : 680,
    'height'        : 437,
    'padding'       : 0,
    'autoScale'     : false,
    'transitionIn'  : 'none',
    'transitionOut' : 'none',
    'scrolling'     : 'no'
  });
});