	$(document).ready(function()
	{
		var _target = $('#boat_of_the_week img.thumb');
		var _old_src = _target.attr("src");
		$('#boat_of_the_week .smallthumb').mouseover(function() {
			_target.attr("src", this.src);
		}).mouseout(function() {
			_target.attr("src", _old_src);
		});
	});

