﻿// behaviors.js
// Dynamic Behaviors for fastie.com, Copyright ©2009 by Will Fastie. All Rights Reserved.
// 21 Oct 2009

$(document).ready(function(){
  // Establish hover behavior where needed
	$("img.hovereffect, input.hovereffect").hover(
	  function() {
	    this.src = this.src.replace( /_std\.png$/, '_hov.png' );
	    this.src = this.src.replace( /_std\.gif$/, '_hov.gif' );
	    this.src = this.src.replace( /_std\.jpg$/, '_hov.jpg' );
	  },
	  function() {
	    this.src = this.src.replace( /_hov\.png$/, '_std.png' );
	    this.src = this.src.replace( /_hov\.gif$/, '_std.gif' );
	    this.src = this.src.replace( /_hov\.jpg$/, '_std.jpg' );
	  }
	);
	// -- end Apply Now hover behavior
});
