﻿$(function() {

	// set up rollover
	$("img.rollover2").hover(
		function() {
			this.src = this.src.replace("-static", "-down");
		},
		function() {
			this.src = this.src.replace("-down", "-static");
		}
	);

});