/*
 * Main JS file included accross the flat site.
 * jQuery must be included first.
 */

$(document).ready(function(){
  $('img.rollover').mouseover(function(){
    var src = this.src;
    if ( !src.match('-Selected') ) {
      var newSrc = src.replace('.gif', '-Selected.gif');
      this.src = newSrc;
      //$(this).animate({ width: 100, height: 103 }, "slow" );
    }
  });
  $('img.rollover').mouseout(function(){
    var src = this.src;
    if ( src.match('-Selected') ) {
      //$(this).animate({ width: 75, height: 77 }, "slow" );
      var newSrc = src.replace('-Selected', '');
      this.src = newSrc;
    }
  });
});

