$(function() {

	$('.overImage', this).hide();

	$('a.rollOverImageLink').hover(
		function() {
			$('.baseImage', this).hide();
			$('.overImage', this).show();
		},
		function() {
			$('.overImage', this).hide();
			$('.baseImage', this).show();
		}
	);
});