// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

shimmer_background = function( layer ){
  $( 'img#background'+layer ).fadeTo( ( ( layer == '1' ) ? 7000 : 11000 ), Math.random(), function(){ shimmer_background( layer ); } );
};

$( function(){
  shimmer_background( '1' );
  shimmer_background( '2' );
});
